body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: #ebebeb
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), url('../images/67eff37139379ae25002ddb5.jpg') center/cover no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
}

.hero-image-container {
    position: relative;
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(60, 72, 99, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}



.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
    color: #fff
}

.content-card {
    background: #fff;
    padding: 50px 30px;
    border-radius: 20px
}

.section-title {
    font-weight: 900;
    color: #2d3c69;
}



:root {
    --form-bg: #f8f9fa;
    --card-bg: #ffffff;
    --primary-gold: #FFBF00;
    --text-dark: #000000;
    --text-gray: #9ca3af;
    --border-color: #e5e7eb;
    --border-radius: 20px;
    --field-radius: 8px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 30px
}

.form-wrapper {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 40px;
    border: 1px solid var(--border-color);
}

.contact-form {
    width: 100%;
}

.form-field-wrapper {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.5;
}

.required {
    color: #ef4444;
    margin-left: 2px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--field-radius);
    transition: all 0.2s ease;
    outline: none;
    appearance: none;
}

.form-control::placeholder {
    color: var(--text-gray);
    font-weight: 400;
}

.form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(255, 191, 0, 0.1);
}

/* Custom Select Styling */
.custom-select-wrapper {
    position: relative;
}

.custom-select {
    cursor: pointer;
    padding-right: 40px;
}

.select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    font-size: 12px;
    pointer-events: none;
    transition: transform 0.2s ease;
}

.custom-select:focus+.select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

/* Submit Button */
.btn-submit {
    width: 100%;
    background-color: var(--primary-gold);
    border: none;
    border-radius: 5px;
    padding: 18px 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    margin-top: 15px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
}

.btn-submit:hover {
    background-color: #e6ac00;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 191, 0, 0.3);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-text {
    transition: opacity 0.2s ease;
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    width: 15px;
    height: 15px;
    border: 2.14px solid var(--text-dark);
    border-top: 2.14px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Form Loading State */
.form-loading .btn-text {
    opacity: 0;
}

.form-loading .btn-loader {
    display: block !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .form-wrapper {
        padding: 30px 20px;
    }

    .col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .btn-submit {
        font-size: 18px;
        padding: 16px 40px;
    }
}

@media (max-width: 576px) {


    .form-wrapper {
        padding: 25px 15px;
        border-radius: 8px;
    }

    .form-control {
        padding: 10px 12px;
        font-size: 14px;
    }

    .form-label {
        font-size: 13px;
    }

    .btn-submit {
        font-size: 16px;
        padding: 14px 30px;
        min-height: 52px;
    }
}

/* Form Validation States */
.form-control.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-control.is-valid {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 4px;
    font-size: 12px;
    color: #ef4444;
    font-family: 'Poppins', sans-serif;
}

.valid-feedback {
    display: block;
    width: 100%;
    margin-top: 4px;
    font-size: 12px;
    color: #10b981;
    font-family: 'Poppins', sans-serif;
}

/* Focus Within Effects */
.form-field-wrapper:focus-within .form-label {
    color: var(--primary-gold);
}

/* Animation for form appearance */
.form-wrapper {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Row spacing adjustment */
.row {
    margin-left: -8px;
    margin-right: -8px;
}

.row>* {
    padding-left: 8px;
    padding-right: 8px;
}
