.mega-header {
    background: linear-gradient(135deg, rgba(246, 114, 128, 0.05) 0%, rgba(192, 108, 132, 0.05) 100%);
    border-bottom: 1px solid rgba(192, 108, 132, 0.1);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.mega-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(192, 108, 132, 0.1);
}

.mega-header .navbar-brand {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    transition: all 0.3s ease;
}

.mega-header .navbar-brand:hover {
    transform: translateY(-2px);
}

.mega-header .nav-link {
    font-weight: 600;
    color: var(--gray-700);
    padding: 1rem 1.25rem;
    position: relative;
    transition: all 0.3s ease;
}

.mega-header .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 3px;
}

.mega-header .nav-link:hover {
    color: var(--primary-color);
}

.mega-header .nav-link:hover::after {
    width: 80%;
}

.mega-header .nav-link.active {
    color: var(--primary-color);
}

.mega-header .nav-link.active::after {
    width: 80%;
}

.mega-header .auth-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.mega-header .auth-buttons .btn-outline-secondary {
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
}

.mega-header .auth-buttons .btn-outline-secondary:hover {
    background: var(--gradient-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.mega-header .auth-buttons .btn-primary {
    background: var(--gradient-primary);
    border: none;
    box-shadow: 0 4px 15px rgba(246, 114, 128, 0.2);
}

.mega-header .auth-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 114, 128, 0.3);
}

.mega-header .navbar-toggler {
    border: none;
    padding: 0.5rem;
    border-radius: var(--border-radius);
    background: var(--gradient-light);
}

.mega-header .navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 991.98px) {
    .mega-header .navbar-collapse {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 1rem;
        border-radius: var(--border-radius);
        margin-top: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .mega-header .nav-link::after {
        display: none;
    }

    .mega-header .auth-buttons {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--gray-200);
    }
}

/* Contact Us Specific Styles */
.contact-hero {
    background: linear-gradient(135deg, rgba(246, 114, 128, 0.05) 0%, rgba(192, 108, 132, 0.05) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23f67280" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
    pointer-events: none;
}

.contact-hero-content {
    position: relative;
    z-index: 10;
}

.contact-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.contact-subtitle {
    font-size: 1.3rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-info-section {
    background: var(--white);
    padding: 80px 0;
}

.contact-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-method {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-method-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.contact-method-info {
    color: var(--gray-600);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-method-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-method-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-form-section {
    background: linear-gradient(135deg, rgba(246, 114, 128, 0.02) 0%, rgba(192, 108, 132, 0.02) 100%);
    padding: 100px 0;
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.02;
    transform: skewY(-1deg);
}

.form-content {
    position: relative;
    z-index: 10;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.form-subtitle {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 2px solid var(--gray-200);
    border-radius: var(--border-radius);
    padding: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(246, 114, 128, 0.25);
    outline: none;
}

.form-control.is-invalid {
    border-color: var(--danger);
}

.form-control.is-valid {
    border-color: var(--success);
}

.textarea-field {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(246, 114, 128, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(246, 114, 128, 0.4);
}

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

.map-section {
    background: var(--white);
    padding: 80px 0;
}

.map-container {
    background: var(--gray-100);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--gray-200) 0%, var(--gray-300) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="map-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><rect width="20" height="20" fill="%23f8f9fa"/><circle cx="10" cy="10" r="1" fill="%23dee2e6"/></pattern></defs><rect width="100" height="100" fill="url(%23map-pattern)"/></svg>');
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.map-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-text {
    color: var(--gray-600);
    font-weight: 600;
}

.faq-section {
    background: linear-gradient(135deg, rgba(246, 114, 128, 0.03) 0%, rgba(192, 108, 132, 0.03) 100%);
    padding: 100px 0;
}

.faq-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card:hover {
    box-shadow: var(--shadow-lg);
}

.faq-header {
    padding: 1.5rem;
    cursor: pointer;
    border: none;
    background: var(--white);
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-header:hover {
    background: var(--gray-50);
}

.faq-title {
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

.faq-icon {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-header[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.success-message {
    background: var(--success);
    color: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    display: none;
}

.error-message {
    background: var(--danger);
    color: white;
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    display: none;
}

@media (max-width: 768px) {
    .contact-title {
        font-size: 2.5rem;
    }

    .contact-form-card {
        padding: 2rem;
    }

    .contact-card {
        padding: 2rem;
    }
}
