:root {
    --green: #2ecc71;
    --pink: #ff80ab;
    --black: #1a1a1a;
    --white: #ffffff;
    --gray: #f9f9f9;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background: var(--white); color: var(--black); overflow-x: hidden;}

/* Global Nav */
nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; position: sticky; top: 0; background: white; z-index: 100; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.logo { font-size: 1.5rem; font-weight: 800; letter-spacing: -1px; }
.logo span { color: var(--green); }
.nav-links { list-style: none; display: flex; align-items: center; }
.nav-links li { margin-left: 25px; }
.nav-links a { text-decoration: none; color: var(--black); font-weight: 600; font-size: 0.9rem; }
.btn-nav { background: var(--pink); color: white !important; padding: 10px 20px; border-radius: 50px; }

/* Hero */
.hero { height: 80vh; background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)), url('https://images.unsplash.com/photo-1516549655169-df83a0774514?auto=format&fit=crop&w=1200'); background-size: cover; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero h1 { font-size: 4rem; margin-bottom: 10px; }
.text-green { color: var(--green); }

/* Buttons */
.btn-main { background: var(--black); color: white; padding: 15px 40px; text-decoration: none; border-radius: 5px; font-weight: 600; display: inline-block; transition: 0.3s; border: none; cursor: pointer; }
.btn-main:hover { background: var(--green); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(46, 204, 113, 0.3); }

/* Service Cards */
.services { padding: 80px 10%; text-align: center; }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 50px; }
.service-card { border-radius: 15px; overflow: hidden; background: var(--gray); transition: 0.3s; }
.service-card:hover { transform: translateY(-10px); }
.service-card img { width: 100%; height: 200px; object-fit: cover; }
.card-text { padding: 25px; }

/* Testimonials */
.testimonials { background: var(--black); color: white; padding: 80px 10%; text-align: center; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-top: 40px; }
.t-card img { max-width: 250px; height: 200px; border-radius: 10px; border: 3px solid var(--pink); margin-bottom: 15px; }
.t-card p { font-style: italic; margin-bottom: 10px; }

/* Posts Grid */
.posts-page { padding: 100px 10%; }
.post-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 40px; }
.post-card-full { border: 1px solid #eee; border-radius: 10px; overflow: hidden; }
.post-card-full img { width: 100%; height: 250px; object-fit: cover; }
.post-content { padding: 20px; }
.read-more { color: var(--pink); font-weight: bold; text-decoration: none; display: block; margin-top: 15px; }

/* Contact & Forms */
.contact-buttons { display: flex; justify-content: center; gap: 20px; margin-top: 30px; flex-wrap: wrap; }
.contact-btn { padding: 15px 30px; color: white; text-decoration: none; border-radius: 5px; display: flex; align-items: center; gap: 10px; }
.call { background: var(--black); }
.message { background: var(--pink); }
.whatsapp { background: #25D366; }

.booking-page { padding: 100px 10%; }
.booking-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
input, select { width: 100%; padding: 15px; margin-bottom: 15px; border: 1px solid #ddd; }

/* Hamburger Menu Styles */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: var(--black);
    transition: all 0.3s ease-in-out;
}

/* About Section Styles */
.about {
    padding: 100px 10%;
    background-color: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0px var(--gray);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--pink);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 128, 171, 0.4);
}

.experience-badge .num {
    display: block;
    font-size: 2rem;
    font-weight: 800;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content .subtitle {
    color: var(--pink);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.about-content h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-content p {
    color: #666;
    margin-bottom: 30px;
}

.about-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
}

.about-features i {
    color: var(--green);
}

.btn-secondary {
    padding: 12px 30px;
    border: 2px solid var(--black);
    text-decoration: none;
    color: var(--black);
    font-weight: 700;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: var(--black);
    color: white;
}

/* Responsive About */
@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .experience-badge {
        right: 10px;
        bottom: 10px;
        padding: 20px;
    }
    .about-content h2 {
        font-size: 2rem;
    }
}

/* Mobile Responsive Logic */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: flex; /* keep this so .active works */
        position: absolute;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.5s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        padding: 40px 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 20px 0;
    }

    /* Animate Hamburger to X */
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
}

/* Interactive Hover Effects for Post/Service Cards */
.service-card, .post-card-full {
    overflow: hidden;
    position: relative;
}

.service-card img, .post-card-full img {
    transition: transform 0.5s ease;
}

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

/* Specific styling for 'What people are saying' */
.t-card {
    background: #111;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #333;
    transition: 0.3s;
}

.t-card:hover {
    border-color: var(--pink);
    transform: translateY(-10px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .booking-wrapper { grid-template-columns: 1fr; }
    /* .nav-links { display: none; } */
    .experience-badge {
        max-width: 150px;
        max-height: 80px;
    }
    .experience-badge .num{
        font-size: 0.9rem !important;
    }
    .experience-badge .text{
        font-size: 0.6rem !important;
    }
}