:root {
    --theme: rgb(244, 94, 85);
    --theme2: #7974b6;
    --theme-light: rgba(121, 116, 182, 0.15);
    --theme-dark: rgb(238, 42, 31);
    --card-bg: rgba(255, 255, 255, 0.13);
    --card-border: rgba(255, 255, 255, 0.22);
    --border: #e2e8f0;
    --text-dark: #0f172a;
    --text-muted: #64748b;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6{
    font-weight: 700;
    color: var(--theme);
}
body {
    font-family: 'Barlow', sans-serif;
    min-height: 100vh;
    display: flex;
    background: #f8fafc;
    flex-direction: column;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

.logo {
    width: 120px;
    margin-bottom: 15px;
}

main {
    flex: 1;
    position: relative;
    z-index: 1;
}

footer {
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--card-bg);
    border: 1.5px solid var(--card-border);
    border-radius: 18px;
    backdrop-filter: blur(6px);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.18s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
    color: #fff;
}

.card-icon-box {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.card-title-text {
    font-size: 1.05rem;
    font-weight: 700;
}

.card-sub-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.78);
}

.card-arrow {
    font-size: 1.2rem;
    opacity: 0.7;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.service-card:hover .card-arrow {
    transform: translateX(5px);
    opacity: 1;
}

.footer-divider {
    border-color: var(--border);
}

.footer-note {
    font-size: 0.9rem;
}

/* ── Floating WhatsApp Button ── */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: hsl(142 70% 45%);
    color: #fff;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: hsl(142 70% 42%);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp {
    background-color: hsl(142 70% 45%);
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 36px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-whatsapp:hover {
    background-color: var(--theme);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.phone-text {
    font-size: 0.875rem;
    letter-spacing: 0.04em;
}

.fade-down {
    animation: fadeDown 0.6s ease both;
}

.fade-up-1 {
    animation: fadeUp 0.5s ease 0.10s both;
}

.fade-up-2 {
    animation: fadeUp 0.5s ease 0.20s both;
}

.fade-up-3 {
    animation: fadeUp 0.5s ease 0.30s both;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Top Nav ── */
.top-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-nav a {
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 5px;
    font-size: 1.1rem;
}

.top-nav h6 {
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
}

/* ── Price Hero ── */
.price-hero {
    text-align: center;
    padding: 48px 20px 32px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    letter-spacing: -0.02em;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.price-months {
    font-size: 1rem;
    font-weight: 600;
    color: var(--theme);
    margin-top: 4px;
}

/* ── Slider ── */
.slider-wrapper {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 20px;
}

.range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 99px;
    outline: none;
    cursor: pointer;
    background: linear-gradient(to right,
            var(--theme) 0%,
            var(--theme) var(--fill, 100%),
            #e2e8f0 var(--fill, 100%),
            #e2e8f0 100%);
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--theme);
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    cursor: pointer;
}

.range-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--theme);
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    cursor: pointer;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

/* ── Cards ── */
.section-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    max-width: 480px;
    margin: 0 auto;
}

.section-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}

/* ── Add-on rows ── */
.addon-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    cursor: pointer;
}

.addon-row+.addon-row {
    border-top: 1px solid var(--border);
}

.addon-left {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.addon-price {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Custom radio circle */
.addon-radio {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    border: 2px solid var(--theme);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}

.addon-radio.checked {
    background: var(--theme);
}

.addon-radio.checked::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}

/* ── Pickup / Delivery toggle ── */
.pickup-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.pickup-option {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 16px 12px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    background: #fff;
}

.pickup-option.active {
    border-color: var(--theme2);
    background: var(--theme-light);
}

.pickup-option i {
    font-size: 1.4rem;
    color: var(--theme);
    margin-bottom: 6px;
    display: block;
}

.pickup-option .opt-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
}

.pickup-option .opt-sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.pickup-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ── CTA Button ── */
.btn-cta {
    background: var(--theme);
    color: #fff;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 16px;
    border: none;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 4px 18px var(--theme-light);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-cta:hover {
    background: var(--theme);
    filter: brightness(1.25);
    color: #fff;
    transform: translateY(-2px);
}

/* Summary total */
.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    padding: 8px 0;
}

.total-row.grand {
    font-weight: 700;
    font-size: 1.05rem;
    border-top: 1px solid var(--border);
    padding-top: 12px;
    margin-top: 4px;
}

.total-label {
    color: var(--text-muted);
}

.total-value {
    color: var(--text-dark);
}

.total-row.grand .total-value {
    color: var(--theme);
}

/* ── Period option cards ── */
.period-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    cursor: pointer;
    background: #fff;
    position: relative;
    transition: border-color 0.15s, background 0.15s;
    margin-bottom: 18px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.period-option:last-of-type {
    margin-bottom: 0;
}

.period-option.active {
    border-color: var(--theme2);
    background: var(--theme-light);
}

.period-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.period-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.badge-best {
    position: absolute;
    top: -13px;
    right: 16px;
    background: var(--theme);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 99px;
}

/* ── Deposit card ── */
.deposit-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px 20px;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.deposit-card i {
    font-size: 1.3rem;
    color: var(--theme);
    margin-top: 2px;
    flex-shrink: 0;
}

.deposit-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.deposit-sub {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ── Free included card ── */
.free-card {
    background: var(--theme-light);
    border: 1px solid var(--theme2);
    border-radius: 16px;
    padding: 18px 20px;
    max-width: 480px;
    margin: 0 auto;
}

.free-card-title {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.free-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--theme);
    margin-bottom: 8px;
}

.free-item:last-child {
    margin-bottom: 0;
}

.free-item i {
    font-size: 1rem;
}

.period-options {
    max-width: 480px;
    margin: auto;
}

#order-summary {
    border: 1px solid var(--theme2);
    background: var(--theme-light);
}

.about-card {
    border: 1px solid var(--border);
    padding: 0 10px;
}


/* New design */

.hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 800;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 2px var(--theme-light);
    line-height: 1.2;
}

.hero-btn-1 {
    background-color: var(--theme);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.hero-btn-1:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--theme);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-btn-2 {
    background: transparent;
    color: var(--theme2);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: 8px;
    border: 2px solid var(--theme2);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.hero-btn-2:hover {
    background: var(--theme2);
    color: #fff;
    transform: translateY(-2px);
}

.btn-small {
    background: var(--theme2);
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-small:hover {
    /* background: var(--theme); */
    filter: brightness(1.25);
    color: #fff;
    text-decoration: none;
}
.about-cards{
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 1);
    padding: 16px;
}
.about-cards .icon{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--theme2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-cards i {
    font-size: 1.4rem;
    color: #fff;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Service Showcase Cards */
.service-showcase-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px; 
    overflow: hidden; 
    border: 1px solid rgba(255, 255, 255, 1);
}

.service-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
}
.service-card-bottom{
    height: calc(100% - 200px);
    display: flex;
    flex-direction: column;
}
.dark-bg{
    background: var(--theme-light);
}

/* Stat Showcase Card */
.stat-showcase-card {
    text-align: left;
    background: rgba(255, 255, 255, 0.5); 
    border-radius: 16px; 
    border: 1px solid rgba(255, 255, 255, 1);
}

.stat-showcase-card h6 {
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.4;
}

/* Testimonial */
.testimonial-card {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 1);
    position: relative;
}

.testimonial-card p {
    font-size: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.stars {
    color: #ffc107;
    font-size: 18px;
}
.quote-icon{
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.75);
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-40%, -45%);
}

/* Animations */
.fade-down {
    animation: fadeDown 0.6s ease both;
}

.fade-up-1 {
    animation: fadeUp 0.5s ease 0.1s both;
}

.fade-up-2 {
    animation: fadeUp 0.5s ease 0.2s both;
}

.fade-up-3 {
    animation: fadeUp 0.5s ease 0.3s both;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}