/* ==========================================================================
   CONTACT PAGE - PROFESSIONAL DESIGN
   Visually Stunning & Modern Contact Interface
   ========================================================================== */

/* ==========================================================================
   HERO SECTION - ENHANCED DESIGN
   ========================================================================== */
.contact-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(0, 102, 255, 0.15) 0%, 
        rgba(0, 255, 204, 0.1) 25%,
        rgba(123, 90, 255, 0.12) 50%,
        rgba(0, 217, 255, 0.08) 75%,
        rgba(255, 51, 102, 0.1) 100%);
    padding: 8rem 5% 6rem;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 102, 255, 0.144) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 255, 204, 0.092) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(118, 83, 255, 0.133) 0%, transparent 50%);
    z-index: 1;
}

.contact-hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) brightness(30%) saturate(1);
    z-index: 0;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 1000px;
    padding: 3rem 2rem;
   
}

.contact-hero-tagline h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 900;
    font-family: var(--font-heading);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, 
        #ffffff 0%, 
        var(--primary-color) 30%, 
        var(--secondary-color) 60%, 
        #ffffff 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: white;
    animation: gradientFlow 6s ease-in-out infinite;
    text-shadow: 0 0 40px rgba(0, 102, 255, 0.3);
}

.contact-hero-tagline .highlight {
    position: relative;
background: var(   --gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: highlightPulse 4s ease-in-out infinite;
}
.contact-hero-description {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.5s both;
}

/* Enhanced Animations */
@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes highlightPulse {
    0%, 100% { 
        background-position: 0% 50%;
        filter: brightness(1);
    }
    50% { 
        background-position: 100% 50%;
        filter: brightness(1.2);
    }
}

@keyframes underlineGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 102, 255, 0.5);
        transform: scaleX(0.9);
    }
    50% {
        box-shadow: 0 0 25px rgba(0, 102, 255, 0.8);
        transform: scaleX(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 120px;
    filter: drop-shadow(0 -5px 10px rgba(0, 0, 0, 0.2));
}

/* ==========================================================================
   CONTACT GRID SECTION - PROFESSIONAL LAYOUT
   ========================================================================== */
.contact-grid-section {
    padding: 8rem 5%;
    background: linear-gradient(180deg, 
        var(--darker-bg) 0%, 
        rgba(5, 5, 16, 0.95) 50%, 
        var(--dark-bg) 100%);
    position: relative;
}

.contact-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 102, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 255, 204, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, 
        var(--text-primary) 0%, 
        var(--primary-color) 50%, 
        var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 102, 255, 0.5);
}

.section-header p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
   CONTACT FORM - PROFESSIONAL DESIGN
   ========================================================================== */
.contact-form-container {
    background: rgba(15, 15, 30, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary-color), 
        var(--secondary-color), 
        transparent);
    opacity: 0.6;
}

.form-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.form-header h3 {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, 
        var(--text-primary) 0%, 
        var(--primary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 2rem;
    position: relative;
}

.contact-form label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    font-family: var(--font-ui);
    letter-spacing: 0.025em;
    color: var(--text-primary);
    text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 25, 0.6);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 
        0 0 0 3px rgba(0, 102, 255, 0.1),
        inset 0 1px 3px rgba(0, 0, 0, 0.2),
        0 4px 12px rgba(0, 102, 255, 0.15);
    background: rgba(10, 10, 25, 0.8);
    transform: translateY(-1px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
    font-family: var(--font-body);
}

/* Professional Custom Dropdown */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-selected {
    width: 100%;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(10, 10, 25, 0.6);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.dropdown-selected:hover,
.dropdown-selected.active {
    border-color: var(--primary-color);
    box-shadow: 
        0 0 0 3px rgba(0, 102, 255, 0.1),
        inset 0 1px 3px rgba(0, 0, 0, 0.2),
        0 4px 12px rgba(0, 102, 255, 0.15);
    background: rgba(10, 10, 25, 0.8);
    transform: translateY(-1px);
}

.dropdown-selected .placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

.dropdown-arrow {
    font-size: 0.875rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.dropdown-selected.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-options {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.dropdown-options.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-option {
    padding: 1rem 1.25rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 102, 255, 0.1), 
        transparent);
    transition: left 0.3s ease;
}

.dropdown-option:hover {
    color: var(--text-primary);
    background: rgba(0, 102, 255, 0.05);
    border-left: 3px solid var(--primary-color);
    padding-left: calc(1.25rem - 3px);
}

.dropdown-option:hover::before {
    left: 100%;
}

.dropdown-option.selected {
    color: var(--primary-color);
    background: rgba(0, 102, 255, 0.1);
    font-weight: 600;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.125rem;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-secondary);
    text-transform: none;
    letter-spacing: normal;
    cursor: pointer;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.checkbox-group a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--accent-color-2) 50%, 
        var(--secondary-color) 100%);
    background-size: 200% 200%;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    font-family: var(--font-ui);
    letter-spacing: 0.025em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 20px rgba(0, 102, 255, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.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 ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 30px rgba(0, 102, 255, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    background-position: 100% 0;
}

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

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 
        0 4px 15px rgba(0, 102, 255, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   CONTACT INFO - MODERN CARDS
   ========================================================================== */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: rgba(15, 15, 30, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--secondary-color), 
        var(--accent-color-2));
    transition: left 0.5s ease;
}

.info-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(0, 102, 255, 0.2),
        0 0 30px rgba(0, 102, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.3);
}

.info-card:hover::before {
    left: 100%;
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--accent-color-2) 50%, 
        var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 8px 20px rgba(0, 102, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 30px rgba(0, 102, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.info-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.info-card p {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.6;
    font-size: 1rem;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.info-card a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.info-card a:hover {
    color: var(--secondary-color);
}

.info-card a:hover::after {
    width: 100%;
}

.social-connect {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-connect h3 {
    font-size: 1.25rem;
    font-weight: 600;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icons a {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(10, 10, 25, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        var(--primary-color), 
        var(--secondary-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icons a i {
    font-size: 1.25rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.social-icons a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
    border-color: var(--primary-color);
}

.social-icons a:hover::before {
    opacity: 1;
}

.social-icons a:hover i {
    color: white;
    transform: scale(1.1);
}

/* ==========================================================================
   MAP SECTION - ENHANCED DESIGN
   ========================================================================== */
.map-section {
    padding: 6rem 5%;
    background: linear-gradient(180deg, 
        var(--dark-bg) 0%, 
        rgba(3, 3, 8, 0.95) 100%);
    position: relative;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 102, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(0, 255, 204, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.map {
    position: relative;
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
}

.map iframe {
    width: 100%;
    height: 450px;
    border: none;
    filter: grayscale(20%) contrast(1.1) brightness(0.9);
    transition: filter 0.3s ease;
}

.map:hover iframe {
    filter: grayscale(0%) contrast(1.2) brightness(1);
}

/* ==========================================================================
   FAQ SECTION - MODERN ACCORDION
   ========================================================================== */


/* ==========================================================================
   CTA SECTION - ENHANCED DESIGN
   ========================================================================== */
.cta {
    padding: 6rem 5%;
    background: linear-gradient(135deg, 
        rgba(0, 102, 255, 0.1) 0%, 
        rgba(123, 90, 255, 0.08) 50%, 
        rgba(0, 255, 204, 0.06) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, 
        var(--text-primary) 0%, 
        var(--primary-color) 50%, 
        var(--secondary-color) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    background: linear-gradient(135deg, 
        var(--primary-color) 0%, 
        var(--accent-color-2) 50%, 
        var(--secondary-color) 100%);
    background-size: 200% 200%;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    font-family: var(--font-ui);
    letter-spacing: 0.025em;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 102, 255, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.cta-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 ease;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(0, 102, 255, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    background-position: 100% 0;
}

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

.cta-small {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-top: 1rem;
    font-style: italic;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form-container,
    .contact-info {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 60vh;
        padding: 6rem 5% 4rem;
    }
    
    .contact-hero-content {
        padding: 2rem 1.5rem;
    }
    
    .contact-grid-section,
    .map-section,
    .contact-faq,
    .cta {
        padding: 4rem 5%;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-answer p {
        padding: 1.25rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hero-content {
        padding: 1.5rem 1rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .info-card {
        padding: 1.25rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ==========================================================================
   SCROLL ANIMATIONS
   ========================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */
.border-none {
    border: none !important;
}

.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0 !important;
}

/* ==========================================================================
   ACCESSIBILITY IMPROVEMENTS
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for better accessibility */
.contact-form input:focus,
.contact-form textarea:focus,
.dropdown-selected:focus,
.submit-btn:focus,
.cta-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .contact-form-container,
    .info-card {
        border-width: 2px;
    }
    
    .contact-form input,
    .contact-form textarea,
    .dropdown-selected {
        border-width: 2px;
    }
}