/* Variables & Branding */
:root {
    --color-navy: #203A5C;
    --color-dark-navy: #182237;
    --color-bronze: #56413D;
    --color-gold: #C5A059;
    --color-off-white: #F8F9FA;
    --color-white: #FFFFFF;
    --color-black: #17171E;
    --color-text: #333333;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --font-fun: 'Sacramento', cursive;

    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 5rem;

    --border-radius-sm: 12px;
    --border-radius-md: 24px;
    --border-radius-lg: 40px;
    --border-radius-pill: 100px;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);

    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-off-white);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

h2 {
    font-family: var(--font-body);
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--border-radius-md);
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-lg) 0;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: var(--spacing-lg);
    color: var(--color-navy);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--color-gold);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius-pill);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--color-navy);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(32, 58, 92, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-bronze);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(86, 65, 61, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-navy);
    color: var(--color-navy);
}

.btn-outline:hover {
    background-color: var(--color-navy);
    color: var(--color-white);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    background-color: var(--color-white);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
}

.dynamic-banner {
    width: 100%;
    text-align: center;
    padding: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 999;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    margin-right: 2rem;
}

.logo-img {
    height: auto;
    width: 250px; /* Fixed width - never shrinks */
    min-width: 250px;
    border-radius: 0;
    /* Tint to Navy Blue #203A5C */
    filter: brightness(0) saturate(100%) invert(18%) sepia(34%) saturate(1479%) hue-rotate(182deg) brightness(92%) contrast(91%);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    color: var(--color-dark-navy);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--color-navy);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.language-switcher-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
    font-weight: 700;
    color: var(--color-navy);
    font-size: 0.9rem;
}

.language-switcher-nav a {
    opacity: 0.6;
}

.language-switcher-nav a.active,
.language-switcher-nav a:hover {
    opacity: 1;
}

.divider {
    color: var(--color-gold);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--color-navy);
    cursor: pointer;
}

/* Hero Section */
.hero-split {
    display: flex;
    min-height: 700px;
    max-height: 100vh;
    position: relative;
    background-color: var(--color-off-white);
    overflow: visible;
    padding-top: 0;
    padding-bottom: 0;
}

.hero-inner-container {
    display: flex;
    width: 100%;
    max-width: 100%;
    margin: 0;
    height: 100%;
    z-index: 2;
}

.hero-text-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 2;
}

.hero-content {
    max-width: 550px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--color-navy);
}

.fun-text {
    font-family: var(--font-fun);
    color: var(--color-gold);
    font-weight: 400;
    font-size: 1.2em;
    text-shadow: 0 0 5px rgba(197, 160, 89, 0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--color-text);
}

.hero-image-side {
    flex: 1;
    position: relative;
}

.hero-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    /* Fade transition on the right side (blending into text) */
    mask-image: linear-gradient(to right, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 70%, transparent 100%);
}

/* Wave Divider */
.custom-shape-divider-bottom-1689965555 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 3;
}

.custom-shape-divider-bottom-1689965555 svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 0px;
}

.custom-shape-divider-bottom-1689965555 .shape-fill {
    fill: var(--color-navy);
}

/* Hide wave divider on mobile since layout changes */
@media (max-width: 900px) {
    .custom-shape-divider-bottom-1689965555 {
        display: none;
    }
}

/* Intro Section */
.intro {
    background-color: var(--color-navy);
    text-align: center;
    color: var(--color-white);
    padding-top: 4rem;
    padding-bottom: 8rem;
    position: relative;
}

/* Wave Divider (Intro to Services) */
.custom-shape-divider-bottom-intro {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-intro svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.custom-shape-divider-bottom-intro .shape-fill-white {
    fill: var(--color-off-white);
}

.intro-text {
    max-width: 800px;
    margin: 0 auto;
}

.intro h2 {
    font-size: 3rem;
    color: var(--color-white);
}

.text-white {
    color: var(--color-white) !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.intro p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.highlight {
    font-weight: 700;
    color: var(--color-gold);
    font-size: 1.3rem;
    margin-top: 2rem;
    display: block;
}

/* Services Section */
.services {
    background-color: var(--color-off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0;
}

.service-info {
    padding: 2.5rem;
    text-align: center;
}

.service-info h3 {
    color: var(--color-navy);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    color: var(--color-navy);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.text-link i {
    transition: transform 0.3s ease;
}

.text-link:hover {
    color: var(--color-bronze);
}

.text-link:hover i {
    transform: translateX(5px);
}

/* Reviews Section */
.reviews {
    background-color: var(--color-white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background-color: var(--color-off-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

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

.stars {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--color-text);
    line-height: 1.6;
}

.review-author {
    font-weight: 700;
    color: var(--color-navy);
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

/* Fun Headings */
.fun-heading-sm {
    font-family: var(--font-fun);
    font-size: 4rem;
    color: var(--color-navy);
    margin-bottom: 2rem;
}

.text-gold {
    color: var(--color-gold);
}

/* Info & Location Section */
.info {
    background-color: var(--color-off-white);
}

.info-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
    background-color: var(--color-white);
    padding: 4rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
}

.info-details h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.info-details address {
    font-style: normal;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.info-details address p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-details address i {
    color: var(--color-gold);
    font-size: 1.4rem;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px dashed #eee;
    font-size: 1.1rem;
}

.hours-list span:first-child {
    font-weight: 700;
    color: var(--color-navy);
}

.map-container {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 100%;
    min-height: 450px;
}

.map-container iframe {
    height: 100%;
    min-height: 450px;
}

/* Footer */
.footer {
    background-color: var(--color-dark-navy);
    color: var(--color-white);
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer About/Logo Column */
.footer-about {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.logo-img-footer {
    max-height: 50px;
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    border-radius: 0;
}

.footer-tagline {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--color-gold);
    color: var(--color-dark-navy);
    transform: translateY(-3px);
}

/* Footer Links Columns */
.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-services li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-services a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--color-gold);
    padding-left: 5px;
}

/* Footer Contact Column */
.footer-contact .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-contact .contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.footer-contact .contact-item i {
    color: var(--color-gold);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.footer-contact .contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact .contact-item a:hover {
    color: var(--color-gold);
}

.footer-contact .contact-item div {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact .contact-item strong {
    color: var(--color-white);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
}

.footer-legal p,
.footer-locations p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-locations p {
    text-align: right;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-locations p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-column h4 {
        font-size: 1.1rem;
    }

    .footer-about {
        grid-column: 1;
    }

    .footer-links ul,
    .footer-services ul {
        text-align: center;
    }

    .footer-contact .contact-info {
        align-items: center;
        gap: 1.5rem;
    }

    .footer-contact .contact-item {
        display: grid;
        grid-template-columns: 24px 1fr;
        gap: 1rem;
        text-align: left;
        max-width: 280px;
    }

    .footer-contact .contact-item i {
        color: var(--color-gold);
        font-size: 1.1rem;
        margin: 0;
        padding: 0.3rem 0 0 0;
        text-align: left;
        display: block;
        align-self: start;
    }

    .footer-contact .contact-item div {
        text-align: left;
    }

    .social-links {
        justify-content: center;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .nav-container {
        padding: 0 2rem;
    }

    .nav-menu {
        display: none;
        /* Hide by default on mobile */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        text-align: center;
        z-index: 1001;
    }

    .nav-links {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .nav-buttons {
        flex-direction: column;
        width: 100%;
        justify-content: center;
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .info-container {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}

@media (max-width: 900px) {
    .hero-split {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        /* Allow height to adjust */
        padding-bottom: 0;
        /* No wave on mobile */
        margin-bottom: 0;
        position: relative;
        overflow: visible;
    }

    .hero-inner-container {
        margin-bottom: 0;
        padding-bottom: 2rem;
        position: relative;
        z-index: 10;
        background-color: var(--color-off-white);
    }

    .hero-text-side {
        padding: 2rem 1.5rem 2rem 1.5rem;
        order: 0;
        /* Text first on mobile */
        margin-bottom: 0;
        position: relative;
        z-index: 10;
    }

    .hero-image-side {
        display: none;
        /* Hide image on mobile as requested */
    }

    .hero-content {
        padding-bottom: 1rem;
        margin-bottom: 0;
        position: relative;
        z-index: 10;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-content h2 {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .hero-content .btn-large {
        margin-top: 1rem;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 10;
    }

    /* Control Elfsight widget spacing on mobile */
    .hero-content .elfsight-app-3c4ea831-177a-4c75-8cb2-4c43ff488801 {
        margin-bottom: 1rem;
        max-height: 80px;
        overflow: hidden;
    }

    .hero-content br {
        display: none;
    }

    .fun-heading {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}


/* Add these styles to your existing styles.css file */

/* Note: Logo styles are defined earlier in the file to maintain fixed width */

/* Dropdown Menu Styles */
.nav-item {
    position: relative;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.has-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.has-dropdown > a i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.has-dropdown > a i.rotated {
    transform: rotate(180deg);
}

/* Submenu Styles */
.has-submenu {
    position: relative;
}

.has-submenu > a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.8rem 1.5rem;
    padding-right: 2.5rem !important;
    position: relative;
}

.submenu-arrow {
    font-size: 0.7rem;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.submenu-arrow.rotated {
    transform: translateY(-50%) rotate(90deg);
}

.submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background-color: var(--color-white);
    min-width: 200px;
    padding: 0.5rem 0;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1001;
    margin-left: 0.5rem;
}

.submenu.show {
    opacity: 1;
    visibility: visible;
}

.submenu li {
    width: 100%;
}

.submenu a {
    display: block;
    width: 100%;
    padding: 0.8rem 1.5rem;
    color: var(--color-dark-navy);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.submenu a::after {
    display: none;
}

.submenu a:hover {
    background-color: var(--color-navy);
    color: var(--color-white);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-white);
    min-width: 220px;
    padding: 0.5rem 0;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateX(-50%) translateY(10px);
    z-index: 1000;
    margin-top: 1rem;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    list-style: none;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    width: 100%;
    padding: 0.8rem 1.5rem;
    color: var(--color-dark-navy);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.2s ease;
    position: relative;
    box-sizing: border-box;
}

.dropdown-menu a::after {
    display: none; /* Remove the underline effect in dropdown */
}

.dropdown-menu a:hover {
    background-color: var(--color-navy);
    color: var(--color-white);
}

/* Responsive adjustments */
/* Logo maintains fixed width on all screen sizes - no responsive scaling */

@media (max-width: 1200px) {
    /* Mobile dropdown adjustments */
    .nav-links {
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .nav-links li {
        width: 100%;
        justify-content: center;
        padding: 0;
        margin: 0;
    }

    .has-dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        margin: 0;
    }

    .has-dropdown > a {
        justify-content: center;
        width: 100%;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .nav-menu .nav-links .has-dropdown .dropdown-menu {
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        box-shadow: none;
        background-color: var(--color-off-white);
        border-radius: 0;
        margin: 0.5rem 0 0 0 !important;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100% !important;
        min-width: 100% !important;
    }

    .nav-menu .nav-links .has-dropdown .dropdown-menu.show {
        max-height: 800px;
        padding: 0.5rem 0;
    }

    .nav-menu .nav-links .has-dropdown .dropdown-menu li {
        width: 100% !important;
        text-align: center;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none;
    }

    .nav-menu .nav-links .has-dropdown .dropdown-menu a {
        padding: 0.8rem 2rem !important;
        font-size: 0.85rem;
        text-align: center;
        width: 100% !important;
        display: block !important;
        box-sizing: border-box;
    }

    .nav-menu .nav-links .has-dropdown .dropdown-menu a:hover {
        padding: 0.8rem 2rem !important;
    }

    /* Mobile submenu styles */
    .has-submenu {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .has-submenu > a {
        justify-content: center;
        padding: 0.8rem 2rem !important;
        width: 100%;
        position: relative;
        display: flex !important;
        align-items: center;
    }

    .submenu-arrow {
        position: absolute;
        right: 2rem;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 0;
    }

    .submenu-arrow.rotated {
        transform: translateY(-50%) rotate(90deg);
    }

    .submenu {
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        box-shadow: none;
        background-color: #E8E8E8;
        border-radius: 0;
        margin: 0 !important;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100% !important;
        min-width: 100% !important;
    }

    .submenu.show {
        max-height: 400px;
        padding: 0.5rem 0;
    }

    .submenu li {
        width: 100% !important;
        text-align: center;
    }

    .submenu a {
        padding: 0.7rem 3rem !important;
        font-size: 0.8rem !important;
        width: 100% !important;
        display: block !important;
        text-align: center;
    }
}

/* Mobile Hero Image */
.mobile-hero-image {
    display: none;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    background-color: var(--color-off-white);
}

.mobile-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 0;
}

@media (max-width: 900px) {
    /* Mobile Hero Image - Show on mobile and tablet (when normal hero is hidden) */
    .mobile-hero-image {
        display: block;
        margin-top: 0;
        margin-bottom: 0;
        padding: 0;
        clear: both;
        position: relative;
        z-index: 1;
    }
}

@media (max-width: 768px) {
    /* Placeholder for other 768px styles if needed */
}