    .container {
        max-width: 1000px;
        padding: 0 1vw;
        margin: 0 auto;
    }
    .section, .section-alt {
        padding: 2.5rem 0;
        width: 100%;
    }
    .row {
        flex-direction: row;
        gap: 1.5vw;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: center;
        width: 100%;
    }
    .col-third {
        flex: 0 0 32%;
        max-width: 32%;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    .card {
        max-width: 300px;
        padding: 1.5rem 1vw;
    }
    .card-image {
        max-width: 280px;
        height: auto;
    }
    .multi-column-footer {
        max-width: 1000px;
    }
    body {
        font-size: 1.05rem;
    }
/* Mobile-first responsive design */
/* Hamburger and Mobile Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 102;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 4px;
    background: #234f1e;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
}
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 101;
    opacity: 0;
    transition: opacity 0.3s;
}
.mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; right: -100vw;
    width: 80vw;
    max-width: 340px;
    height: 100vh;
    background: #234f1e;
    box-shadow: -2px 0 16px rgba(0,0,0,0.08);
    z-index: 102;
    padding: 2rem 1.5rem 1rem;
    transition: right 0.3s;
}
.mobile-menu.open {
    right: 0;
}
.mobile-menu-overlay.open {
    display: block;
    opacity: 1;
}
.close-menu {
    background: none;
    border: none;
    color: #fff;
    font-size: 2.2rem;
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    cursor: pointer;
    z-index: 103;
}
.mobile-menu ul {
    list-style: none;
    padding: 3rem 0 0 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.mobile-menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.15rem;
    padding: 0.8rem 1rem;
    border-radius: 6px;
    width: 100%;
    display: block;
    transition: background 0.2s;
}
.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
    background: rgba(255,255,255,0.12);
}
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .hamburger {
        display: flex;
    }
}
/* Responsive Navigation Styles */
.navbar {
    width: 100%;
    background: var(--forest-green, #234f1e);
    color: #fff;
    position: relative;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 2vw;
}
.logo {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 1px;
}
.nav-menu {
    display: flex;
    gap: 2vw;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: background 0.2s;
}
.nav-menu li a:hover,
.nav-menu li a.active {
    background: rgba(255,255,255,0.12);
}
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 102;
}
.hamburger span {
    display: block;
    width: 28px;
    height: 4px;
    background: #fff;
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.3);
        z-index: 101;
        opacity: 0;
        transition: opacity 0.3s;
    }
    .mobile-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; right: -100vw;
        width: 80vw;
        max-width: 340px;
        height: 100vh;
        background: var(--forest-green, #234f1e);
        box-shadow: -2px 0 16px rgba(0,0,0,0.08);
        z-index: 102;
        padding: 2rem 1.5rem 1rem;
        transition: right 0.3s;
    }
    .mobile-menu.open {
        right: 0;
    }
    .mobile-menu-overlay.open {
        display: block;
        opacity: 1;
    }
    .close-menu {
        background: none;
        border: none;
        color: #fff;
        font-size: 2.2rem;
        position: absolute;
        top: 1rem;
        right: 1.2rem;
        cursor: pointer;
        z-index: 103;
    }
    .mobile-menu ul {
        list-style: none;
        padding: 3rem 0 0 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
    }
    .mobile-menu ul li a {
        color: #fff;
        text-decoration: none;
        font-size: 1.15rem;
        padding: 0.8rem 1rem;
        border-radius: 6px;
        width: 100%;
        display: block;
        transition: background 0.2s;
    }
    .mobile-menu ul li a:hover,
    .mobile-menu ul li a.active {
        background: rgba(255,255,255,0.12);
    }
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
body {
    font-size: 1rem;
    line-height: 1.6;
}
.container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2vw;
    padding-right: 2vw;
}
.section, .section-alt {
    padding: 2rem 0;
    width: 100vw;
}
.row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}
.col, .col-half, .col-third, .col-quarter {
    flex: 0 0 32%;
    max-width: 32%;
    min-width: 280px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    max-width: 70ch;
    .container {
        max-width: 98vw;
        padding: 0 1vw;
    }
    .section, .section-alt {
        padding: 2rem 0;
    }
    .row {
        gap: 1vw;
        flex-direction: column;
    }
    .col-third {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    .card {
        max-width: 98vw;
        padding: 1.5rem 1vw;
    }
    .card-image {
        height: 160px;
        max-width: 98vw;
    }
    .multi-column-footer {
        flex-direction: column;
        gap: 1.5rem;
        width: 98vw;
    }
    .footer-col {
        margin-bottom: 2rem;
        min-width: 0;
        flex: 1 1 100%;
    }
}
    .container {
        max-width: 1200px;
        padding: 0 2vw;
        margin: 0 auto;
    }
    .section, .section-alt {
        padding: 3rem 0;
        width: 100%;
    }
    .row {
        flex-direction: row;
        gap: 2vw;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: center;
        width: 100%;
    }
    .col-third {
        flex: 0 0 32%;
        max-width: 32%;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .container {
        max-width: 1440px;
        padding: 0 4vw;
        margin: 0 auto;
    }
    .section, .section-alt {
        padding: 4rem 0;
        width: 100%;
    }
    .row {
        gap: 3vw;
    }
    .col-third {
        flex: 0 0 30%;
        max-width: 30%;
        margin-bottom: 0;
    }
    .card {
        max-width: 28vw;
        padding: 2.5rem 2vw;
    }
    .card-image {
        max-width: 28vw;
        height: auto;
    }
    .multi-column-footer {
        max-width: 1440px;
    }
    body {
        font-size: 1.25rem;
    }

.btn, .btn-primary, .btn-secondary, .btn-gold {
    width: 100%;
    font-size: 1rem;
    padding: 1rem 0.5rem;
    margin-bottom: 1rem;
}
img, .card-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}
.hero {
    height: 60vh;
    min-height: 320px;
    background-attachment: scroll;
}
.hero-content {
    padding: 2rem 1rem;
    margin-top: 56px;
    max-width: 98vw;
    text-align: center;
}
.multi-column-footer {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem 1rem 1rem;
    width: 100vw;
}
.footer-col {
    border-right: none;
    padding-right: 0;
    margin-bottom: 1.5rem;
    min-width: 0;
}
.footer-bottom-bar {
    font-size: 0.95rem;
    padding: 1rem 0 0 0;
}

@media (min-width: 601px) and (max-width: 1024px) {
    .container {
        max-width: 95vw;
        padding: 0 2rem;
    }
    .section, .section-alt {
        padding: 2.5rem 0;
        width: 95vw;
    }
    .row {
        flex-direction: row;
        gap: 2rem;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
    }
    .col-half {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    .col-third {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 2rem;
    }
    .col-quarter {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    .btn, .btn-primary, .btn-secondary, .btn-gold {
        font-size: 1.05rem;
        padding: 1rem 1.5rem;
        width: 100%;
        margin-bottom: 1rem;
    }
    img, .card-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 10px;
    }
    .hero {
        height: 70vh;
        min-height: 350px;
        background-attachment: scroll;
    }
    .hero-content {
        padding: 2.5rem 2rem;
        margin-top: 64px;
        max-width: 95vw;
        text-align: center;
    }
    .multi-column-footer {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
        padding: 2.5rem 2rem 1.5rem;
        width: 95vw;
    }
    .footer-col {
        border-right: none;
        padding-right: 0;
        margin-bottom: 2rem;
        min-width: 0;
        flex: 1 1 45%;
    }
    .footer-bottom-bar {
        font-size: 1rem;
        padding: 1.5rem 0 0 0;
    }
}

@media (min-width: 1025px) {
        .container {
            max-width: 1200px;
            padding: 0 2rem;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .section, .section-alt {
            padding: 3rem 0;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }
        .row {
            display: flex;
            flex-direction: row;
            gap: 2rem;
            flex-wrap: wrap;
            align-items: flex-start;
            justify-content: center;
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
        }
        .col-third {
            flex: 0 0 33.333%;
            max-width: 33.333%;
            margin-bottom: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
        }
        .col-half, .col-quarter {
            display: none;
        }
    .btn, .btn-primary, .btn-secondary, .btn-gold {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        width: auto;
        margin-bottom: 0;
    }
    img, .card-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 10px;
    }
    .hero {
        height: 100vh;
        min-height: 400px;
        background-attachment: fixed;
    }
    .hero-content {
        padding: 3rem 2rem;
        margin-top: 80px;
        max-width: 700px;
        text-align: center;
    }
    .multi-column-footer {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
        padding: 3rem 2rem 2rem;
        width: 100%;
    }
    .footer-col {
        border-right: 1px solid rgba(212,175,55,0.15);
        padding-right: 2rem;
        margin-bottom: 0;
        min-width: 0;
    }
    .footer-col:last-child {
        border-right: none;
    }
    .footer-bottom-bar {
        font-size: 1.05rem;
        padding: 2rem 0 0 0;
    }
}
/* Responsive Design: Mobile, Tablet, Desktop */
@media (max-width: 767px) {
    body {
        font-size: 0.95rem;
    }
    .container {
        max-width: 100vw;
        padding: 0 1rem;
    }
    .navbar {
        padding: 0.5rem 1rem;
    }
    .nav-container {
        padding: 0.5rem 1rem;
    }
    .nav-menu {
        flex-direction: column;
        width: 100vw;
        position: fixed;
        top: 0;
        right: -100vw;
        background: rgba(255,255,255,0.98);
        height: 100vh;
        z-index: 1001;
        transition: right 0.4s;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
        padding: 5rem 0 2rem;
        border-left: 1px solid rgba(0,0,0,0.05);
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-item a {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        width: 100%;
        text-align: left;
        border-radius: 0;
        background: transparent;
    }
    .hamburger {
        display: flex;
    }
    .section, .section-alt {
        padding: 2rem 0;
    }
    .row, .footer-content {
        flex-direction: column !important;
        display: flex !important;
        gap: 1.5rem !important;
    }
    .col, .col-half, .col-third, .col-quarter {
        flex: 1 1 100%;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }
    .btn, .btn-primary, .btn-secondary, .btn-gold {
        width: 100%;
        font-size: 1rem;
        padding: 1rem 0.5rem;
        margin-bottom: 1rem;
    }
    img, .card-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 10px;
    }
    .hero {
        height: 60vh;
        min-height: 320px;
        background-attachment: scroll;
    }
    .hero-content {
        padding: 2rem 1rem;
        margin-top: 56px;
        max-width: 98vw;
    }
    .multi-column-footer {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1rem 1rem;
    }
    .footer-col {
        border-right: none;
        padding-right: 0;
        margin-bottom: 1.5rem;
    }
    .footer-bottom-bar {
        font-size: 0.95rem;
        padding: 1rem 0 0 0;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    body {
        font-size: 1rem;
    }
    .container {
        max-width: 95vw;
        padding: 0 2rem;
    }
    .navbar, .nav-container {
        padding: 0.75rem 2rem;
    }
    .nav-menu {
        gap: 0.5rem;
    }
    .section, .section-alt {
        padding: 2.5rem 0;
    }
    .row {
        flex-direction: column;
        gap: 2rem;
    }
    .col-half, .col-third, .col-quarter {
        flex: 1 1 100%;
        max-width: 100%;
        margin-bottom: 2rem;
    }
    .btn, .btn-primary, .btn-secondary, .btn-gold {
        font-size: 1.05rem;
        padding: 1rem 1.5rem;
    }
    img, .card-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 10px;
    }
    .hero {
        height: 70vh;
        min-height: 350px;
        background-attachment: scroll;
    }
    .hero-content {
        padding: 2.5rem 2rem;
        margin-top: 64px;
        max-width: 95vw;
    }
    .multi-column-footer {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 2.5rem 2rem 1.5rem;
    }
    .footer-col {
        border-right: none;
        padding-right: 0;
        margin-bottom: 2rem;
    }
    .footer-bottom-bar {
        font-size: 1rem;
        padding: 1.5rem 0 0 0;
    }
}

@media (min-width: 1025px) {
    body {
        font-size: 1.05rem;
    }
    .container {
        max-width: 1200px;
        padding: 0 2rem;
    }
    .navbar, .nav-container {
        padding: 1rem 2rem;
    }
    .nav-menu {
        gap: 0.25rem;
    }
    .section, .section-alt {
        padding: 3rem 0;
    }
    .row {
        flex-direction: row;
        gap: 2rem;
    }
    .col-half {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 0;
    }
    .col-third {
        flex: 0 0 33.333%;
        max-width: 33.333%;
        margin-bottom: 0;
    }
    .col-quarter {
        flex: 0 0 25%;
        max-width: 25%;
        margin-bottom: 0;
    }
    .btn, .btn-primary, .btn-secondary, .btn-gold {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        width: auto;
        margin-bottom: 0;
    }
    img, .card-image {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 10px;
    }
    .hero {
        height: 100vh;
        min-height: 400px;
        background-attachment: fixed;
    }
    .hero-content {
        padding: 3rem 2rem;
        margin-top: 80px;
        max-width: 700px;
    }
    .multi-column-footer {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem;
        padding: 3rem 2rem 2rem;
    }
    .footer-col {
        border-right: 1px solid rgba(212,175,55,0.15);
        padding-right: 2rem;
        margin-bottom: 0;
    }
    .footer-col:last-child {
        border-right: none;
    }
    .footer-bottom-bar {
        font-size: 1.05rem;
        padding: 2rem 0 0 0;
    }
}
/* Multi-column sophisticated footer styles */
.multi-column-footer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-xl);
    padding: var(--spacing-xl) var(--spacing-md) var(--spacing-md);
    background-color: var(--forest-green);
    color: #fff;
    border-top: 2px solid var(--warm-gold);
}
.footer-col {
    font-family: var(--font-primary);
    color: #fff;
    font-size: 1.05rem;
    border-right: 1px solid rgba(212,175,55,0.15);
    padding-right: var(--spacing-lg);
}
.footer-col:last-child {
    border-right: none;
}
.footer-col h4 {
    color: var(--warm-gold);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    letter-spacing: 0.5px;
    font-family: var(--font-primary);
    border-bottom: 1px solid var(--light-gold);
    padding-bottom: 6px;
}
.footer-desc {
    margin-bottom: var(--spacing-md);
    color: #fff;
    font-size: 1rem;
}
.footer-mission {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: var(--spacing-md);
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
    color: var(--cream-white);
    font-size: 1rem;
}
.footer-col.links a {
    color: var(--cream-white);
    font-family: var(--font-primary);
    transition: color 0.3s;
    text-decoration: none;
    font-size: 1rem;
}
.footer-col.links a:hover {
    color: var(--warm-gold);
    text-decoration: underline;
}
.footer-social {
    margin-top: 10px;
    display: flex;
    gap: 12px;
}
.social-icon span {
    font-size: 1.3rem;
    color: var(--cream-white);
    transition: color 0.3s;
}
.social-icon:hover span {
    color: var(--warm-gold);
}
.footer-bottom-bar {
    background: var(--forest-green);
    border-top: 1px solid var(--warm-gold);
    color: var(--soft-mint);
    text-align: center;
    font-family: var(--font-primary);
    font-size: 1rem;
    padding: var(--spacing-md) 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-designed {
    color: var(--warm-gold);
    font-size: 1.05rem;
    font-family: var(--font-primary);
}
@media (max-width: 900px) {
    .multi-column-footer {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-lg);
    }
    .footer-col {
        border-right: none;
        padding-right: 0;
        margin-bottom: var(--spacing-lg);
    }
}
@media (max-width: 600px) {
    .multi-column-footer {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: var(--spacing-lg) var(--spacing-sm) var(--spacing-sm);
    }
    .footer-col {
        margin-bottom: var(--spacing-md);
    }
    .footer-bottom-bar {
        font-size: 0.95rem;
    }
}
.logo img {
    height: 64px;
    width: auto;
    background: none;
    border-radius: 0;
    box-shadow: none;
    margin-right: 12px;
    vertical-align: middle;
    transition: transform 0.3s cubic-bezier(.4,2,.3,1), box-shadow 0.3s cubic-bezier(.4,2,.3,1);
}
.logo img:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
/* ====================================
   Kampala Meditation - Main Styles
   ==================================== */

/* CSS Variables for Color Palette */
:root {
    /* Earth Tones */
    --earth-brown: #8B6F47;
    --earth-sand: #D4C2A8;
    --earth-terracotta: #C17B56;
    
    /* Soft Greens */
    --sage-green: #9CAF88;
    --soft-mint: #B8D4C2;
    --forest-green: #6B7B5A;
    
    /* Whites and Neutrals */
    --pure-white: #FFFFFF;
    --cream-white: #FAF8F5;
    --light-gray: #F0F0F0;
    --medium-gray: #8A8A8A;
    --dark-gray: #4A4A4A;
    
    /* Subtle Golds */
    --warm-gold: #D4AF37;
    --light-gold: #F4E4BC;
    --bronze-gold: #CD7F32;
    
    /* Typography */
    --font-primary: 'Cormorant Garamond', 'Georgia', serif;
    --font-secondary: 'Inter', 'Helvetica Neue', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Shadows */
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 8px 30px rgba(0, 0, 0, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--cream-white);
    font-size: 16px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--forest-green);
}

h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-lg);
}

h2 {
    font-size: 2.25rem;
    margin-bottom: var(--spacing-md);
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.375rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: var(--spacing-sm);
    color: var(--medium-gray);
}

a {
    color: var(--sage-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--forest-green);
}

/* Layout Components */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -var(--spacing-sm);
}

.col {
    flex: 1;
    padding: 0 var(--spacing-sm);
}

.col-half {
    flex: 0 0 50%;
    padding: 0 var(--spacing-sm);
}

.col-third {
    flex: 0 0 33.333%;
    padding: 0 var(--spacing-sm);
}

.col-quarter {
    flex: 0 0 25%;
    padding: 0 var(--spacing-sm);
}

/* Sticky Transparent-to-White Navigation */
.navbar {
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 0;
    border-bottom: 1px solid transparent;
    box-shadow: none;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    transition: padding 0.4s ease;
}

.navbar.scrolled .nav-container {
    padding: 0.75rem 2rem;
}

.logo {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--pure-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    letter-spacing: -0.5px;
    cursor: pointer;
}

.navbar.scrolled .logo {
    color: var(--forest-green);
    text-shadow: none;
    font-size: 1.6rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-item a {
    color: var(--pure-white);
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    border-radius: 25px;
    overflow: hidden;
}

.navbar.scrolled .nav-item a {
    color: var(--forest-green);
    text-shadow: none;
}

.nav-item a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--warm-gold) 20%, 
        var(--bronze-gold) 50%, 
        var(--warm-gold) 80%, 
        transparent 100%);
    transform: translateX(-50%);
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-item a:hover {
    color: var(--warm-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.navbar.scrolled .nav-item a:hover {
    color: var(--warm-gold);
    background: rgba(212, 175, 55, 0.08);
}

.nav-item a:hover::before {
    width: 100%;
}

.nav-item a.active {
    color: var(--warm-gold);
    background: rgba(212, 175, 55, 0.15);
}

.navbar.scrolled .nav-item a.active {
    background: rgba(212, 175, 55, 0.12);
}

.nav-item a.active::before {
    width: 80%;
}



/* Clean Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex !important;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: inherit;
    opacity: 0.7;
}

.dropdown:hover .dropdown-arrow,
.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1),
                0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.08);
    min-width: 220px;
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1000;
    list-style: none;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block !important;
    padding: 0.75rem 1.5rem !important;
    color: var(--forest-green) !important;
    font-family: var(--font-secondary) !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    background: transparent !important;
    margin: 0 !important;
    position: relative;
    letter-spacing: 0.2px !important;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--warm-gold);
    transform: scaleY(0);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-origin: bottom;
}

.dropdown-menu a:hover {
    color: #FFFFFF !important;
    background: #4A5F3A !important;
    transform: translateX(8px) !important;
    padding-left: 2rem !important;
    font-weight: 600 !important;
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

/* Elegant typography for dropdowns */
.dropdown-menu {
    font-family: var(--font-secondary);
    letter-spacing: 0.3px;
}

/* Staggered animation for dropdown items */
.dropdown-menu li {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown:hover .dropdown-menu li,
.dropdown.active .dropdown-menu li {
    opacity: 1;
    transform: translateY(0);
}

.dropdown:hover .dropdown-menu li:nth-child(1),
.dropdown.active .dropdown-menu li:nth-child(1) {
    transition-delay: 0.05s;
}

.dropdown:hover .dropdown-menu li:nth-child(2),
.dropdown.active .dropdown-menu li:nth-child(2) {
    transition-delay: 0.1s;
}

.dropdown:hover .dropdown-menu li:nth-child(3),
.dropdown.active .dropdown-menu li:nth-child(3) {
    transition-delay: 0.15s;
}

/* Clean Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: transparent;
}

.hamburger:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .hamburger:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--pure-white);
    margin: 3px 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    transform-origin: center;
    border-radius: 1px;
}

.navbar.scrolled .hamburger span {
    background-color: var(--forest-green);
}

.hamburger.active span {
    background-color: var(--warm-gold);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Clean Mobile Overlay */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: 30px;
    font-family: var(--font-secondary);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--sage-green);
    color: var(--pure-white);
}

.btn-primary:hover {
    background-color: var(--forest-green);
    color: var(--pure-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: transparent;
    color: var(--sage-green);
    border: 2px solid var(--sage-green);
}

.btn-secondary:hover {
    background-color: var(--sage-green);
    color: var(--pure-white);
}

.btn-gold {
    background-color: var(--warm-gold);
    color: var(--pure-white);
}

.btn-gold:hover {
    background-color: var(--bronze-gold);
    color: var(--pure-white);
}

/* Cards */
.card {
    background-color: var(--pure-white);
    border-radius: 15px;
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: var(--spacing-lg);
}

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

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: var(--spacing-md);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(139, 111, 71, 0.3), rgba(107, 123, 90, 0.3));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--pure-white);
}

.hero-content h1 {
    color: #fff;
    font-size: 3.2rem;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 4px 24px rgba(0,0,0,0.45), 0 1px 0 #333;
    font-weight: 700;
    letter-spacing: 1px;
    background: rgba(0,0,0,0.25);
    border-radius: 8px;
    padding: 8px 18px;
    display: inline-block;
}

.hero-content {
        text-align: center;
        position: relative;
        z-index: 2;
        max-width: 700px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 32px 16px;
        margin-top: 80px;
}

@media (max-width: 768px) {
        .hero-content {
            padding: 24px 8px;
            max-width: 95vw;
            margin-top: 56px;
        }
/* Removed misplaced properties after media query */

/* Sections */
.section {
    padding: var(--spacing-xxl) 0;
}

.section-alt {
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--medium-gray);
    margin-bottom: var(--spacing-xxl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background-color: var(--forest-green);
    color: var(--cream-white);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section h4 {
    color: var(--light-gold);
    margin-bottom: var(--spacing-md);
}

.footer-section p,
    .footer-section a {
        color: var(--cream-white);
    }
    .footer-section a:hover {
        color: var(--light-gold);
    }

.footer-section a:hover {
    color: var(--light-gold);
}

.footer-bottom {
    border-top: 1px solid var(--sage-green);
    padding-top: var(--spacing-lg);
    color: var(--soft-mint);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }
.mb-xl { margin-bottom: var(--spacing-xl); }

.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mt-xl { margin-top: var(--spacing-xl); }

/* Responsive Design */
@media (max-width: 768px) {
    /* Clean Mobile Navigation */
    .nav-menu {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        text-align: left;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        padding: 5rem 0 2rem;
        justify-content: flex-start;
        gap: 0;
        z-index: 1001;
        border-left: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-item {
        margin: 0;
        opacity: 0;
        transform: translateX(30px);
                max-height: 400px;
                background-attachment: scroll;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateX(0);
        transition-delay: calc(var(--i) * 0.08s + 0.1s);
    }

    .nav-menu .nav-item a {
        color: var(--forest-green);
        font-family: var(--font-secondary);
        font-size: 1rem;
        font-weight: 500;
        padding: 1rem 1.5rem;
        margin: 0;
        border: none;
        border-radius: 0;
        background-color: transparent;
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        display: block;
        width: 100%;
        letter-spacing: 0.2px;
        position: relative;
        text-shadow: none;
    }

    .nav-menu .nav-item a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 100%;
        background: rgba(212, 175, 55, 0.08);
        transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    .nav-menu .nav-item a:hover,
    .nav-menu .nav-item a.active {
        color: var(--warm-gold);
        background-color: transparent;
        transform: translateX(8px);
    }

    .nav-menu .nav-item a:hover::before,
    .nav-menu .nav-item a.active::before {
        width: 100%;
    }

    /* Clean Mobile Dropdown Styles */
    .nav-menu .dropdown {
        width: 100%;
    }

    .nav-menu .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .nav-menu .dropdown-arrow {
        font-size: 0.7rem;
        opacity: 0.6;
        margin-left: auto;
    }

    .nav-menu .dropdown-menu {
        position: static;
        background: rgba(0, 0, 0, 0.03);
        backdrop-filter: none;
        border-radius: 0;
        box-shadow: none;
        border: none;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        margin: 0;
        transform: none;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        padding: 0;
    }

    .nav-menu .dropdown.active .dropdown-menu {
        opacity: 1;
        max-height: 200px;
        padding: 0.5rem 0;
    }

    .nav-menu .dropdown-menu a {
        color: var(--forest-green) !important;
        font-family: var(--font-secondary) !important;
        font-size: 0.9rem !important;
        font-weight: 500 !important;
        padding: 0.75rem 2rem !important;
        margin: 0 !important;
        border: none !important;
        background: transparent !important;
        width: 100% !important;
        letter-spacing: 0.1px !important;
        position: relative !important;
        text-shadow: none !important;
    }

    .nav-menu .dropdown-menu a::before {
        content: '•';
        position: absolute;
        left: 1.5rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--warm-gold);
        font-size: 0.8rem;
        opacity: 0.6;
    }

    .nav-menu .dropdown-menu a:hover {
        color: #FFFFFF !important;
        background: #4A5F3A !important;
        transform: translateX(0) !important;
        font-weight: 600 !important;
    }

    .nav-menu .dropdown-menu li {
        opacity: 1;
        transform: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .nav-menu .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .hamburger {
        display: flex;
    }

    @keyframes slideInLeft {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Typography */
    h1 {
        font-size: 2.5rem;
    }

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

    /* Grid adjustments */
    .col-half,
    .col-third,
    .col-quarter {
        flex: 0 0 100%;
        margin-bottom: var(--spacing-lg);
    }

    /* Spacing adjustments */
    .container {
        padding: 0 var(--spacing-sm);
    }

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

    /* Hero adjustments */
    .hero {
        height: 70vh;
        background-attachment: scroll;
    }
}

@media (max-width: 480px) {
    /* Further mobile optimizations */
    h1 {
        font-size: 2rem;
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: 0.9rem;
    }

    .card {
        padding: var(--spacing-md);
    }
}

/* Performance Optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hamburger,
    .btn {
        display: none;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero {
        height: auto;
        background: none;
        color: #000;
        padding: var(--spacing-lg) 0;
    }
}

/* Navigation Enhancements */
.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 123, 90, 0.1), rgba(156, 175, 136, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.navbar.scrolled::before {
    opacity: 1;
}

/* Smooth page load animation */
.navbar {
    transform: translateY(0);
}

.navbar.page-load {
    transform: translateY(-100%);
    animation: slideDown 0.8s ease forwards;
}

@keyframes slideDown {
    to {
        transform: translateY(0);
    }
}

/* Tablet adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-container {
        padding: 0.75rem 1.5rem;
    }
    
    .nav-item a {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .dropdown-menu {
        min-width: 200px;
        font-size: 0.85rem;
    }
    
    .dropdown-menu a {
        padding: 0.65rem 1.25rem !important;
    }
    
    .dropdown-arrow {
        font-size: 0.6rem;
    }
}

/* Enhanced hover effects for desktop */
@media (min-width: 769px) {
    .nav-item a {
        overflow: hidden;
    }
    
    .nav-item a::after {
        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.6s ease;
    }
    
    .nav-item a:hover::after {
        left: 100%;
    }
}

/* Enhanced Dropdown Visual Effects */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 255, 255, 0.9);
    z-index: 1001;
}

.dropdown-menu::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(212, 175, 55, 0.2);
    z-index: 1002;
}

/* Elegant separator between dropdown items */
.dropdown-menu li:not(:last-child) {
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

/* Sophisticated hover gradient */
.dropdown-menu a:hover {
    background: linear-gradient(135deg, 
        rgba(212, 175, 55, 0.12) 0%, 
        rgba(156, 175, 136, 0.08) 100%) !important;
}

/* Focus styles for accessibility */
.nav-item a:focus {
    outline: 2px solid var(--warm-gold);
    outline-offset: 2px;
}

.dropdown-toggle:focus {
    outline: 2px solid var(--warm-gold);
    outline-offset: 2px;
    border-radius: 25px;
}

.dropdown-menu a:focus {
    outline: 2px solid var(--warm-gold);
    outline-offset: -2px;
    background: rgba(212, 175, 55, 0.15) !important;
}

.hamburger:focus {
    outline: 2px solid var(--warm-gold);
    outline-offset: 4px;
}

/* Advanced Animation Improvements */
.dropdown-menu {
    animation: fadeInScale 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    transform-origin: top center;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(-10px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

/* Enhanced scroll behavior for dropdown positioning */
.dropdown.sticky-top {
    position: sticky;
    top: 0;
    z-index: 1001;
}

/* Simple dropdown arrow */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(255, 255, 255, 0.98);
}

/* Performance optimization */
.dropdown-menu,
.nav-item a,
.dropdown-arrow,
.mobile-overlay,
.hamburger {
    will-change: transform, opacity;
}

/* Luxury typography enhancements */
.nav-item a,
.dropdown-menu a {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle page load animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth transitions for screen readers */
@media (prefers-reduced-motion: reduce) 
    .dropdown-menu,
    .dropdown-arrow,
    .dropdown-menu a,
    .dropdown-menu li {
        transition: none;
        animation: none;
    }
    .dropdown-menu {
        transform: translateX(-50%) translateY(0) scale(1);
    }
