* {
    box-sizing: border-box;
}

:root {
    --primary: #101827;
    --secondary: #f4b740;
    --accent: #2ec4b6;
    --cream: #fff8ed;
    --light: #f7fafc;
    --muted: #5f6c82;
    --border: rgba(16, 24, 39, 0.1);
    --shadow: 0 24px 70px rgba(16, 24, 39, 0.12);
    --radius: 28px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

body {
    margin: 0;
    padding-top: 78px;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--primary);
    background:
        radial-gradient(circle at top left, rgba(46, 196, 182, 0.12), transparent 34rem),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #fff8ed 100%);
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select,
textarea {
    font: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.section-pad {
    padding: 86px 0;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(16, 24, 39, 0.08);
}

.nav-shell {
    width: min(1180px, calc(100% - 28px));
    min-height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    border-radius: 16px;
    background:
        linear-gradient(135deg, var(--secondary), #fff1c5),
        var(--secondary);
    color: var(--primary);
    display: grid;
    place-items: center;
    font-weight: 900;
    box-shadow: 0 14px 32px rgba(244, 183, 64, 0.25);
}

.brand-text {
    min-width: 0;
}

.brand strong,
.brand small {
    display: block;
    line-height: 1.1;
}

.brand strong {
    font-size: 1rem;
    color: var(--primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 360px;
}

.brand small {
    margin-top: 4px;
    font-size: 0.72rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 800;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #43506a;
    font-size: 0.95rem;
}

.main-nav a {
    transition: color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.nav-cta {
    padding: 12px 20px;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff !important;
    box-shadow: 0 16px 30px rgba(16, 24, 39, 0.2);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: var(--primary);
    cursor: pointer;
    padding: 11px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: #ffffff;
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
    position: relative;
    overflow: hidden;
    padding-top: 96px;
    padding-bottom: 88px;
}

.hero-shape {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.hero-shape-one {
    width: 320px;
    height: 320px;
    right: -130px;
    top: 80px;
    background: rgba(244, 183, 64, 0.22);
}

.hero-shape-two {
    width: 240px;
    height: 240px;
    left: -100px;
    bottom: 40px;
    background: rgba(46, 196, 182, 0.18);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    align-items: center;
    gap: 58px;
}

.eyebrow {
    margin: 0 0 12px;
    color: #d77400;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
    font-weight: 900;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 20px;
    color: var(--primary);
    font-size: clamp(2.65rem, 6vw, 5.1rem);
    line-height: 0.96;
    letter-spacing: -0.07em;
}

h2 {
    margin-bottom: 16px;
    color: var(--primary);
    font-size: clamp(2rem, 4vw, 3.45rem);
    line-height: 1;
    letter-spacing: -0.045em;
}

h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.hero-text,
.section-heading p,
.split-content p,
.faq-intro p,
.contact-copy p {
    color: var(--muted);
}

.hero-text {
    max-width: 590px;
    margin-bottom: 28px;
    font-size: 1.06rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(16, 24, 39, 0.2);
}

.btn-light {
    background: #ffffff;
    color: var(--primary);
    border: 1px solid var(--border);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 520px;
}

.hero-stats div {
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 18px 48px rgba(16, 24, 39, 0.07);
}

.hero-stats strong {
    display: block;
    font-size: 1.55rem;
    line-height: 1.1;
    color: var(--primary);
}

.hero-stats span {
    display: block;
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.9rem;
}

.hero-media {
    position: relative;
    min-height: 520px;
}

.hero-media img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 34px;
    border: 12px solid #ffffff;
    box-shadow: var(--shadow);
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 12px;
    border-radius: 24px;
    background: linear-gradient(180deg, transparent 35%, rgba(16, 24, 39, 0.52) 100%);
    pointer-events: none;
}

.hero-card {
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    box-shadow: 0 18px 46px rgba(16, 24, 39, 0.16);
    border-radius: 20px;
}

.hero-card-top {
    left: -24px;
    bottom: 76px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    width: min(320px, calc(100% - 28px));
}

.status-dot {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
    border-radius: 999px;
    background: #d77400;
    box-shadow: 0 0 0 8px rgba(215, 116, 0, 0.1);
}

.hero-card strong {
    display: block;
    color: var(--primary);
    line-height: 1.2;
}

.hero-card small,
.hero-card span {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
}

.hero-card-bottom {
    right: 22px;
    bottom: 22px;
    padding: 16px 20px;
}

.quick-strip {
    background: var(--primary);
    color: #ffffff;
}

.strip-grid {
    min-height: 62px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    gap: 18px;
    text-align: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.section-heading p {
    margin-bottom: 0;
}

.spaces-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.space-card {
    position: relative;
    min-height: 410px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: 0 18px 46px rgba(16, 24, 39, 0.07);
    overflow: hidden;
}

.space-card::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -60px;
    bottom: -70px;
    border-radius: 999px;
    background: rgba(46, 196, 182, 0.14);
}

.card-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 22px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(46, 196, 182, 0.14);
    color: var(--primary);
    font-weight: 900;
}

.space-card p,
.space-card li {
    color: var(--muted);
}

.space-card ul {
    position: relative;
    z-index: 1;
    margin: 18px 0 22px;
    padding: 0;
    list-style: none;
}

.space-card li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.space-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.68em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: #d77400;
}

.price-pill {
    position: relative;
    z-index: 1;
    display: inline-flex;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--cream);
    color: var(--primary);
    font-weight: 900;
}

.featured-card {
    background: linear-gradient(145deg, #16233f, #203a5b);
    color: #ffffff;
    transform: translateY(-8px);
}

.featured-card h3,
.featured-card p,
.featured-card li {
    color: #ffffff;
}

.featured-card .card-icon {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.featured-card .price-pill {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.popular-tag {
    position: absolute;
    top: 18px;
    right: 18px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--cream);
    color: var(--primary);
    font-size: 0.74rem;
    font-weight: 900;
}

.split-section {
    background:
        radial-gradient(circle at right, rgba(46, 196, 182, 0.11), transparent 36rem),
        #f4fbfb;
}

.split-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 66px;
}

.image-stack {
    position: relative;
    min-height: 500px;
}

.image-main,
.image-small {
    object-fit: cover;
    border: 10px solid #ffffff;
    box-shadow: var(--shadow);
}

.image-main {
    width: 86%;
    height: 430px;
    border-radius: 32px;
}

.image-small {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 48%;
    height: 230px;
    border-radius: 28px;
}

.split-content {
    max-width: 600px;
}

.trust-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.trust-list > div {
    display: flex;
    gap: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--border);
    border-radius: 20px;
}

.trust-list span {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: #ffffff;
    font-weight: 900;
}

.trust-list strong {
    display: block;
    margin-bottom: 3px;
}

.trust-list p {
    margin: 0;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.process-card {
    padding: 32px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: 0 18px 46px rgba(16, 24, 39, 0.06);
}

.step-number {
    width: 50px;
    height: 50px;
    margin-bottom: 24px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: #fff1e3;
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 900;
}

.process-card p {
    margin-bottom: 0;
    color: var(--muted);
}

.facilities {
    background: #f5f7fa;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.facility-card,
.availability-panel {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 28px;
    box-shadow: 0 18px 46px rgba(16, 24, 39, 0.07);
    overflow: hidden;
}

.facility-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.facility-card div,
.availability-panel {
    padding: 24px;
}

.facility-card p,
.availability-panel p {
    margin-bottom: 0;
    color: var(--muted);
}

.facility-wide {
    grid-column: span 2;
}

.facility-wide img {
    height: 300px;
}

.availability-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dashboard-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    margin-bottom: 10px;
    border-radius: 16px;
    background: #f4f6f8;
    color: var(--muted);
}

.dashboard-row strong {
    color: var(--primary);
}

.availability-panel h3 {
    margin-top: 18px;
}

.benefits-band {
    padding: 34px 0;
    background: var(--primary);
    color: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.benefit-item {
    padding: 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
}

.benefit-item strong,
.benefit-item span {
    display: block;
}

.benefit-item strong {
    margin-bottom: 6px;
}

.benefit-item span {
    color: rgba(255, 255, 255, 0.78);
}

.testimonials {
    background: #fffaf2;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testimonial-card {
    padding: 30px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 26px;
    box-shadow: 0 18px 46px rgba(16, 24, 39, 0.06);
}

.stars {
    color: #d77400;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    font-weight: 900;
}

.testimonial-card p {
    color: var(--muted);
}

.testimonial-card strong,
.testimonial-card span {
    display: block;
}

.testimonial-card span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 0.9rem;
}

.faq-section {
    background: #f6f9fc;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 64px;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(16, 24, 39, 0.05);
}

.faq-item button {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 20px 54px 20px 22px;
    color: var(--primary);
    text-align: left;
    font-weight: 900;
    cursor: pointer;
    position: relative;
}

.faq-item button::after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    width: 26px;
    height: 26px;
    transform: translateY(-50%);
    border-radius: 999px;
    background: rgba(46, 196, 182, 0.13);
    color: #d77400;
    display: grid;
    place-items: center;
    font-weight: 900;
}

.faq-item.active button::after {
    content: "−";
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-answer p {
    margin: 0;
    padding: 0 22px 22px;
    color: var(--muted);
}

.contact-cta {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at right, rgba(46, 196, 182, 0.16), transparent 34rem),
        #ffffff;
}

.contact-card {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 34px;
    align-items: center;
    padding: 34px;
    border-radius: 34px;
    background: rgba(255, 252, 246, 0.96);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.contact-details {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.contact-details a,
.contact-details span {
    display: block;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(16, 24, 39, 0.05);
    color: var(--primary);
    font-weight: 900;
}

.demo-form {
    padding: 26px;
    border-radius: 28px;
    background: var(--primary);
    color: #ffffff;
}

.form-row {
    margin-bottom: 14px;
}

.demo-form label {
    display: block;
    margin-bottom: 7px;
    font-weight: 900;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
    width: 100%;
    border: 2px solid transparent;
    border-radius: 15px;
    background: #f8fafc;
    color: var(--primary);
    padding: 13px 14px;
    outline: none;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
    border-color: var(--secondary);
}

.demo-form textarea {
    min-height: 94px;
    resize: vertical;
}

.form-btn {
    width: 100%;
    margin-top: 4px;
    background: var(--secondary);
    color: var(--primary);
    box-shadow: 0 16px 28px rgba(244, 183, 64, 0.18);
}

.form-btn:disabled {
    opacity: 0.75;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    margin: 13px 0 0;
    color: rgba(255, 255, 255, 0.78);
    text-align: center;
    font-size: 0.85rem;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 18px;
    z-index: 90;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    background: #20c768;
    color: #ffffff;
    font-weight: 900;
    box-shadow: 0 18px 42px rgba(32, 199, 104, 0.35);
}

.site-footer {
    padding: 36px 0;
    background: var(--primary);
    color: #ffffff;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.footer-grid p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.72);
}

.footer-grid span {
    display: block;
    color: rgba(255, 255, 255, 0.82);
    text-align: right;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1080px) {
    .spaces-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-grid,
    .split-grid,
    .contact-card {
        grid-template-columns: 1fr;
    }

    .hero-media {
        min-height: auto;
    }

    .hero-media img {
        height: 460px;
    }

    .split-content {
        max-width: none;
    }

    .image-stack {
        min-height: 430px;
    }

    .facility-wide {
        grid-column: span 1;
    }

    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand strong {
        max-width: 280px;
    }
}

@media (max-width: 860px) {
    body {
        padding-top: 72px;
    }

    .nav-shell {
        min-height: 72px;
    }

    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        left: 16px;
        right: 16px;
        top: 84px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 14px;
        border-radius: 22px;
        background: #ffffff;
        box-shadow: var(--shadow);
        border: 1px solid var(--border);
    }

    body.nav-open .main-nav {
        display: flex;
    }

    .main-nav a {
        padding: 14px;
        border-radius: 14px;
    }

    .main-nav a:hover {
        background: #f6f9fc;
        transform: none;
    }

    .nav-cta {
        text-align: center;
        margin-top: 8px;
    }

    body.nav-open .nav-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    body.nav-open .nav-toggle span:nth-child(2) {
        opacity: 0;
    }

    body.nav-open .nav-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .section-pad {
        padding: 66px 0;
    }

    .hero {
        padding-top: 62px;
    }

    .hero-grid {
        gap: 38px;
    }

    .strip-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 16px 0;
    }

    .process-grid,
    .testimonial-grid,
    .benefits-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        gap: 30px;
    }

    .footer-grid {
        flex-direction: column;
    }

    .footer-grid span {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 1120px);
    }

    .brand strong {
        max-width: 190px;
        font-size: 0.9rem;
    }

    .brand small {
        font-size: 0.65rem;
    }

    h1 {
        font-size: clamp(2.35rem, 15vw, 3.6rem);
    }

    h2 {
        font-size: clamp(2rem, 11vw, 2.8rem);
    }

    .hero-actions,
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-media img {
        height: 360px;
        border-width: 8px;
        border-radius: 28px;
    }

    .hero-card-top {
        left: 12px;
        bottom: 74px;
    }

    .hero-card-bottom {
        right: 12px;
        bottom: 14px;
    }

    .spaces-grid,
    .facilities-grid {
        grid-template-columns: 1fr;
    }

    .space-card {
        min-height: auto;
    }

    .featured-card {
        transform: none;
    }

    .image-stack {
        min-height: auto;
        display: grid;
        gap: 16px;
    }

    .image-main,
    .image-small {
        position: static;
        width: 100%;
        height: 280px;
        border-width: 8px;
    }

    .contact-card {
        padding: 22px;
        border-radius: 26px;
    }

    .demo-form {
        padding: 20px;
        border-radius: 22px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        min-height: 48px;
        padding: 0 18px;
    }
}