/* Design Tokens */
:root {
    --primary: #4ECDC4;
    /* Teal from logo */
    --secondary: #6C5CE7;
    /* Purple from logo */
    --accent: #E17055;
    --background: #FFFFFF;
    --surface: #F9F9F9;
    --text-main: #2D3436;
    --text-muted: #636E72;
    --glass: rgba(255, 255, 255, 0.8);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-strong: 0 20px 40px rgba(108, 92, 231, 0.1);
    --radius: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.glass-morphism {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Components */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: var(--shadow-strong);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(108, 92, 231, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    /* Slightly reduced padding */
    transition: var(--transition);
    background: transparent;
}

nav.scrolled {
    padding: 12px 0;
    background: var(--glass);
    box-shadow: var(--shadow-soft);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 90px;
    /* Increased height for better prominence */
    width: 300px;
    /* Increased width for horizontal effect */
    flex-shrink: 0;
}

.logo {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: left center;
    filter: contrast(1.3) brightness(1.1) drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
    transition: var(--transition);
}

.logo:hover {
    filter: contrast(1.4) brightness(1.2) drop-shadow(0 6px 14px rgba(0, 0, 0, 0.25));
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    gap: 25px;
    /* Reduced from 40px to give more breathing room */
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, rgba(78, 205, 196, 0.1), transparent),
        radial-gradient(circle at bottom left, rgba(108, 92, 231, 0.1), transparent);
    padding-top: 120px;
    /* Increased to push content below the fixed navbar */
    padding-bottom: 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-main), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.hero-image img {
    width: 100%;
    display: block;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid #F0F0F0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 24px;
    display: block;
}

.service-card h3 {
    margin-bottom: 16px;
}

/* Booking Section */
.booking-section {
    background: var(--surface);
}

/* WhatsApp CTA Section */
.whatsapp-cta-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #f0fff4 100%);
    padding: 80px 40px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(78, 205, 196, 0.15);
    border: 1px solid rgba(78, 205, 196, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.whatsapp-cta-card::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.whatsapp-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e6fffa;
    color: #2c7a7b;
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.whatsapp-cta-card h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--text-main), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.whatsapp-text {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin: 0 auto 40px;
    max-width: 600px;
    line-height: 1.8;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 20px 45px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1.25rem;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-whatsapp:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.4);
    background: #20BA56;
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        padding-top: 140px;
        /* Space for the larger navbar on mobile */
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        /* More appropriate for mobile */
    }

    .hero-text p {
        margin: 0 auto 30px;
        font-size: 1.1rem;
    }

    .nav-links {
        display: none;
        /* Hide standard links on mobile to save space */
    }

    .nav-logo {
        width: 180px;
        /* Resize logo container for mobile */
        height: 60px;
    }

    .nav-content {
        padding: 0 15px;
    }

    .section {
        padding: 60px 0;
    }

    .whatsapp-cta-card {
        padding: 60px 20px;
    }

    .whatsapp-cta-card h2 {
        font-size: 2.2rem;
    }

    .whatsapp-text {
        font-size: 1.1rem;
    }

    .btn-whatsapp {
        padding: 18px 30px;
        font-size: 1.1rem;
        width: 100%;
        /* Full width button on mobile for easier tapping */
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }

    .nav-logo {
        width: 150px;
        height: 50px;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
    }

    .hero-btns .btn-outline {
        margin-left: 0 !important;
    }
}