/* CSS Custom Properties - White Luxury Palette */
:root {
    /* Primary Colors - Deep Navy & Alabaster */
    --color-primary-dark: #0A1128;
    --color-primary-navy: #1C2541;
    --color-primary-blue: #3A86FF;

    /* Accent Colors - Polished Gold & Charcoal */
    --color-accent-gold: #C5A028;
    --color-accent-champagne: #F5E6BE;
    --color-accent-dark: #333333;

    /* Neutral Colors */
    --color-bg: #FFFFFF;
    --color-bg-soft: #FAFAFA;
    --color-white: #FFFFFF;
    --color-light-gray: #F0F0F0;
    --color-medium-gray: #666666;
    --color-dark-gray: #2A2A2A;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-soft) 100%);
    --gradient-accent: linear-gradient(135deg, var(--color-accent-gold) 0%, #E6C878 100%);

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Shadows - Soft Luxury Depth */
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 20px rgba(58, 134, 255, 0.15);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

/* ===================================
   Global Styles & Reset
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 145px;
    /* Account for fixed header + sub-nav */
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-primary-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: 90px;
    /* Precise height of fixed main nav */
}

/* ===================================
   Navigation
   =================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    transition: all var(--transition-medium);
    background: white;
    /* Always white as requested */
    box-shadow: var(--shadow-sm);
}

.nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--color-accent-gold) 50%,
            transparent 100%);
    background-size: 200% 100%;
    animation: flowLine 3s linear infinite;
    opacity: 0.8;
}

@keyframes flowLine {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.nav.transparent {
    background: transparent;
    box-shadow: none;
}

.nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 70px;
    /* Increased from 50px */
}

.logo-img {
    height: 100%;
    width: auto;
    transition: transform var(--transition-fast);
}

/* invert logo for white background if it was blue on white, but logo-light might need inversion or replacement */
/* The user's logo is blue on white background, so it should look fine on white. */

.logo-img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-link {
    color: var(--color-primary-dark);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width var(--transition-medium);
}

.nav-link:hover {
    color: var(--color-accent-gold);
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: var(--shadow-md);
    border-radius: 8px;
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-medium);
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--color-primary-dark);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    transition: background var(--transition-fast);
}

.dropdown-menu li a:hover {
    background: var(--color-bg-soft);
    color: var(--color-accent-gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-primary-dark);
    transition: all var(--transition-fast);
}

/* ===================================
   Hero Section with Globe
   =================================== */

.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
    background-color: var(--color-bg);
    padding: 0 5% 0 8%;
}

.globe-container {
    position: relative;
    width: 40%;
    height: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

#globeCanvas {
    width: 100%;
    height: 100%;
    display: block;
}



.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: var(--spacing-md);
    width: 60%;
    min-width: 400px;
}



.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 8vw, 6.5rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--spacing-md);
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary-navy) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
    color: var(--color-accent-gold);
    /* Optional: emphasize Redefined in gold */
    -webkit-text-fill-color: var(--color-accent-gold);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400;
    color: var(--color-medium-gray);
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.scroll-indicator {
    position: relative;
    margin: -3rem auto 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    animation: fadeInUp 1s ease 0.6s forwards;
    opacity: 0;
    z-index: 10;
    text-align: center;
}

.scroll-text {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-medium-gray);
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--color-accent-gold);
    border-bottom: 2px solid var(--color-accent-gold);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

/* ===================================
   Sections
   =================================== */

.section {
    padding: var(--spacing-xl) var(--spacing-md);
    position: relative;
    background-color: var(--color-bg);
    /* Ensure solid background to cover hero artifacts */
    z-index: 5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary-dark);
}

.title-underline {
    width: 80px;
    height: 3px;
    background: var(--gradient-accent);
    margin: 0 auto;
    border-radius: 2px;
}



/* ===================================
   Global Reach Section
   =================================== */

.global-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    transition: all var(--transition-medium);
}

.location-card {
    position: relative;
    height: 320px;
    /* Slightly increased */
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

/* Mitigation for baked-in overlays in some images */
.location-card[data-bg*="dubai"],
.location-card[data-bg*="spain"],
.location-card[data-bg*="south_africa"],
.location-card[data-bg*="chile"],
.location-card[data-bg*="uk"],
.location-card[data-bg*="canada"] {
    background-size: 130%;
    /* Zoom in to bypass any dark boxed edges in the base images */
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10, 17, 40, 0.85) 100%);
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
    z-index: 1;
}

.location-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.location-card:hover::before {
    background: linear-gradient(180deg, rgba(10, 17, 40, 0.2) 0%, rgba(10, 17, 40, 0.9) 100%);
}

.location-card-content {
    position: relative;
    z-index: 2;
    padding: var(--spacing-md);
    width: 100%;
    transition: all 0.5s ease;
}

.location-name {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--color-white);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.location-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0;
    transition: all 0.4s ease;
}


/* ===================================
   Contact Section
   =================================== */

.contact-section {
    background: var(--color-bg-soft);
}

.contact-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-medium-gray);
    margin-bottom: var(--spacing-md);
}

.contact-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--color-primary-dark);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    border-radius: 50px;
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-sm);
}

.contact-button:hover {
    transform: translateY(-3px);
    background: var(--color-primary-navy);
    box-shadow: var(--shadow-md);
}

/* ===================================
   Footer - Premium Dark Theme
   =================================== */

.footer {
    background: #0A0A0A;
    color: #FFFFFF;
    padding: 40px 0 25px;
    font-family: var(--font-body);
    border-top: none;
}

.footer .container {
    max-width: 1400px;
    padding: 0 5%;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: lighten;
    filter: brightness(1.1);
}

.footer-tagline {
    font-size: 0.95rem;
    color: #AAAAAA;
    font-weight: 300;
}

.footer-cta-btn {
    display: inline-block;
    padding: 10px 22px;
    background: #73C2FB;
    /* Light blue from image */
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    width: fit-content;
    transition: all 0.3s ease;
    text-align: center;
}

.footer-cta-btn:hover {
    background: #5AB2F0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(115, 194, 251, 0.3);
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-mission {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
    color: #FFFFFF;
    max-width: 800px;
}

.footer-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-column-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: #888888;
    margin-bottom: 20px;
    font-weight: 500;
}

.footer-info-content {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #E0E0E0;
    font-weight: 400;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: #333333;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--color-accent-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid #222;
}

.footer-bottom-link {
    color: #888888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-link:hover {
    color: #FFFFFF;
}

.footer-copyright {
    color: #888888;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-info-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 20px;
    }
}

/* ===================================
   Animations
   =================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0) rotate(45deg);
    }

    50% {
        transform: translateY(-10px) rotate(45deg);
    }
}

/* Fade-in on scroll */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--spacing-lg);
        transition: left var(--transition-medium);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        flex-direction: column-reverse;
        /* Put globe on top for portrait */
        height: auto;
        min-height: 80vh;
        padding: var(--spacing-md) var(--spacing-md);
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        width: 100%;
        text-align: center;
        max-width: 100%;
        padding: 0;
    }

    .globe-container {
        width: 100%;
        height: 350px;
        /* Reduced height from 400px */
        margin-bottom: -30px;
        /* Bring text closer to globe */
    }

    .section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

}

/* ===================================
   Form Status Messages
   =================================== */

#status-message {
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    display: none;
    /* Hidden by default */
}

#status-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#status-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* ===================================
   Social Media Sidebar - Fluid Droplet Design
   =================================== */

.social-sidebar {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    padding: var(--spacing-sm) 0;
    gap: 15px;
    z-index: 2000;
    background: transparent;
    pointer-events: none;
    /* Let clicks pass through gaps */
}

.social-item {
    pointer-events: auto;
    /* Enable clicks on items */
    color: var(--color-white);
    font-size: 1rem;
    text-decoration: none;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(28, 37, 65, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);

    /* Droplet Shape - More circular but still organic */
    border-radius: 48% 52% 52% 48% / 48% 52% 52% 48%;

    /* Subtle Floating Animation */
    animation: dropletWobble 6s ease-in-out infinite;
    position: relative;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Staggered Floating Animation for an organic feel */
.social-item:nth-child(1) {
    animation-delay: 0s;
}

.social-item:nth-child(2) {
    animation-delay: 1.2s;
}

.social-item:nth-child(3) {
    animation-delay: 2.4s;
}

.social-item:nth-child(4) {
    animation-delay: 3.6s;
}

.social-item:nth-child(5) {
    animation-delay: 4.8s;
}

.social-item:hover {
    transform: scale(1.25) rotate(5deg);
    border-radius: 50%;
    /* Becomes perfectly circular on hover */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Social Media Specific Colors on Hover */
.social-item[aria-label="Instagram"]:hover {
    background: radial-gradient(circle at 30% 30%, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
}

.social-item[aria-label="Facebook"]:hover {
    background: #1877F2;
    border-color: #0d6efd;
}

.social-item[aria-label="LinkedIn"]:hover {
    background: #0A66C2;
    border-color: #004182;
}

.social-item[aria-label="X (Twitter)"]:hover {
    background: #000000;
    border-color: #333;
}

.social-item[aria-label="YouTube"]:hover {
    background: #FF0000;
    border-color: #c00;
}

@keyframes dropletWobble {

    0%,
    100% {
        border-radius: 48% 52% 52% 48% / 48% 52% 52% 48%;
        transform: translateY(0) rotate(0deg);
    }

    33% {
        border-radius: 52% 48% 48% 52% / 52% 48% 48% 52%;
        transform: translateY(-4px) rotate(1deg);
    }

    66% {
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
        transform: translateY(4px) rotate(-1deg);
    }
}

/* Responsive Sidebar */
@media (max-width: 1024px) {
    .social-sidebar {
        left: 15px;
    }

    .social-item {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .social-sidebar {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .nav-logo {
        height: 40px;
    }

    .scroll-indicator {
        margin: -1.5rem auto 1rem;
    }
}

/* ===================================
   Contact Page Styles
   =================================== */

.contact-hero {
    padding: 120px 0 60px;
    background: var(--color-bg);
    text-align: center;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    color: var(--color-primary-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.title-underline.center {
    margin-left: auto;
    margin-right: auto;
}

.info-cards-section {
    background: var(--color-bg-soft);
    padding: 80px 0;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: transform var(--transition-medium);
    border: 1px solid var(--color-light-gray);
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card-icon {
    font-size: 2.5rem;
    color: var(--color-primary-blue);
    margin-bottom: 20px;
}

.info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--color-primary-dark);
}

.info-card p,
.info-card-sub {
    color: var(--color-medium-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.card-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--color-primary-blue);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-fast);
}

.card-link:hover {
    border-bottom-color: var(--color-primary-blue);
}

.contact-form-section {
    padding: 100px 0;
}

.contact-form-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-form-header h2 {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: var(--color-primary-dark);
}

.consultation-promo {
    margin-top: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.consultation-promo a {
    color: #d12d2d;
    text-decoration: underline;
}

.form-map-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-dark-gray);
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--color-light-gray);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s;
    background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary-blue);
}

.submit-btn {
    padding: 15px 30px;
    background: var(--color-primary-dark);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: var(--color-primary-navy);
}

.india-map-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 992px) {
    .form-map-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-map-container {
        order: -1;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-hero-title {
        font-size: 2.5rem;
    }
}