:root {
    --primary: #8e6bbf;
    --secondary: #f4a6a6;
    --accent: #7bc8a4;
    --bg: #fff7f7;
    --text: #3a3346;
    --white: #ffffff;
    --shadow: 0 12px 30px rgba(142, 107, 191, 0.14);
    --radius-lg: 18px;
    --radius-md: 14px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: var(--primary);
    text-decoration: none;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.section {
    padding: 4rem 0;
}

.section-alt {
    background: #fff0f0;
}

h1,
h2,
h3 {
    line-height: 1.25;
    margin: 0 0 0.8rem;
}

h1 {
    font-size: clamp(1.9rem, 4vw, 3rem);
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.eyebrow {
    color: var(--primary);
    font-weight: 600;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(255, 247, 247, 0.95);
    border-bottom: 1px solid #f2e6e6;
    backdrop-filter: blur(8px);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.9rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--text);
}

.brand-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(145deg, var(--primary), #a07ed1);
    color: #fff;
    font-weight: 700;
}

.brand small {
    display: block;
    color: #7a6f8a;
    font-size: 0.75rem;
}

.main-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.main-nav a {
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    font-weight: 500;
}

.main-nav a.active,
.main-nav a:hover {
    background: #f0e8fb;
}

.menu-toggle {
    display: none;
    border: 0;
    background: #f0e8fb;
    border-radius: 10px;
    padding: 0.45rem 0.7rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: center;
}

.hero-actions,
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.1rem;
}

.hero-illustration img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.trust-badges span {
    background: #fff;
    border: 1px solid #ecdede;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    font-size: 0.88rem;
}

.blob {
    min-height: 320px;
    border-radius: 40% 60% 55% 45% / 45% 35% 65% 55%;
    background: linear-gradient(145deg, #f7e8ff, #ffe8e8);
    box-shadow: var(--shadow);
    padding: 1.4rem;
    display: grid;
    place-content: center;
    gap: 0.7rem;
}

.blob span {
    background: #fff;
    border-radius: 999px;
    padding: 0.55rem 1rem;
    text-align: center;
    font-weight: 600;
}

.card-grid,
.feature-grid,
.testimonial-grid,
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
}

.pricing-grid {
    grid-template-columns: repeat(3, 1fr);
}

.card,
.feature,
.step {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.2rem;
    box-shadow: var(--shadow);
    border: 1px solid #f3e8e8;
}

.feature h3,
.feature p {
    margin: 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.step strong {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f0e8fb;
    color: var(--primary);
}

.pricing-highlight {
    border: 2px solid var(--primary);
    transform: translateY(-5px);
}

.tag {
    display: inline-block;
    background: var(--secondary);
    color: #6b2e2e;
    border-radius: 999px;
    font-size: 0.78rem;
    padding: 0.28rem 0.6rem;
    margin-bottom: 0.6rem;
}

.price {
    font-size: 1.55rem;
    color: var(--primary);
    font-weight: 700;
}

.cta {
    background: linear-gradient(145deg, #f8ecff, #ffeaea);
    text-align: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.75rem 1.15rem;
    border: 1px solid transparent;
    font-weight: 600;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: #fff;
}

.booking-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.3rem;
    align-items: start;
}

.booking-form {
    display: grid;
    gap: 0.7rem;
}

input,
select {
    width: 100%;
    border: 1px solid #e8dede;
    border-radius: var(--radius-md);
    padding: 0.78rem;
    font: inherit;
    background: #fff;
}

.alert {
    border-radius: 12px;
    padding: 0.8rem 1rem;
}

.alert.success {
    background: #e4f7ef;
    color: #1f6a4f;
}

.alert.error {
    background: #ffe8e8;
    color: #7b2d2d;
}

.booking-benefits {
    padding-left: 1.1rem;
}

.form-note {
    color: #7a6f8a;
    font-size: 0.92rem;
}

.narrow {
    width: min(780px, 92%);
}

.contact-card {
    max-width: 520px;
}

.site-footer {
    background: #2d2540;
    color: #f5f0fb;
    padding-top: 2.3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
}

.site-footer a {
    display: block;
    color: #fff;
    margin-bottom: 0.4rem;
}

.copyright {
    text-align: center;
    margin: 1.3rem 0 0;
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.floating-whatsapp {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    background: #25d366;
    color: #fff;
    border-radius: 999px;
    padding: 0.7rem 1rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    z-index: 90;
}

.sticky-book-btn {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 85;
    text-align: center;
    background: var(--primary);
    color: #fff;
    border-radius: 999px;
    padding: 0.82rem;
    box-shadow: var(--shadow);
    display: none;
}

.table-wrap {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 0.7rem;
    border-bottom: 1px solid #efe5e5;
    text-align: left;
    font-size: 0.92rem;
}

.fade-in {
    opacity: 0;
    transform: translateY(8px);
    animation: fadeIn 0.8s ease forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(14px);
    animation: slideUp 0.9s ease 0.15s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .hero-grid,
    .booking-wrap,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid,
    .pricing-grid,
    .steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: inline-block;
    }

    .main-nav {
        position: absolute;
        top: 72px;
        right: 4%;
        width: min(280px, 92vw);
        background: #fff;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow);
        padding: 0.7rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
    }

    .main-nav.open {
        display: flex;
    }

    .card-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .sticky-book-btn {
        display: block;
    }

    .floating-whatsapp {
        bottom: 4.7rem;
    }

    .section {
        padding: 3.2rem 0;
    }
}

