:root {
            --navy: #171d4b;
            --purple: #7656d8;
            --purple-dark: #5d3fc2;
            --pink: #ec5faf;
            --pink-soft: #ffd7ed;
            --blue: #78b8ff;
            --blue-soft: #dff0ff;
            --lilac: #eee8ff;
            --cream: #fffdfd;
            --white: #ffffff;
            --text: #2d315c;
            --muted: #737797;
            --line: rgba(78, 67, 145, 0.12);
            --shadow: 0 22px 65px rgba(86, 66, 149, 0.16);
            --shadow-soft: 0 14px 38px rgba(86, 66, 149, 0.10);
            --radius-xl: 34px;
            --radius-lg: 26px;
            --radius-md: 18px;
            --container: min(1680px, calc(100% - 40px));
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        html,
        body {
            max-width: 100%;
            overflow-x: hidden;
        }

        body {
            margin: 0;
            color: var(--text);
            background:
                radial-gradient(circle at 10% 9%, rgba(238, 95, 175, .10), transparent 22rem),
                radial-gradient(circle at 92% 15%, rgba(120, 184, 255, .14), transparent 26rem),
                linear-gradient(180deg, #fff 0%, #fbf9ff 48%, #fff 100%);
            font-family: "DM Sans", sans-serif;
            line-height: 1.6;
        }

        img {
            display: block;
            max-width: 100%;
        }
        .mainlogo{
            display: block;
            max-width: 134px;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        button,
        input,
        select,
        textarea {
            font: inherit;
        }

        .container {
            width: var(--container);
            margin-inline: auto;
        }

        .eyebrow {
            margin: 0 0 14px;
            color: var(--pink);
            font-size: .78rem;
            font-weight: 800;
            letter-spacing: .12em;
            text-transform: uppercase;
        }

        .section-title {
            max-width: 760px;
            margin: 0 auto 16px;
            color: var(--navy);
            font-family: "Playfair Display", serif;
            font-size: clamp(2.1rem, 4vw, 4rem);
            line-height: 1.08;
            text-align: center;
        }

        .section-copy {
            max-width: 680px;
            margin: 0 auto 48px;
            color: var(--muted);
            text-align: center;
        }

        .gradient-text {
            background: linear-gradient(90deg, var(--purple), var(--pink), var(--blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .btn {
            display: inline-flex;
            min-height: 52px;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 0 24px;
            border: 1px solid transparent;
            border-radius: 999px;
            font-weight: 800;
            transition: .25s ease;
            cursor: pointer;
        }

        .btn-primary {
            color: #fff;
            background: linear-gradient(135deg, var(--pink), #e871d2);
            box-shadow: 0 14px 28px rgba(236, 95, 175, .28);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 18px 36px rgba(236, 95, 175, .36);
        }

        .btn-secondary {
            color: var(--navy);
            background: rgba(255, 255, 255, .90);
            border-color: rgba(70, 62, 120, .10);
            box-shadow: 0 12px 24px rgba(74, 58, 128, .10);
        }

        .btn-secondary:hover {
            transform: translateY(-2px);
            background: #fff;
        }

        /* Navigation */
        .site-header {
            position: absolute;
            z-index: 20;
            top: 0;
            left: 0;
            width: 100%;
            padding: 24px 0;
        }

        .nav-wrap {
            position: relative;
            display: flex;
            min-width: 0;
            align-items: center;
            justify-content: space-between;
            gap: 28px;
        }

        .logo {
            display: inline-flex;
            min-width: 0;
            align-items: center;
            gap: 12px;
        }

        .logo-mark {
            position: relative;
            width: 54px;
            height: 54px;
            flex: 0 0 54px;
        }

        .logo-mark::before {
            content: "\f5ca";
            position: absolute;
            inset: 0;
            display: grid;
            place-items: center;
            color: var(--purple);
            font: 900 2.6rem/1 "Font Awesome 6 Free";
            transform: rotate(-9deg);
        }

        .logo-mark::after {
            content: "\f004";
            position: absolute;
            right: -3px;
            bottom: 2px;
            display: grid;
            width: 22px;
            height: 22px;
            place-items: center;
            color: var(--pink);
            font: 900 .8rem/1 "Font Awesome 6 Free";
            background: #fff;
            border-radius: 50%;
            box-shadow: 0 5px 18px rgba(99, 72, 170, .18);
        }

        .logo-text {
            line-height: .92;
        }

        .logo-text strong {
            display: block;
            color: var(--purple);
            font-family: "Playfair Display", serif;
            font-size: 1.55rem;
            letter-spacing: .06em;
        }

        .logo-text span {
            display: block;
            margin-top: 7px;
            color: var(--pink);
            font-size: .72rem;
            font-weight: 800;
            letter-spacing: .26em;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            color: var(--navy);
            font-size: .9rem;
            font-weight: 800;
        }

        .nav-links a {
            position: relative;
        }

        .nav-links a::after {
            content: "";
            position: absolute;
            right: 50%;
            bottom: -8px;
            left: 50%;
            height: 2px;
            border-radius: 2px;
            background: linear-gradient(90deg, var(--purple), var(--pink));
            transition: .2s ease;
        }

        .nav-links a:hover::after {
            right: 0;
            left: 0;
        }

        .header-cta {
            color: #fff;
            background: linear-gradient(135deg, var(--purple), var(--pink));
            box-shadow: 0 12px 30px rgba(101, 77, 205, .25);
        }

        .mobile-toggle {
            display: none;
            width: 46px;
            height: 46px;
            place-items: center;
            border: 0;
            border-radius: 50%;
            color: var(--navy);
            background: #fff;
            box-shadow: var(--shadow-soft);
        }

        /* Hero */
        .hero {
            position: relative;
            min-height: 860px;
            overflow: hidden;
            padding: 142px 0 108px;
        }

        .hero::before {
            content: "";
            position: absolute;
            z-index: -2;
            inset: 0;
            background:
                linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.92) 34%, rgba(255,255,255,.12) 68%, rgba(255,255,255,.05) 100%),
                url("https://samui.website/live/nannysamui.com/images/gallery/nanny-samui-1.webp?auto=format&fit=crop&w=2200&q=90") center 28% / cover no-repeat;
        }

        .hero::after {
            content: "";
            position: absolute;
            z-index: -1;
            right: -120px;
            bottom: -170px;
            width: 620px;
            height: 420px;
            border: 70px solid rgba(168, 134, 255, .18);
            border-radius: 50%;
            transform: rotate(-12deg);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.03fr .97fr;
            align-items: center;
            gap: 34px;
        }

        .hero-copy {
            max-width: 620px;
            padding-top: 30px;
        }

        .hero h1 {
            margin: 0;
            color: var(--purple-dark);
            font-family: "Playfair Display", serif;
            font-size: clamp(3.4rem, 6vw, 6.1rem);
            line-height: .98;
            letter-spacing: -.045em;
        }

        .hero h1 span {
            color: var(--navy);
        }

        .hero-lead {
            max-width: 540px;
            margin: 28px 0;
            color: #42476c;
            font-size: 1.05rem;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-top: 22px;
            color: var(--navy);
            font-size: .9rem;
            font-weight: 700;
        }

        .rating-stars {
            color: #ffb400;
            letter-spacing: 2px;
        }

        .hero-side {
            position: relative;
            min-height: 560px;
        }

        .hero-card {
            position: absolute;
            z-index: 3;
            top: 80px;
            right: 0;
            width: min(390px, 100%);
            padding: 30px;
            border: 1px solid rgba(255,255,255,.75);
            border-radius: var(--radius-lg);
            background: rgba(255,255,255,.94);
            box-shadow: var(--shadow);
            backdrop-filter: blur(14px);
        }

        .hero-card h2 {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            margin: 0;
            color: var(--purple-dark);
            font-family: "Playfair Display", serif;
            font-size: 2rem;
        }

        .hero-card h2 i {
            color: var(--pink);
            font-size: 1.4rem;
        }

        .hero-card p {
            margin: 10px 0 20px;
            color: var(--muted);
            font-size: .92rem;
        }

        .form-grid {
            display: grid;
            gap: 12px;
        }

        .form-control {
            width: 100%;
            height: 50px;
            padding: 0 15px;
            border: 1px solid rgba(65, 56, 115, .12);
            border-radius: 13px;
            outline: none;
            color: var(--navy);
            background: #fff;
            transition: .2s ease;
        }

        .form-control:focus {
            border-color: rgba(118, 86, 216, .55);
            box-shadow: 0 0 0 4px rgba(118, 86, 216, .08);
        }

        .hero-card .btn {
            width: 100%;
            margin-top: 6px;
        }

        .floating-badge {
            position: absolute;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 13px 16px;
            border: 1px solid rgba(255,255,255,.74);
            border-radius: 16px;
            color: var(--navy);
            background: rgba(255,255,255,.88);
            box-shadow: var(--shadow-soft);
            backdrop-filter: blur(12px);
            font-size: .86rem;
            font-weight: 800;
        }

        .badge-one {
            left: 20px;
            bottom: 85px;
        }

        .badge-two {
            right: 60px;
            bottom: 18px;
        }

        .floating-badge i {
            color: var(--pink);
        }

        /* Trust strip */
        .trust-wrap {
            position: relative;
            z-index: 5;
            margin-top: -84px;
        }

        .trust-strip {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            overflow: hidden;
            border: 1px solid rgba(255,255,255,.90);
            border-radius: 28px;
            background: rgba(255,255,255,.95);
            box-shadow: var(--shadow);
            backdrop-filter: blur(14px);
        }

        .trust-item {
            position: relative;
            padding: 28px 22px;
            text-align: center;
        }

        .trust-item:not(:last-child)::after {
            content: "";
            position: absolute;
            top: 24px;
            right: 0;
            bottom: 24px;
            width: 1px;
            background: var(--line);
        }

        .trust-icon {
            display: grid;
            width: 50px;
            height: 50px;
            margin: 0 auto 13px;
            place-items: center;
            border-radius: 18px;
            font-size: 1.35rem;
            background: linear-gradient(135deg, var(--lilac), var(--blue-soft));
            color: var(--purple);
        }

        .trust-item:nth-child(even) .trust-icon {
            color: var(--pink);
            background: linear-gradient(135deg, #ffe7f4, var(--lilac));
        }

        .trust-item strong {
            display: block;
            margin-bottom: 6px;
            color: var(--navy);
            line-height: 1.25;
        }

        .trust-item span {
            display: block;
            color: var(--muted);
            font-size: .76rem;
            line-height: 1.45;
        }

        /* How it works */
        .how {
            padding: 118px 0 92px;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 42px;
            margin-top: 48px;
        }

        .step {
            position: relative;
            text-align: center;
        }

        .step:not(:last-child)::after {
            content: "";
            position: absolute;
            top: 42px;
            left: calc(50% + 54px);
            width: calc(100% - 66px);
            height: 1px;
            background: linear-gradient(90deg, var(--purple), var(--blue));
            opacity: .35;
        }

        .step-number {
            position: relative;
            z-index: 2;
            display: grid;
            width: 78px;
            height: 78px;
            margin: 0 auto 18px;
            place-items: center;
            border-radius: 50%;
            color: var(--purple-dark);
            background: linear-gradient(135deg, #ece4ff, #dff0ff);
            font-family: "Playfair Display", serif;
            font-size: 2.2rem;
            box-shadow: 0 12px 30px rgba(118, 86, 216, .14);
        }

        .step:nth-child(even) .step-number {
            color: var(--pink);
            background: linear-gradient(135deg, #ffe2f1, #f0e5ff);
        }

        .step i {
            margin-bottom: 12px;
            color: var(--purple);
            font-size: 1.15rem;
        }

        .step h3 {
            margin: 0 0 7px;
            color: var(--navy);
            font-size: 1rem;
        }

        .step p {
            margin: 0;
            color: var(--muted);
            font-size: .86rem;
        }

        /* Services */
        .services {
            position: relative;
            padding: 92px 0 120px;
            background: linear-gradient(180deg, rgba(240,235,255,.72), rgba(255,255,255,0));
        }

        .services::before {
            content: "";
            position: absolute;
            z-index: -1;
            inset: 0;
            background:
                radial-gradient(circle at 5% 35%, rgba(236,95,175,.13), transparent 24rem),
                radial-gradient(circle at 96% 55%, rgba(120,184,255,.16), transparent 26rem);
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 22px;
        }

        .service-card {
            overflow: hidden;
            border: 1px solid rgba(71, 62, 126, .09);
            border-radius: 24px;
            background: rgba(255,255,255,.94);
            box-shadow: var(--shadow-soft);
            transition: .28s ease;
        }

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

        .service-image {
            position: relative;
            height: 210px;
            overflow: hidden;
        }

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

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

        .service-icon {
            position: absolute;
            right: 18px;
            bottom: -22px;
            display: grid;
            width: 52px;
            height: 52px;
            place-items: center;
            border: 5px solid #fff;
            border-radius: 50%;
            color: var(--purple);
            background: var(--blue-soft);
            box-shadow: 0 8px 18px rgba(67, 56, 130, .16);
            z-index: 999999 !important;
        }

        .service-body {
            position: relative;
            padding: 29px 22px 24px;
            text-align: center;
        }

        .service-body h3 {
            margin: 0 0 8px;
            color: var(--navy);
            font-family: "Playfair Display", serif;
            font-size: 1.38rem;
        }

        .service-body p {
            min-height: 66px;
            margin: 0;
            color: var(--muted);
            font-size: .88rem;
        }

        .service-price {
            margin: 16px 0 18px;
            color: var(--pink);
            font-weight: 800;
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--purple-dark);
            font-size: .78rem;
            font-weight: 800;
            letter-spacing: .05em;
            text-transform: uppercase;
        }

        /* About */
        .about {
            padding: 40px 0 80px;
        }

        .about-grid {
            display: grid;
            grid-template-columns: .95fr 1.05fr;
            align-items: center;
            gap: 72px;
        }

        .about-image {
            position: relative;
        }

        .about-image img {
            width: 100%;
            min-height: 540px;
            object-fit: cover;
            border-radius: 34px;
            box-shadow: var(--shadow);
        }

        .about-image::after {
            content: "";
            position: absolute;
            z-index: -1;
            right: -28px;
            bottom: -28px;
            width: 72%;
            height: 72%;
            border-radius: 34px;
            background: linear-gradient(135deg, var(--pink-soft), var(--blue-soft));
        }

        .about-copy h2 {
            margin: 0 0 22px;
            color: var(--navy);
            font-family: "Playfair Display", serif;
            font-size: clamp(2.5rem, 4vw, 4.5rem);
            line-height: 1.02;
        }

        .about-copy > p {
            color: var(--muted);
        }

        .check-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px 22px;
            margin: 30px 0;
            padding: 0;
            list-style: none;
        }

        .check-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--navy);
            font-size: .9rem;
            font-weight: 700;
        }

        .check-list i {
            color: var(--purple);
        }

        /* Stats */
        .stats {
            margin-bottom: 110px;
        }

        .stats-bar {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            border-radius: 28px;
            color: #fff;
            background: linear-gradient(120deg, var(--purple), #9a77ef 42%, var(--pink) 100%);
            box-shadow: 0 24px 55px rgba(104, 75, 198, .27);
        }

        .stat {
            position: relative;
            padding: 34px 24px;
            text-align: center;
        }

        .stat:not(:last-child)::after {
            content: "";
            position: absolute;
            top: 24px;
            right: 0;
            bottom: 24px;
            width: 1px;
            background: rgba(255,255,255,.28);
        }

        .stat strong {
            display: block;
            font-size: 2rem;
            line-height: 1;
        }

        .stat span {
            display: block;
            margin-top: 7px;
            font-size: .82rem;
            opacity: .86;
        }

        /* Testimonials */
        .testimonials {
            padding: 110px 0;
            background: linear-gradient(180deg, rgba(240,235,255,.72), rgba(255,255,255,0));
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .testimonial {
            padding: 28px;
            border: 1px solid rgba(75, 64, 129, .08);
            border-radius: 24px;
            background: rgba(255,255,255,.93);
            box-shadow: var(--shadow-soft);
        }

        .testimonial .stars {
            color: #ffb400;
        }

        .testimonial blockquote {
            margin: 18px 0 22px;
            color: var(--navy);
            font-family: "Playfair Display", serif;
            font-size: 1.22rem;
            line-height: 1.45;
        }

        .guest {
            display: flex;
            align-items: center;
            gap: 13px;
        }

        .guest-avatar {
            display: grid;
            width: 46px;
            height: 46px;
            place-items: center;
            border-radius: 50%;
            color: var(--purple);
            background: var(--lilac);
            font-weight: 800;
        }

        .guest strong,
        .guest span {
            display: block;
        }

        .guest span {
            color: var(--muted);
            font-size: .78rem;
        }

        /* Pricing */
        .pricing {
            padding: 110px 0;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            align-items: stretch;
            gap: 24px;
        }

        .price-card {
            position: relative;
            padding: 34px;
            border: 1px solid rgba(75, 64, 129, .08);
            border-radius: 26px;
            background: #fff;
            box-shadow: var(--shadow-soft);
        }

        .price-card.featured {
            color: #fff;
            background: linear-gradient(145deg, var(--purple-dark), var(--purple), var(--pink));
            transform: translateY(-14px);
            box-shadow: 0 26px 60px rgba(98, 70, 192, .32);
        }

        .price-card h3 {
            margin: 0;
            font-family: "Playfair Display", serif;
            font-size: 1.8rem;
        }

        .price-value {
            margin: 18px 0 6px;
            font-size: 3rem;
            font-weight: 800;
            line-height: 1;
        }

        .price-card > p {
            margin: 0 0 24px;
            color: var(--muted);
        }

        .price-card.featured > p {
            color: rgba(255,255,255,.82);
        }

        .price-list {
            display: grid;
            gap: 13px;
            margin: 0 0 28px;
            padding: 0;
            list-style: none;
        }

        .price-list li {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .price-list i {
            color: var(--pink);
        }

        .featured .price-list i {
            color: #fff;
        }

        /* FAQ */
        .faq {
            padding: 110px 0;
        }

        .faq-wrap {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            overflow: hidden;
            margin-bottom: 14px;
            border: 1px solid rgba(75, 64, 129, .09);
            border-radius: 18px;
            background: #fff;
            box-shadow: 0 10px 28px rgba(78, 63, 139, .07);
        }

        .faq-button {
            display: flex;
            width: 100%;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 21px 24px;
            border: 0;
            color: var(--navy);
            background: transparent;
            font-weight: 800;
            text-align: left;
            cursor: pointer;
        }

        .faq-answer {
            display: none;
            padding: 0 24px 22px;
            color: var(--muted);
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-item.active .faq-button i {
            transform: rotate(45deg);
        }

        .faq-button i {
            color: var(--pink);
            transition: .2s ease;
        }

        /* CTA & footer */
        .final-cta {
            padding: 50px 0 110px;
        }

        .cta-panel {
            position: relative;
            overflow: hidden;
            padding: 72px 70px;
            border-radius: 34px;
            color: #fff;
            background:
                linear-gradient(110deg, rgba(86, 54, 189, .94), rgba(225, 78, 170, .88)),
                url("https://images.unsplash.com/photo-1504151932400-72d4384f04b3?auto=format&fit=crop&w=1800&q=85") center/cover;
            box-shadow: 0 30px 70px rgba(92, 59, 180, .28);
        }

        .cta-panel::after {
            content: "";
            position: absolute;
            right: -80px;
            bottom: -140px;
            width: 420px;
            height: 420px;
            border: 64px solid rgba(255,255,255,.12);
            border-radius: 50%;
        }

        .cta-panel h2 {
            position: relative;
            z-index: 2;
            max-width: 680px;
            margin: 0 0 16px;
            font-family: "Playfair Display", serif;
            font-size: clamp(2.6rem, 5vw, 5rem);
            line-height: 1;
        }

        .cta-panel p {
            position: relative;
            z-index: 2;
            max-width: 580px;
            margin: 0 0 28px;
            color: rgba(255,255,255,.88);
        }

        .cta-panel .btn {
            position: relative;
            z-index: 2;
        }

        footer {
            padding: 70px 0 26px;
            color: rgba(255,255,255,.74);
            background: var(--navy);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 36px;
            padding-bottom: 44px;
        }

        .footer-brand p {
            max-width: 330px;
            color: rgba(255,255,255,.64);
        }

        .footer-logo strong {
            color: #fff;
        }

        footer h4 {
            margin: 0 0 16px;
            color: #fff;
        }

        footer ul {
            display: grid;
            gap: 10px;
            margin: 0;
            padding: 0;
            list-style: none;
        }

        footer a:hover {
            color: #fff;
        }

        .copyright {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            padding-top: 22px;
            border-top: 1px solid rgba(255,255,255,.10);
            font-size: .82rem;
        }

        /* Reveal animation */
        .reveal {
            opacity: 0;
            transform: translateY(24px);
            transition: .7s ease;
        }

        .reveal.visible {
            opacity: 1;
            transform: none;
        }


        .team {
            padding: 110px 0;
            background:
                radial-gradient(circle at 8% 18%, rgba(236,95,175,.10), transparent 22rem),
                radial-gradient(circle at 92% 80%, rgba(120,184,255,.13), transparent 25rem),
                #fff;
        }

        .team-grid {
            display: grid;
            grid-template-columns: .9fr 1.1fr;
            align-items: center;
            gap: 70px;
        }

        .team-collage {
            position: relative;
            min-height: 560px;
        }

        .team-photo-main,
        .team-photo-small {
            position: absolute;
            overflow: hidden;
            border: 8px solid #fff;
            border-radius: 30px;
            box-shadow: var(--shadow);
        }

        .team-photo-main {
            inset: 0 90px 55px 0;
        }

        .team-photo-small {
            right: 0;
            bottom: 0;
            width: 48%;
            height: 46%;
        }

        .team-photo-main img,
        .team-photo-small img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-copy h2 {
            margin: 0 0 22px;
            color: var(--navy);
            font-family: "Playfair Display", serif;
            font-size: clamp(2.5rem, 4vw, 4.4rem);
            line-height: 1.04;
        }

        .team-copy p {
            color: var(--muted);
        }

        .mon-note {
            display: flex;
            gap: 15px;
            margin: 28px 0;
            padding: 22px;
            border: 1px solid rgba(118,86,216,.10);
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(238,232,255,.75), rgba(223,240,255,.68));
        }

        .mon-note i {
            color: var(--pink);
            font-size: 1.5rem;
        }

        .mon-note strong {
            display: block;
            color: var(--navy);
        }

        .mon-note span {
            display: block;
            color: var(--muted);
            font-size: .88rem;
        }

        .coverage {
            padding: 105px 0;
        }

        .coverage-panel {
            position: relative;
            overflow: hidden;
            display: grid;
            grid-template-columns: .9fr 1.1fr;
            gap: 42px;
            padding: 52px;
            border: 1px solid rgba(74,62,135,.08);
            border-radius: 34px;
            background:
                radial-gradient(circle at 86% 18%, rgba(120,184,255,.18), transparent 18rem),
                linear-gradient(135deg, #fff, #faf7ff);
            box-shadow: var(--shadow-soft);
        }

        .coverage-copy h2 {
            margin: 0 0 18px;
            color: var(--navy);
            font-family: "Playfair Display", serif;
            font-size: clamp(2.2rem, 4vw, 3.8rem);
            line-height: 1.05;
        }

        .coverage-copy p {
            color: var(--muted);
        }

        .area-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 24px;
        }

        .area-tag {
            padding: 10px 15px;
            border-radius: 999px;
            color: var(--purple-dark);
            background: #fff;
            border: 1px solid rgba(118,86,216,.12);
            box-shadow: 0 7px 18px rgba(85,66,145,.07);
            font-size: .84rem;
            font-weight: 800;
        }

        .island-card {
            display: grid;
            min-height: 340px;
            place-items: center;
            border-radius: 28px;
            color: #fff;
            background:
                linear-gradient(145deg, rgba(103,77,209,.88), rgba(229,82,174,.76)),
                url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1200&q=85") center/cover;
            box-shadow: 0 22px 48px rgba(92,64,180,.24);
            text-align: center;
        }

        .island-card i {
            display: block;
            margin-bottom: 16px;
            font-size: 4rem;
        }

        .island-card strong {
            display: block;
            font-family: "Playfair Display", serif;
            font-size: 2rem;
        }

        .island-card span {
            opacity: .86;
        }

        .sticky-whatsapp {
            position: fixed;
            z-index: 30;
            right: 22px;
            bottom: 22px;
            display: flex;
            width: 62px;
            height: 62px;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: #fff;
            background: linear-gradient(145deg, var(--purple), var(--pink));
            box-shadow: 0 18px 35px rgba(105,72,199,.35);
            font-size: 1.8rem;
            transition: .2s ease;
        }

        .sticky-whatsapp:hover {
            transform: translateY(-4px) scale(1.03);
        }

        .booking-success {
            display: none;
            margin-top: 14px;
            padding: 12px 14px;
            border-radius: 12px;
            color: var(--purple-dark);
            background: var(--lilac);
            font-size: .83rem;
            font-weight: 700;
        }

        @media (max-width: 820px) {
            .team-grid,
            .coverage-panel {
                grid-template-columns: 1fr;
            }

            .team-collage {
                min-height: 480px;
            }
        }

        @media (max-width: 560px) {
            .team-collage {
                min-height: 400px;
            }

            .team-photo-main {
                inset: 0 38px 48px 0;
            }

            .team-photo-small {
                width: 54%;
            }

            .coverage-panel {
                padding: 30px 22px;
            }
        }


        .back-to-top {
            position: fixed;
            z-index: 31;
            right: 22px;
            bottom: 96px;
            display: grid;
            width: 52px;
            height: 52px;
            place-items: center;
            border: 1px solid rgba(255,255,255,.75);
            border-radius: 50%;
            color: #fff;
            background: linear-gradient(145deg, var(--purple), var(--blue));
            box-shadow: 0 16px 32px rgba(94,72,180,.28);
            opacity: 0;
            visibility: hidden;
            transform: translateY(14px);
            transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
            cursor: pointer;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: none;
        }

        .back-to-top:hover {
            transform: translateY(-4px);
        }

        .flatpickr-calendar {
            overflow: hidden;
            border: 1px solid rgba(118,86,216,.10);
            border-radius: 20px;
            box-shadow: 0 24px 60px rgba(80,60,150,.20);
            font-family: "DM Sans", sans-serif;
        }

        .flatpickr-months {
            padding: 8px 0;
            color: #fff;
            background: linear-gradient(135deg, var(--purple), var(--pink));
        }

        .flatpickr-months .flatpickr-month,
        .flatpickr-current-month,
        .flatpickr-current-month .flatpickr-monthDropdown-months,
        .flatpickr-current-month input.cur-year {
            color: #fff;
        }

        .flatpickr-weekdays {
            background: rgba(238,232,255,.65);
        }

        span.flatpickr-weekday {
            color: var(--purple-dark);
            font-weight: 800;
        }

        .flatpickr-day {
            border-radius: 10px;
        }

        .flatpickr-day.selected,
        .flatpickr-day.startRange,
        .flatpickr-day.endRange,
        .flatpickr-day.selected:hover,
        .flatpickr-day.startRange:hover,
        .flatpickr-day.endRange:hover {
            border-color: var(--pink);
            background: linear-gradient(135deg, var(--purple), var(--pink));
        }

        .flatpickr-day.today {
            border-color: var(--blue);
        }

        .flatpickr-day:hover {
            background: var(--lilac);
        }


        .hero::after {
            content: "";
            position: absolute;
            z-index: 2;
            right: 0;
            bottom: -1px;
            left: 0;
            height: 96px;
            background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M0,64L60,69.3C120,75,240,85,360,80C480,75,600,53,720,48C840,43,960,53,1080,64C1200,75,1320,85,1380,90.7L1440,96L1440,120L1380,120C1320,120,1200,120,1080,120C960,120,840,120,720,120C600,120,480,120,360,120C240,120,120,120,60,120L0,120Z'/%3E%3C/svg%3E") center bottom/cover no-repeat;
            pointer-events: none;
        }

        .hero-media,
        .hero-image,
        .hero-visual {
            will-change: transform;
        }

        .service-card,
        .trust-item,
        .testimonial,
        .price-card {
            transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
        }

        .service-card:hover,
        .testimonial:hover,
        .price-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 50px rgba(80, 60, 150, .16);
        }

        .trust-item:hover {
            transform: translateY(-5px);
        }

        .trust-item i,
        .service-icon,
        .guest-avatar {
            transition: transform .28s ease;
        }

        .trust-item:hover i,
        .service-card:hover .service-icon,
        .testimonial:hover .guest-avatar {
            transform: scale(1.08) rotate(-3deg);
        }

        .age-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 22px;
        }

        .age-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            border: 1px solid rgba(118,86,216,.12);
            border-radius: 999px;
            color: var(--purple-dark);
            background: rgba(255,255,255,.88);
            box-shadow: 0 8px 18px rgba(85,66,145,.07);
            font-size: .82rem;
            font-weight: 800;
        }

        .age-badge i {
            color: var(--pink);
        }

        .gallery {
            padding: 110px 0;
            background: linear-gradient(180deg, #fff, #fbf9ff);
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: 1.3fr .7fr .7fr;
            grid-template-rows: 250px 250px;
            gap: 18px;
            margin-top: 44px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 26px;
            box-shadow: var(--shadow-soft);
        }

        .gallery-item:first-child {
            grid-row: 1 / 3;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
        }

        .gallery-item::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(48,36,88,.42), transparent 55%);
            opacity: .65;
            transition: opacity .3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-item:hover::after {
            opacity: .85;
        }

        .gallery-caption {
            position: absolute;
            z-index: 2;
            right: 18px;
            bottom: 16px;
            left: 18px;
            color: #fff;
            font-weight: 800;
        }

        .whatsapp-tooltip {
            position: fixed;
            z-index: 29;
            right: 92px;
            bottom: 36px;
            padding: 10px 14px;
            border-radius: 12px;
            color: var(--navy);
            background: #fff;
            box-shadow: 0 14px 35px rgba(64,48,120,.18);
            font-size: .82rem;
            font-weight: 800;
            opacity: 0;
            visibility: hidden;
            transform: translateX(8px);
            transition: .25s ease;
        }

        .sticky-whatsapp:hover + .whatsapp-tooltip,
        .whatsapp-tooltip.show {
            opacity: 1;
            visibility: visible;
            transform: none;
        }

        .nav-links {
            transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
        }

        @media (max-width: 900px) {
            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: 260px 220px 220px;
            }

            .gallery-item:first-child {
                grid-column: 1 / 3;
                grid-row: auto;
            }
        }

        @media (max-width: 560px) {
            .hero::after {
                height: 58px;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
                grid-template-rows: repeat(5, 230px);
            }

            .gallery-item:first-child {
                grid-column: auto;
            }

            .whatsapp-tooltip {
                display: none;
            }

            .nav-links {
                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px) scale(.98);
                pointer-events: none;
            }

            .nav-links.open {
                opacity: 1;
                visibility: visible;
                transform: none;
                pointer-events: auto;
            }
        }

        @media (max-width: 1100px) {
            .nav-links {
                gap: 18px;
            }

            .hero-grid {
                grid-template-columns: 1fr;
            }

            .hero {
                min-height: 1040px;
            }

            .hero-side {
                min-height: 400px;
            }

            .hero-card {
                top: 15px;
            }

            .trust-strip,
            .service-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .trust-item:nth-child(3)::after {
                display: none;
            }

            .about-grid {
                gap: 42px;
            }
        }

        @media (max-width: 820px) {
            .site-header {
                position: fixed;
                padding: 12px 0;
                background: rgba(255,255,255,.91);
                box-shadow: 0 10px 30px rgba(74, 58, 128, .08);
                backdrop-filter: blur(16px);
            }

            .mobile-toggle {
                display: grid;
                flex: 0 0 46px;
                margin-left: auto;
            }

            .nav-wrap {
                width: min(100% - 24px, 1180px);
                gap: 12px;
            }

            .nav-links {
                position: fixed;
                top: 76px;
                right: 12px;
                left: 12px;
                display: none;
                padding: 22px;
                border-radius: 22px;
                background: #fff;
                box-shadow: var(--shadow);
            }

            .nav-links.open {
                display: grid;
            }

            .header-cta {
                display: none;
            }

            .hero {
                min-height: auto;
                padding: 130px 0 130px;
            }

            .hero::before {
                background:
                    linear-gradient(180deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.90) 48%, rgba(255,255,255,.52) 100%),
                    url("https://images.unsplash.com/photo-1596461404969-9ae70f2830c1?auto=format&fit=crop&w=1600&q=88") center/cover;
            }

            .hero-copy {
                padding-top: 0;
            }

            .hero h1 {
                font-size: clamp(3.1rem, 13vw, 5rem);
            }

            .hero-side {
                min-height: 520px;
            }

            .hero-card {
                right: auto;
                left: 0;
                width: 100%;
            }

            .floating-badge {
                display: none;
            }

            .trust-wrap {
                margin-top: -58px;
            }

            .trust-strip,
            .service-grid,
            .steps,
            .testimonial-grid,
            .pricing-grid,
            .stats-bar,
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .trust-item:nth-child(3)::after {
                display: block;
            }

            .trust-item:nth-child(even)::after {
                display: none;
            }

            .step::after {
                display: none;
            }

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

            .about-image img {
                min-height: 420px;
            }

            .price-card.featured {
                transform: none;
            }

            .footer-grid {
                gap: 28px;
            }
        }

        @media (max-width: 560px) {
            :root {
                --container: min(100% - 24px, 1180px);
            }

            .logo {
                max-width: calc(100% - 58px);
            }

            .logo-text {
                min-width: 0;
            }
            .mainlogo{
                    display: block;
                    max-width: 74px;
                }
            .logo-text strong {
                overflow: hidden;
                font-size: 1.2rem;
                text-overflow: ellipsis;
                white-space: nowrap;
            }

            .logo-text span {
                font-size: .58rem;
            }

            .hero {
                padding-bottom: 112px;
            }

            .hero-actions .btn {
                width: 100%;
            }

            .rating {
                align-items: flex-start;
                flex-direction: column;
                gap: 6px;
            }

            .hero-side {
                min-height: 570px;
            }

            .hero-card {
                padding: 22px;
            }

            .trust-strip,
            .service-grid,
            .steps,
            .testimonial-grid,
            .pricing-grid,
            .stats-bar,
            .footer-grid {
                grid-template-columns: 1fr;
            }

            .trust-item::after,
            .stat::after {
                display: none !important;
            }

            .trust-item {
                padding: 22px;
            }

            .about,
            .pricing,
            .faq,
            .testimonials {
                padding: 82px 0;
            }

            .check-list {
                grid-template-columns: 1fr;
            }

            .cta-panel {
                padding: 52px 26px;
            }

            .sticky-whatsapp,
            .back-to-top {
                right: 14px;
            }

            .copyright {
                flex-direction: column;
            }
        }


.service-card {
    position: relative;
    overflow: hidden;
}

.service-card-image {
    position: relative;
    overflow: hidden;
}

.service-card-image img {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.service-icon {
    position: absolute;
    right: 10px;
    bottom: -12px;
    z-index: 3;

    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;

    border: 5px solid #fff;
    border-radius: 50%;
    background: #f1edff;
    box-shadow: 0 8px 20px rgba(73, 55, 130, 0.18);

    color: #7656d8;
    font-size: 20px;
    line-height: 1;
}

.service-icon i {
    display: block;
    line-height: 1;
}