﻿
:root {
    --navy: #0d1b2a;
    --navy-mid: #1b2e45;
    --teal: #0f9d9d;
    --teal-light: #14bfbf;
    --gold: #d4a843;
    --gold-light: #f0c45a;
    --cream: #faf8f3;
    --text-muted-light: #8a9bb0;
    --white: #ffffff;
    --red: #FF3131;
    --red-light: #FF5C5C;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--navy);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
}

/* ── NAVBAR ── */
.navbar {
    background: rgba(13, 27, 42, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 168, 67, 0.2);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white) !important;
    letter-spacing: 0.5px;
}

    .navbar-brand span {
        color: var(--gold);
    }

.nav-link {
    color: rgba(255,255,255,0.8) !important;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: color 0.2s;
    padding: 6px 14px !important;
}

    .nav-link:hover {
        color: var(--gold-light) !important;
    }

.btn-demo-nav {
    background: linear-gradient(135deg, var(--red));
    color: #fff !important;
    border-radius: 8px;
    padding: 8px 22px !important;
    font-weight: 600;
    font-size: 0.88rem;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(15,157,157,0.35);
}

    .btn-demo-nav:hover {
        background: linear-gradient(135deg, var(--red-light), var(--red));
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(15,157,157,0.45);
    }

/* ── HERO ── */
.hero {
    background: var(--navy);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 70% 60% at 80% 50%, rgba(15,157,157,0.13) 0%, transparent 70%), radial-gradient(ellipse 50% 50% at 10% 80%, rgba(212,168,67,0.08) 0%, transparent 60%);
    }

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(15,157,157,0.15);
    border: 1px solid rgba(15,157,157,0.35);
    color: var(--teal-light);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp 0.7s ease both;
}

.hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    color: var(--white);
    line-height: 1.12;
    margin-bottom: 24px;
    animation: fadeUp 0.7s 0.1s ease both;
}

    .hero h1 em {
        font-style: normal;
        color: var(--red);
    }

.hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 40px;
    animation: fadeUp 0.7s 0.2s ease both;
}

.hero-btns {
    animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary-cta {
    background: linear-gradient(135deg, var(--red));
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 34px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 6px 24px rgba(15,157,157,0.4);
    text-decoration: none;
}

    .btn-primary-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 32px rgba(15,157,157,0.55);
        color: #fff;
        background: linear-gradient(135deg, var(--red-light), var(--red));
    }

.btn-outline-cta {
    background: transparent;
    color: rgba(255,255,255,0.85);
    border: 1.5px solid rgba(255,255,255,0.25);
    border-radius: 10px;
    padding: 14px 30px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s;
    text-decoration: none;
}

    .btn-outline-cta:hover {
        border-color: var(--gold);
        color: var(--gold-light);
    }

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 56px;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.4s ease both;
}

.stat-item .num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
}

.stat-item .lbl {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero-visual {
    position: relative;
    animation: fadeUp 0.8s 0.2s ease both;
}

.dashboard-card {
    background: var(--navy-mid);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.dash-title {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
}

.dash-badge {
    background: rgba(15,157,157,0.2);
    color: var(--teal-light);
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.room-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.room-cell {
    aspect-ratio: 1;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 600;
    cursor: default;
}

.room-occupied {
    background: rgba(15,157,157,0.25);
    color: var(--teal-light);
    border: 1px solid rgba(15,157,157,0.4);
}

.room-vacant {
    background: rgba(212,168,67,0.15);
    color: var(--gold);
    border: 1px solid rgba(212,168,67,0.3);
}

.room-checkout {
    background: rgba(255,100,80,0.15);
    color: #ff8070;
    border: 1px solid rgba(255,100,80,0.3);
}

.dash-legend {
    display: flex;
    gap: 16px;
    font-size: 0.72rem;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

.dot-occ {
    background: var(--teal);
}

.dot-vac {
    background: var(--gold);
}

.dot-co {
    background: #ff8070;
}

.legend-item {
    color: rgba(255,255,255,0.55);
}

.mini-stats {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.mini-stat {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border-radius: 10px;
    padding: 12px;
    text-align: center;
}

    .mini-stat .val {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--white);
        font-family: 'Playfair Display', serif;
    }

    .mini-stat .key {
        font-size: 0.65rem;
        color: var(--text-muted-light);
        text-transform: uppercase;
        letter-spacing: 0.4px;
        margin-top: 2px;
    }

.floating-notif {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--navy-mid);
    border: 1px solid rgba(15,157,157,0.3);
    border-radius: 14px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    animation: pulse 3s infinite;
    z-index: 2;
}

.notif-icon {
    width: 36px;
    height: 36px;
    background: rgba(15,157,157,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-light);
    font-size: 1rem;
    flex-shrink: 0;
}

.notif-text {
    font-size: 0.78rem;
}

    .notif-text strong {
        color: var(--white);
        display: block;
        font-size: 0.82rem;
    }

    .notif-text span {
        color: rgba(255,255,255,0.5);
    }

.floating-booking {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--gold), #b8891e);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 16px 40px rgba(212,168,67,0.3);
    animation: pulse 3s 1.5s infinite;
    z-index: 2;
}

.booking-val {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
}

.booking-lbl {
    font-size: 0.7rem;
    color: rgba(13,27,42,0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ── TRUST BAR ── */
.trust-bar {
    background: var(--navy-mid);
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    color: white;
    font-size: 0.82rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

    .trust-item i {
        color: var(--teal);
        font-size: 0.9rem;
    }

/* ── SECTIONS COMMON ── */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--navy);
    color: var(--white);
}

.section-label {
    display: inline-block;
    color: var(--teal);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.05rem;
    color: #5a6e80;
    max-width: 560px;
    line-height: 1.7;
}

.section-alt .section-sub {
    color: rgba(255,255,255,0.55);
}

.section-alt .section-title {
    color: var(--white);
}

/* ── FEATURES ── */
.feature-card {
    background: var(--white);
    border: 1px solid rgba(13,27,42,0.08);
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--teal), var(--gold));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.35s;
    }

    .feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 60px rgba(13,27,42,0.12);
        border-color: rgba(15,157,157,0.2);
    }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

.feat-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.feat-icon-teal {
    background: rgba(15,157,157,0.1);
    color: var(--teal);
}

.feat-icon-gold {
    background: rgba(212,168,67,0.1);
    color: var(--gold);
}

.feat-icon-navy {
    background: rgba(13,27,42,0.08);
    color: var(--navy);
}

.feature-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--navy);
}

.feature-card p {
    font-size: 0.9rem;
    color: #5a6e80;
    line-height: 1.7;
    margin: 0;
}

.feat-tag {
    display: inline-block;
    background: rgba(15,157,157,0.1);
    color: var(--teal);
    border-radius: 100px;
    padding: 3px 12px;
    font-size: 0.72rem;
    font-weight: 600;
    margin-top: 16px;
    letter-spacing: 0.3px;
}

/* ── CHANNEL MANAGER ── */
.channel-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

    .channel-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 60% at 20% 50%, rgba(15,157,157,0.12) 0%, transparent 70%);
    }

.ota-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.ota-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 20px 16px;
    text-align: center;
    transition: all 0.3s;
}

    .ota-card:hover {
        background: rgba(15,157,157,0.12);
        border-color: rgba(15,157,157,0.35);
        transform: translateY(-3px);
    }

.ota-logo {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.ota-name {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
}

.ota-count {
    font-size: 0.68rem;
    color: var(--teal-light);
    margin-top: 4px;
}

.sync-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(15,157,157,0.15);
    border: 1px solid rgba(15,157,157,0.3);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 0.78rem;
    color: var(--teal-light);
    font-weight: 500;
    margin-top: 24px;
}

.sync-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    animation: blink 1.5s infinite;
}

/* ── PAYMENT & WHATSAPP ── */
.integration-card {
    border-radius: 24px;
    padding: 40px 36px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-payment {
    background: linear-gradient(135deg, #0d1b2a, #1b3055);
    border: 1px solid rgba(212,168,67,0.2);
}

.card-whatsapp {
    background: linear-gradient(135deg, #0a1f0a, #0d2e10);
    border: 1px solid rgba(37,211,102,0.25);
}

.integration-card h3 {
    color: var(--white);
    font-size: 1.7rem;
    margin-bottom: 16px;
}

.integration-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 28px;
}

.int-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.icon-gold {
    background: rgba(212,168,67,0.15);
    color: var(--gold);
}

.icon-green {
    background: rgba(37,211,102,0.15);
    color: #25d366;
}

.int-feature-list {
    list-style: none;
    padding: 0;
}

    .int-feature-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 0.88rem;
        color: rgba(255,255,255,0.65);
        margin-bottom: 12px;
        line-height: 1.5;
    }

        .int-feature-list li i {
            color: var(--teal);
            margin-top: 2px;
            flex-shrink: 0;
        }

.gateway-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.gateway-pill {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
}

/* ── PRICING ── */
.pricing-card {
    background: var(--white);
    border: 1.5px solid rgba(13,27,42,0.1);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}

    .pricing-card.featured {
        background: var(--navy);
        border-color: var(--teal);
        color: var(--white);
        transform: scale(1.04);
        box-shadow: 0 30px 80px rgba(13,27,42,0.25);
    }

    .pricing-card:not(.featured):hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 50px rgba(13,27,42,0.1);
    }

.plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--teal), #0a8585);
    color: #fff;
    border-radius: 100px;
    padding: 4px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.plan-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--teal);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.plan-price {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 6px;
}

.pricing-card.featured .plan-price {
    color: var(--white);
}

.plan-period {
    font-size: 0.82rem;
    color: #8a9bb0;
    margin-bottom: 28px;
}

.pricing-card.featured .plan-period {
    color: rgba(255,255,255,0.5);
}

.plan-divider {
    border-color: rgba(13,27,42,0.08);
    margin: 24px 0;
}

.pricing-card.featured .plan-divider {
    border-color: rgba(255,255,255,0.1);
}

.plan-features {
    list-style: none;
    padding: 0;
}

    .plan-features li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 0.88rem;
        color: #5a6e80;
        margin-bottom: 12px;
        line-height: 1.5;
    }

.pricing-card.featured .plan-features li {
    color: rgba(255,255,255,0.65);
}

.plan-features li i {
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-plan {
    display: block;
    width: 100%;
    border-radius: 12px;
    padding: 13px;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 32px;
    border: none;
    cursor: pointer;
}

.btn-plan-outline {
    background: transparent;
    border: 1.5px solid rgba(13,27,42,0.15);
    color: var(--navy);
}

    .btn-plan-outline:hover {
        border-color: var(--red);
        color: var(--red);
    }

.btn-plan-filled {
    background: linear-gradient(135deg, var(--red));
    color: #fff;
    box-shadow: 0 6px 20px rgba(15,157,157,0.4);
}

    .btn-plan-filled:hover {
        box-shadow: 0 10px 30px rgba(15,157,157,0.55);
        transform: translateY(-1px);
    }

/* ── DEMO SECTION ── */
.demo-section {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

    /*.demo-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 50%;
        height: 50%;
        background: radial-gradient(ellipse, rgba(212,168,67,0.07) 0%, transparent 70%);
    }*/

.demo-form-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 44px 40px;
}

.form-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
}

.form-control, .form-select {
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    color: var(--white) !important;
    border-radius: 10px !important;
    padding: 12px 16px !important;
    font-size: 0.92rem !important;
    transition: border-color 0.2s, box-shadow 0.2s;
}

    .form-control::placeholder {
        color: rgba(255,255,255,0.3) !important;
    }

    .form-control:focus, .form-select:focus {
        border-color: var(--teal) !important;
        box-shadow: 0 0 0 3px rgba(15,157,157,0.15) !important;
        background: rgba(255,255,255,0.08) !important;
    }

    .form-select option {
        background: var(--navy);
        color: var(--white);
    }

.btn-submit {
    background: linear-gradient(135deg, var(--red));
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 14px 36px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 24px rgba(15,157,157,0.4);
    width: 100%;
}

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 32px rgba(15,157,157,0.55);
    }

.demo-benefit {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.bi-teal {
    background: rgba(15,157,157,0.15);
    color: var(--teal-light);
}

.bi-gold {
    background: rgba(212,168,67,0.15);
    color: var(--gold);
}

.benefit-text strong {
    color: var(--white);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 4px;
}

.benefit-text span {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ── TESTIMONIALS ── */
.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(13,27,42,0.07);
    border-radius: 20px;
    padding: 32px 28px;
    height: 100%;
    transition: all 0.3s;
}

    .testimonial-card:hover {
        box-shadow: 0 16px 48px rgba(13,27,42,0.1);
        transform: translateY(-3px);
    }

.stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 18px;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    color: #3a4e62;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
}

.reviewer-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--navy-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Playfair Display', serif;
}

.reviewer-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy);
}

.reviewer-hotel {
    font-size: 0.78rem;
    color: #8a9bb0;
}

/* ── FOOTER ── */
footer {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 70px 0 30px;
    color: rgba(255,255,255,0.6);
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 14px;
}

    .footer-brand span {
        color: var(--gold);
    }

.footer-tagline {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 24px;
    max-width: 280px;
    line-height: 1.6;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    transition: all 0.2s;
    margin-right: 8px;
    text-decoration: none;
}

    .footer-social a:hover {
        border-color: var(--teal);
        color: var(--teal-light);
    }

.footer-heading {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: rgba(255,255,255,0.5);
        text-decoration: none;
        font-size: 0.88rem;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: var(--teal-light);
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom-text {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.35);
    font-size: 0.82rem;
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.2s;
}

    .footer-bottom-links a:hover {
        color: var(--teal-light);
    }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.fade-in {
    animation: fadeUp 0.7s ease both;
}

/* ── MOBILE ── */
@media (max-width: 991px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-stats {
        gap: 24px;
        margin-top: 40px;
    }

    .floating-notif, .floating-booking {
        display: none;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .ota-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .demo-form-card {
        padding: 30px 24px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .section {
        padding: 70px 0;
    }

    .ota-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Navbar Logo */
.logo-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    
}

/* Footer Logo */
.logo-circle-footer {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
   
}