:root {
    /* Luxury Dark & Gold Palette */
    --primary-green: #2B463C;
    /* Darker, richer forest green */
    --dark-green: #1A2F28;
    /* Deep green for backgrounds */
    --accent-gold: #C5A059;
    /* Metallic gold */
    --gold-hover: #D6B776;

    --text-dark: #1C1C1C;
    --text-light: #F4F4F4;
    --text-grey: #666666;

    --bg-white: #FFFFFF;
    --bg-light: #FBF9F4;
    /* Warm, sunny cream/beige */
    --bg-dark-section: #222222;

    --font-heading: 'Playfair Display', serif;
    --font-main: 'Inter', sans-serif;

    --spacing-container: 1200px;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-gold) var(--dark-green);
}

/* Custom Scrollbar (Webkit) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-green);
}

::-webkit-scrollbar-thumb {
    background-color: var(--accent-gold);
    border-radius: 6px;
    border: 2px solid var(--dark-green);
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

/* Typography Upgrades */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-green);
    letter-spacing: -0.5px;
}

.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 30px;
}

/* Luxury Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-green);
    color: var(--accent-gold);
    font-weight: 600;
    border-radius: 2px;
    /* Sharper corners for luxury feel */
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border: 2px solid var(--primary-green);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(43, 70, 60, 0.3);
}

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

.btn-secondary:hover {
    background-color: var(--accent-gold);
    color: white;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

/* Header styles - DARK GREEN THEME */
/* Mobile Language Toggle Styles Removed */

.main-header {
    background: transparent;
    /* Transparent initially */
    position: fixed;
    /* Fixed to overlay hero */
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    /* Slightly taller initially */
    transition: all 0.4s ease;
    /* Smooth transition */
}

.main-header.scrolled {
    background: var(--dark-green);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    padding: 10px 0;
    /* Shrink slightly on scroll */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 160px;
    /* Increased from 90px for larger logo */
    transition: height 0.4s ease;
    max-width: 1400px;
    /* Match hero-bottom-container width */
    padding: 0 40px;
    /* Match hero-bottom-container padding */
}

.main-header.scrolled .header-container {
    height: 90px;
    /* Shrink to previous normal size on scroll */
}

/* Header Logo Logic: Hidden initially, shown on scroll */
.logo img {
    height: 140px;
    width: auto;
    transition: all 0.4s ease;
    opacity: 0;
    /* Hidden initially as per request */
    visibility: hidden;
    transform: translateY(-20px);
}

.main-header.scrolled .logo img {
    height: 60px;
    /* Smaller sticky logo */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.logo {
    display: flex;
    align-items: center;
}

/* Big Hero Logo */
/* Big Hero Logo Animation */
@keyframes fadeInLogo {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLogo {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation Typography - WHITE TEXT */
.desktop-nav {
    margin-left: auto;
}

.desktop-nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    /* Reduced from 35px to prevent wrapping on smaller desktops */
    align-items: center;
}

.desktop-nav a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.85);
    /* Slightly muted white for elegance */
    position: relative;
    padding-bottom: 5px;
    white-space: nowrap;
    /* Force single line */
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

.desktop-nav a.active,
.desktop-nav a:hover {
    color: var(--accent-gold);
}

/* Header Contact Button Override */
.desktop-nav .btn {
    background-color: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 10px 24px;
    /* Slightly smaller for header */
}

.desktop-nav .btn:hover {
    background-color: var(--accent-gold);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(197, 160, 89, 0.3);
}

.desktop-nav .btn::after {
    display: none;
    /* Remove the underline effect from standard links */
}

/* Language Switcher */
.lang-switch {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 20px;
    margin-left: 10px;
    color: white;
    font-size: 0.8rem;
}

.lang-switch a {
    color: rgba(255, 255, 255, 0.5);
    padding: 0 5px;
    letter-spacing: 1px;
}

.lang-switch a.active {
    color: var(--accent-gold);
    font-weight: bold;
}

/* Hero Section with Ken Burns */
.hero {
    overflow: hidden;
    position: relative;
    height: 85vh;
    /* Taller hero */
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    /* Align content to the bottom */
    padding-bottom: 60px;
    /* Match the bottom spacing of the logo */
    justify-content: flex-end;
    /* Align content to the right */
    color: white;
}

/* Ken Burns Slides */
.kb-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1);
    /* Fade in fast (1s), Fade out slow (2s). Scale moves slowly over 20s. */
    transition: opacity 2s ease-in-out, transform 20s linear;
    z-index: 0;
}

.kb-slide.active {
    opacity: 1;
    transform: scale(1.15);
    /* Slow zoom to 1.15 while active */
}

/* Old Keyframes removed to prevent snapping */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Gradient: Completely clear on left half, Dark on right */
    background: linear-gradient(to right, rgba(26, 47, 40, 0) 0%, rgba(26, 47, 40, 0) 50%, rgba(26, 47, 40, 0.95) 100%);
    z-index: 1;
}

/* Flex Container for Bottom Row */
.hero-bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* Ensures logo and buttons bottom-align */
    width: 100%;
    /* Removed z-index to prevents stacking context isolation which was breaking mix-blend-mode */
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 60px;
}

.hero-big-logo {
    width: 350px;
    /* Restored filter and lighten mode */
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5)) contrast(1.2);
    mix-blend-mode: lighten;
    opacity: 0;
    animation: fadeInLogo 2s ease-out forwards;
    animation-delay: 0.5s;
    display: block;
    margin-bottom: 0;
}

.hero-content {
    max-width: 600px;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* Promote text above the overlay (z-index 1), while keeping logo (z-index auto) below to blend */
    position: relative;
    z-index: 3;
}

.hero-text-slider {
    position: relative;
    height: 240px;
    /* Increased to allow 3 lines of text (Spanish) */
    margin-bottom: 25px;
    width: 100%;
}

.text-slide {
    font-size: 4rem;
    line-height: 1.1;
    /* Tighter line height for multi-line */
    color: white;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: absolute;
    top: 0;
    right: 0;
    /* Right align as per previous request */
    width: 100%;
    opacity: 0;
    /* Simple fade only, to avoid ghosting shift */
    transition: opacity 1s ease-in-out;
}

.text-slide.active {
    opacity: 1;
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    /* Narrower for readability */
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    /* Ensure buttons are vertically centered with each other */
    justify-content: flex-end;
    /* Align to right since hero content is right-aligned */
}



/* Sections */
.section-padding {
    padding: 100px 0;
}

.section-padding-large {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.8rem;
    color: var(--primary-green);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-gold);
    margin: 20px auto 0;
}

.bg-light {
    background-color: var(--bg-light);
}

/* Intro Grid "Meet Ricky" */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-text h2 {
    font-size: 3rem;
    color: var(--dark-green);
    margin-bottom: 15px;
}

.intro-text .lead-text {
    font-size: 1.3rem;
    color: var(--accent-gold);
    font-family: var(--font-main);
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
    display: block;
}

.divider {
    width: 80px;
    height: 2px;
    background-color: var(--primary-green);
    margin-bottom: 30px;
}

.intro-image {
    position: relative;
}

.intro-image img {
    border-radius: 4px;
    box-shadow: 30px 30px 0 var(--dark-green);
    /* Luxury shadow offset */
    filter: sepia(10%);
    /* Slight vintage tone */
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.service-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Softer, larger shadow */
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 35px;
}

.service-content h3 {
    color: var(--dark-green);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-list {
    list-style: none;
    padding-left: 0;
}

.service-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    color: var(--text-grey);
}

.service-list li::before {
    content: "✦";
    /* Elegant bullet */
    color: var(--accent-gold);
    position: absolute;
    left: 0;
    font-size: 0.8rem;
    top: 2px;
}

/* Contact Section */
.contact-methods {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.contact-box {
    background: white;
    padding: 40px;
    border-radius: 4px;
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.contact-box .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-box:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
}

/* Footer */
.main-footer {
    background: var(--dark-green);
    /* Matching header */
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
    border-top: 4px solid var(--accent-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Force 3 columns */
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-col h4 {
    color: var(--accent-gold);
    font-family: var(--font-main);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a:hover {
    color: var(--accent-gold);
}

.footer-col p {
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
    font-size: 0.95rem;
}

/* Global Luxury Image Frame */
.luxury-frame {
    border-radius: 4px;
    box-shadow: 30px 30px 0 var(--dark-green);
    filter: sepia(10%);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 100%;
}

.luxury-frame:hover {
    transform: translate(-5px, -5px);
    box-shadow: 35px 35px 0 var(--dark-green);
}

/* Page Header (About / Activity / etc) */
.page-header {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    /* No negative margin needed as it sits at top */
    padding-top: 100px;
    /* spacing for content */
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 47, 40, 0.6);
    /* Slightly more transparent than Home */
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    /* Clear the 160px header */
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.lead-white {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent-gold);
    color: white;
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 20;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

/* Response for About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse>* {
    direction: ltr;
}

.highlight-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--primary-green);
    border-left: 3px solid var(--accent-gold);
    padding-left: 20px;
    margin-top: 20px;
}

/* Mobile Bottom Nav (Hidden on Desktop) */
.mobile-bottom-nav {
    display: none;
}

@media (max-width: 900px) {
    .header-container {
        height: 90px;
    }

    /* Smaller header on mobile */
    .logo img {
        height: 60px;
    }

    .page-header .container {
        padding-top: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-grid.reverse {
        direction: ltr;
    }

    .luxury-frame {
        margin-bottom: 30px;
        box-shadow: 15px 15px 0 var(--dark-green);
    }

    .experience-badge {
        right: 0;
        bottom: 10px;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        /* Stack on mobile */
        /* Stack on mobile */
        text-align: center;
    }


    .header-container {
        height: 70px;
    }

    .logo img {
        height: 50px;
    }

    .hero-overlay {
        background: linear-gradient(to right, rgba(26, 47, 40, 0) 10%, rgba(26, 47, 40, 0.75) 100%);
        /* Smooth L-to-R gradient, no hard stop, reduced opacity */
    }

    .hero h1,
    .text-slide {
        font-size: 2.8rem;
        /* Revert to larger size */
    }

    .kb-slide {
        background-position: 25% center !important;
        /* Show more of the left side (tree/sky) */
    }

    .hero-bottom-container {
        flex-direction: column-reverse;
        /* Keep column reverse to have content at bottom */
        align-items: flex-end;
        /* Right align everything */
        text-align: right;
        padding-bottom: 30px;
        /* Much closer to bottom nav */
        padding-left: 15px;
        /* More width for text */
        padding-right: 15px;
        position: static !important;
        /* Allow logo to position relative to .hero */
    }

    .hero-content {
        align-items: flex-end;
        /* Right align flex items (buttons, text) */
        text-align: right;
        margin-bottom: 20px;
        margin-right: 0;
        width: 100%;
    }

    .hero p {
        font-size: 1.1rem;
        /* Reduced from 1.4rem */
        text-align: right;
        margin-bottom: 20px;
    }

    .hero-buttons {
        margin-top: 40px;
        /* Lower the buttons */
        justify-content: flex-end;
        /* Right align buttons */
    }

    .text-slide {
        right: 0;
        left: 0;
        width: 100%;
        position: absolute;
        /* Overlap slides to prevent jumping */
        bottom: 0;
        /* Align to bottom of slider container */
        text-align: right;
        /* Ensure text itself is right aligned */
    }

    .hero-text-slider {
        height: 180px;
        /* Fixed height for 2 lines of text */
        margin-bottom: 15px;
        position: relative;
    }

    .hero-big-logo {
        display: block;
        /* Show logo on mobile */
        position: absolute;
        /* Take out of flow to position at top */
        top: 40px;
        /* Position from top of HERO */
        right: 20px;
        /* Position from right */
        left: auto;
        /* Reset left */
        transform: none;
        /* Reset transform */
        width: 150px;
        margin-bottom: 0;
        mix-blend-mode: normal;
        /* No blending needed for transparent PNG */
        filter: none;
        /* Remove contrast/shadow edits */
        z-index: 10;
        /* Ensure it sits on top of the overlay */
    }

    /* On mobile, we might need the header logo visible if sticky */
    .logo img {
        opacity: 1;
        visibility: visible;
        height: 50px;
        transform: translateY(0);
    }

    .desktop-nav {
        display: none;
    }

    .desktop-nav.active {
        display: block;
        background: var(--dark-green);
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        padding: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
    }

    .desktop-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .desktop-nav a {
        font-size: 1.1rem;
    }

    .mobile-menu-toggle span {
        background-color: white;
    }

    .intro-grid {
        gap: 40px;
    }

    .intro-image img {
        box-shadow: 15px 15px 0 var(--accent-gold);
    }

    .main-header {
        display: none !important;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: none !important;
        /* Force hide hamburger */
    }

    /* Fixed Bottom Nav */
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: var(--primary-green);
        border-top: 3px solid var(--accent-gold);
        /* Luxury Gold accent */
        padding: 10px 0;
        padding-bottom: env(safe-area-inset-bottom, 15px);
        /* iPhone Home Bar */
        transition: transform 0.3s ease-in-out;
        /* Smooth slide */
        z-index: 1000;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
    }

    .mobile-bottom-nav.nav-hidden {
        transform: translateY(100%);
        /* Slide down out of view */
    }

    .mobile-bottom-nav .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.6);
        font-family: 'Inter', sans-serif;
        font-size: 0.7rem;
        gap: 4px;
        transition: color 0.3s ease;
        padding: 5px;
        width: 20%;
        text-align: center;
    }

    .mobile-bottom-nav .nav-item svg {
        width: 24px;
        height: 24px;
        fill: currentColor;
    }

    .mobile-bottom-nav .nav-item.active,
    .mobile-bottom-nav .nav-item:hover {
        color: var(--accent-gold);
    }

    /* Make space for the bottom bar */
    body {
        padding-bottom: 80px;
    }

    .footer-social {
        justify-content: center !important;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 90px;
        /* Sit above the 80px bottom nav/padding */
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }
}

/* Luxury Contact Section */
.luxury-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.luxury-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    color: var(--dark-green);
    transition: all 0.3s ease;
    /* Luxury Border: Thin Gold Border */
    border: 1px solid rgba(197, 160, 89, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.luxury-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.2);
    border-color: var(--accent-gold);
}

.luxury-card .icon-wrapper {
    width: 80px;
    height: 80px;
    /* Gold-tinted background */
    background: radial-gradient(circle at 30% 30%, #fffbf0, #faf3dd);
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: var(--accent-gold);
    transition: all 0.3s ease;
}

.luxury-card:hover .icon-wrapper {
    background: var(--accent-gold);
    color: white;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
}

.luxury-card h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-green);
}

.luxury-card .contact-note {
    font-style: italic;
}

/* Gear Badge Overlay */
.gear-badge-overlay {
    position: absolute;
    bottom: -50px;
    right: -40px;
    width: 140px;
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.gear-badge-overlay:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gear-badge-overlay {
        width: 100px;
        bottom: -30px;
        right: -20px;
    }
}

/* Activity Grid */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .activity-grid {
        grid-template-columns: 1fr;
    }
}

.activity-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.activity-img {
    height: 300px;
    overflow: hidden;
    position: relative;
    border-bottom: 3px solid var(--accent-gold);
}

.activity-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.activity-card:hover .activity-img img {
    transform: scale(1.05);
}

.activity-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.activity-content .date {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.activity-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--dark-green);
    line-height: 1.2;
}

.activity-content p {
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Trusted Partners Box in Footer */
.trusted-partners-box {
    background: white;
    padding: 20px 25px;
    border-radius: 8px;
    margin-top: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: block;
    width: 100%;
    box-sizing: border-box;
}

.trusted-partners-box p {
    color: var(--dark-green) !important;
    font-weight: 700;
    margin-bottom: 20px !important;
    opacity: 1 !important;
    font-size: 0.75rem !important;
}

.trusted-partners-box .logos {
    display: flex;
    gap: 15px;
    /* Reduced gap */
    align-items: center;
    flex-wrap: nowrap;
    /* Force side-by-side */
    justify-content: flex-start;
}

.trusted-partners-box img {
    opacity: 1 !important;
    transition: transform 0.3s ease;
    height: 40px;
    /* Reduced height for better fit */
    width: auto;
    flex-shrink: 0;
    /* Prevent squishing */
}

.trusted-partners-box img:hover {
    transform: scale(1.05);
}