:root {
    --primary-green: #2D6D62;
    --secondary-green: #2EA891;
    --white: #ffffff;
    --black: #333333;
    --gray: #f5f5f5;
}

/* Reset and base styles */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Fallback for CSS variables */
:root {
    --primary-green: #2D6D62;
    --secondary-green: #2EA891;
    --white: #ffffff;
    --black: #333333;
    --gray: #f5f5f5;
}

/* Fallback for browsers that don't support CSS variables */
html {
    --primary-green: #2D6D62;
    --secondary-green: #2EA891;
    --white: #ffffff;
    --black: #333333;
    --gray: #f5f5f5;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.8rem 5%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: white;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    height: 70px; /* Match corporate navbar height */
}

/* Hamburger Menu */
.hamburger {
    display: none;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
    z-index: 1002;
    width: 32px;
    height: 32px;
}

.hamburger-box {
    display: inline-block;
    width: 24px;
    height: 18px;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -1px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 24px;
    height: 2px;
    background-color: var(--black);
    position: absolute;
    -webkit-transition: -webkit-transform 0.15s ease;
    transition: -webkit-transform 0.15s ease;
    -o-transition: transform 0.15s ease;
    transition: transform 0.15s ease;
    transition: transform 0.15s ease, -webkit-transform 0.15s ease;
}

.hamburger[aria-expanded='true'] .hamburger-inner,
.hamburger[aria-expanded='true'] .hamburger-inner::before,
.hamburger[aria-expanded='true'] .hamburger-inner::after {
    background-color: var(--white);
    z-index: 1003;
}

.hamburger-inner::before, .hamburger-inner::after {
    content: '';
    display: block;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

/* Hamburger Animation */
.hamburger[aria-expanded='true'] .hamburger-inner {
    transform: rotate(45deg);
}

.hamburger[aria-expanded='true'] .hamburger-inner::before {
    top: 0;
    opacity: 0;
}

.hamburger[aria-expanded='true'] .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1002;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--primary-green);
        visibility: hidden;
        opacity: 0;
        transform: translateY(-100%);
        transition: all 0.3s ease;
        z-index: 1001;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.2);
        z-index: -1;
    }

    .nav-menu[aria-hidden='false'] {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-menu-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
    }

    .nav-link {
        color: var(--white);
        font-size: clamp(1.5rem, 5vw, 2.5rem);
        text-decoration: none;
        padding: 1rem;
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        font-weight: 500;
        letter-spacing: 1px;
        position: relative;
        overflow: hidden;
        margin: 0;
    }
    
    .nav-link.book-now {
        background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
        color: white !important;
        border-radius: 50px;
        margin: 1.5rem auto 0;
        max-width: 200px;
        font-size: 1.2rem;
        padding: 0.8rem 1.5rem;
        transition: all 0.3s ease;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(46, 168, 145, 0.2);
        border: none;
        position: relative;
        overflow: hidden;
        height: auto;
        line-height: 1;
    }
    
    .nav-link.book-now:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(46, 168, 145, 0.3);
        background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 80%;
        height: 2px;
        background-color: var(--white);
        transition: transform 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        transform: translateX(-50%) scaleX(1);
    }
}

/* Desktop navigation styles */
@media (min-width: 769px) {
    .nav-menu {
        position: static;
        visibility: visible;
        opacity: 1;
        transform: none;
        background: none;
        height: auto;
        width: auto;
    }

    .nav-menu-inner {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
    
    /* Desktop Book Now Button */
    .nav-link.book-now {
        background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
        color: white !important;
        border-radius: 50px;
        padding: 0.5rem 1.2rem;
        margin-left: 0.5rem;
        font-size: 0.8rem;
        max-width: none;
        width: auto;
        min-width: 110px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(46, 168, 145, 0.2);
        border: none;
        position: relative;
        overflow: hidden;
        height: 36px;
        line-height: 1;
    }
    
    .nav-link.book-now:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(46, 168, 145, 0.3);
        background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    }

    .nav-link {
        margin-left: 2rem;
        text-decoration: none;
        color: var(--black);
        font-weight: 500;
        transition: color 0.3s ease;
        font-size: 0.95rem;
        width: auto;
        padding: 0.5rem 0;
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--primary-green);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease;
    }

    .nav-link:hover {
        color: var(--primary-green);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    .nav-link.active {
        color: var(--primary-green);
        font-weight: 600;
        position: relative;
    }
    
    .nav-link.active::after {
        transform: scaleX(1);
        transform-origin: left;
        opacity: 1;
    }
    
    /* Hide mobile book now button on desktop */
    .mobile-book-now {
        display: none;
    }
    
    /* Mobile Book Now Button */
    .nav-link.book-now {
        background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
        color: white !important;
        border-radius: 50px;
        margin: 1rem auto;
        max-width: 140px;
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
        transition: all 0.3s ease;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 4px 15px rgba(46, 168, 145, 0.2);
        border: none;
        position: relative;
        overflow: hidden;
        text-align: center;
    }
    
    .nav-link.book-now:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(46, 168, 145, 0.3);
        background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    }
    
    .nav-link.book-now::after {
        display: none;
    }

    .hamburger {
        display: none;
    }
}

.logo {
    font-size: 1.25rem;
    font-weight: 500;
    text-decoration: none;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links a {
    margin-left: 2rem;
    text-decoration: none;
    color: var(--black);
    font-weight: 400;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 0.25rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-green);
    transition: width 0.3s ease;
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5% 0;
    overflow: hidden;
    width: 100%;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-inner {
    width: 100%;
    max-width: 700px;
    color: var(--white);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-logo {
    width: 200px;
    height: auto;
    margin: 0 auto;
    display: block;
    max-width: 100%;
}

.hero h1 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 500;
}

.hero p {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.75rem;
        padding: 0;
        line-height: 1.3;
    }

    .hero p {
        font-size: 0.9rem;
        padding: 0;
        line-height: 1.5;
    }

    .hero-logo {
        width: 140px;
    }

    .hero-content {
        padding: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-logo {
        width: 120px;
    }
}

/* Buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

@keyframes gradient-shimmer {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    min-width: 160px;
    font-size: 0.9rem;
    background: var(--white);
    color: var(--secondary-green);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        var(--secondary-green) 0%,
        var(--primary-green) 100%
    );
    z-index: -1;
    opacity: 0;
    transform: translateX(100%);
}

.btn:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn:hover::before {
    animation: gradient-shimmer 0.5s ease-out forwards;
}

.primary, .secondary {
    color: var(--secondary-green);
}

/* Mission, Vision, Values Section */
.mvv-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, var(--gray) 0%, #fff 100%);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mvv-card {
    background: var(--white);
    padding: 2.5rem 2.5rem 4.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 450px;
    justify-content: space-between;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(46, 168, 145, 0.15);
}

.icon-container {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.mvv-card h2 {
    color: var(--primary-green);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.mvv-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.values-list {
    list-style: none;
    padding: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 0 auto;
}

.values-list li {
    position: relative;
    padding-left: 1.5rem;
    color: #666;
    text-align: left;
    font-size: 0.95rem;
}

.highlight {
    display: inline-block;
    margin-top: auto;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transform: translateY(2.3rem);
}

.values-list li::before {
    content: '•';
    color: var(--secondary-green);
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

.values-list strong {
    color: var(--primary-green);
    margin-right: 0.5rem;
}

.highlight {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: var(--white);
    border-radius: 20px;
    font-weight: 500;
    margin-top: auto;
}

@media (max-width: 768px) {
    .mvv-section {
        padding: 4rem 5%;
    }

    .mvv-card {
        padding: 2rem;
    }

    .mvv-card h2 {
        font-size: 1.5rem;
    }
}

/* Footer */
/* Base footer styles */
footer {
    background: var(--primary-green);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section {
    text-align: left;
}

.footer-section:nth-child(1) {
    text-align: left;
}

.footer-section:nth-child(2) {
    text-align: center;
}

.footer-section:nth-child(3) {
    text-align: right;
}

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 0.8;
}

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

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 0;
    transition: all 0.3s ease;
    background-size: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    box-shadow: 0 2px 4px rgba(45, 109, 98, 0.08);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(45, 109, 98, 0.12);
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
}

.social-link.instagram {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

.social-link.facebook {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

.social-link.youtube {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}


/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
    align-items: flex-end;
}

.floating-button {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    color: transparent;
    overflow: hidden;
    text-indent: -9999px;
}

/* Call Button */
.call-button {
    background-color: #25D366;
    background-image: url("https://res.cloudinary.com/dudshiy3b/image/upload/v1756417447/call-icon-ecoblue_st8lxy.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 28px;
}

/* WhatsApp Button */
.whatsapp-button {
    background-color: #25D366;
    background-image: url("https://res.cloudinary.com/dudshiy3b/image/upload/v1756417456/whatsapp-icon-ecoblue-1_jnnofm.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 32px;
    animation: pulse 2s infinite;
}

/* Hover effects */
.floating-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.floating-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-button {
        width: 56px;
        height: 56px;
    }
    
    .floating-button-label {
        display: none;
    }
}

/* Mobile Book Now Button */
.mobile-book-now {
    display: none;
    margin-left: auto;
    margin-right: 15px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-book-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .mobile-book-now {
        display: inline-block;
    }
    
    .hamburger {
        margin-left: 0;
    }
}

/* Adjust navbar for mobile book now button */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.social-link.tiktok {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M19.59 6.69a4.83 4.83 0 0 1-3.77-4.25V2h-3.45v13.67a2.89 2.89 0 0 1-5.2 1.74 2.89 2.89 0 0 1 2.31-4.64 2.93 2.93 0 0 1 .88.13V9.4a6.84 6.84 0 0 0-1-.05A6.33 6.33 0 0 0 5 20.1a6.34 6.34 0 0 0 10.86-4.43v-7a8.16 8.16 0 0 0 4.77 1.52v-3.4a4.85 4.85 0 0 1-1-.1z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

.social-link.whatsapp {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}

.footer-bottom {
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Nav Buttons Container */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

/* Mobile Book Now Button */
.mobile-book-now {
    display: none;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(45, 109, 98, 0.2);
    position: relative;
    z-index: 1001;
}

.mobile-book-now:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 109, 98, 0.3);
}

/* Desktop Book Now Button */
.desktop-book-now {
    display: inline-flex;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 5%;
        height: 60px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(255, 255, 255, 0.98) !important;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        z-index: 1000;
    }

    .mobile-book-now {
        display: inline-flex !important;
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        height: 36px;
        align-items: center;
        background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
        color: white !important;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        white-space: nowrap;
        box-shadow: 0 2px 8px rgba(45, 109, 98, 0.2);
        position: relative;
        z-index: 1001;
    }
    
    .desktop-book-now {
        display: none !important;
    }
    
    .nav-buttons {
        gap: 10px;
        display: flex;
        align-items: center;
        position: relative;
        z-index: 1001;
    }
    
    .hamburger {
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-links {
        display: none;
    }

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

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        margin-right: 0;
        text-align: center;
    }
}

/* Desktop footer styles */
@media (min-width: 769px) {
    .footer-content {
        padding: 3rem 1rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-section {
        padding: 0;
    }

    .footer-section h3 {
        font-size: 1rem;
        padding: 0 0 1rem;
        cursor: default;
        margin: 0;
    }

    .footer-section h3::after {
        display: none;
    }

    .footer-section .content {
        max-height: none;
        opacity: 1;
        padding: 0;
        background: none;
        overflow: visible;
    }

    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .legal-links a {
        color: var(--white);
        text-decoration: none;
        transition: opacity 0.2s;
        font-size: 0.9rem;
    }

    .legal-links a:hover {
        opacity: 0.8;
    }

    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-link {
        width: 2.5rem;
        height: 2.5rem;
        border-radius: 50%;
        display: inline-block;
        background-size: 20px;
        opacity: 0.9;
        transition: opacity 0.2s ease;
    }

    .social-link:hover {
        opacity: 1;
    }

    .footer-section:nth-child(2) .social-links {
        justify-content: center;
    }
}

/* Mobile footer styles */
@media (max-width: 768px) {
    footer {
        padding: 0;
        background: rgba(45, 109, 98, 0.97);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 0;
        margin: 0;
        padding-bottom: env(safe-area-inset-bottom, 0);
    }
    
    .footer-section {
        width: 100%;
        text-align: left;
        margin: 0;
        padding: 0;
        background: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        overflow: hidden;
    }

    .footer-section h3 {
        margin: 0;
        padding: 0.9rem 1.25rem;
        font-size: 0.9rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: all 0.2s ease;
        color: rgba(255, 255, 255, 0.9);
        background: transparent;
    }

    .footer-section .content {
        height: 0;
        padding: 0 1.25rem;
        font-size: 0.875rem;
        line-height: 1.6;
        opacity: 0;
        transition: all 0.3s ease;
        color: rgba(255, 255, 255, 0.8);
    }

    .footer-section.active .content {
        height: auto;
        padding: 0.5rem 1.25rem 1.25rem;
        opacity: 1;
    }

    .footer-section h3::after {
        content: '+';
        font-size: 1.2rem;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.6);
        transition: all 0.3s ease;
    }

    .footer-section.active h3 {
        color: var(--white);
    }

    .footer-section.active h3::after {
        transform: rotate(45deg);
        color: var(--white);
    }

    .footer-section:last-child {
        border-bottom: none;
    }

    /* Social links in footer */
    .social-links {
        display: flex;
        gap: 1rem;
        padding: 0.5rem 0;
    }



    .social-link:hover {
        opacity: 1;
    }

    /* Contact info styling */
    .footer-section .content p {
        margin: 0.5rem 0;
    }

    .footer-section .content a {
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-section .content a:hover {
        color: var(--white);
    }
}
