/* ── DRYLY — STYLES ── */

:root {
    --deep-blue: #0a1628;
    --mid-blue: #0f2347;
    --aqua: #00c4d4;
    --aqua-light: #7eeaf0;
    --aqua-dim: rgba(0, 196, 212, 0.12);
    --white: #ffffff;
    --off-white: #f4f7fb;
    --gray-100: #e8eef6;
    --gray-400: #8fa3be;
    --gray-600: #4a6380;
    --red: #e8294b;
    --red-dark: #c41f3a;
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--deep-blue);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 48px;
    background: transparent;
    transition: background 0.4s, backdrop-filter 0.4s;
}

nav.scrolled {
    background: rgba(10, 22, 40, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(0, 196, 212, 0.1);
}

.logo {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--white);
    text-decoration: none;
}

.logo span {
    color: var(--aqua);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--white);
}

.nav-cta {
    font-family: var(--font-body);
    background: var(--red);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600 !important;
    font-size: 15px !important;
    letter-spacing: 0.2px;
    transition: background 0.2s, transform 0.15s !important;
    position: relative;
    overflow: hidden;
}

.nav-cta::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.25) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-cta:hover {
    background: var(--red-dark) !important;
    transform: translateY(-1px);
}

.nav-cta:hover::after {
    opacity: 1;
}

/* ── HERO ── */
.hero {
    min-height: 130vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 48px 80px;
}

/* Wave canvas */
#waveCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.55;
    pointer-events: none;
    will-change: transform;
}

/* Radial glow */
.hero-glow {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 196, 212, 0.18) 0%, transparent 65%);
    pointer-events: none;
}

.hero-glow-2 {
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 196, 212, 0.1) 0%, transparent 65%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    will-change: transform;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--aqua-dim);
    border: 1px solid rgba(0, 196, 212, 0.3);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 32px;
    font-size: 13px;
    font-weight: 500;
    color: var(--aqua-light);
    opacity: 0;
    animation: fadeUp 0.7s 0.2s forwards;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--aqua);
    animation: pulse 2s infinite;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -2px;
    opacity: 0;
    animation: fadeUp 0.8s 0.4s forwards;
}

.hero h1 em {
    font-style: normal;
    color: var(--aqua);
    display: block;
}

.hero-sub {
    margin-top: 24px;
    max-width: 480px;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--gray-400);
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 44px;
    opacity: 0;
    animation: fadeUp 0.8s 0.8s forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--red);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.2px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 0 0 0 rgba(232, 41, 75, 0);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(232, 41, 75, 0.4);
}

/* Ripple on click */
.btn-primary .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transform: scale(0);
    animation: rippleAnim 0.6s linear;
    pointer-events: none;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--white);
    padding: 16px 28px;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.2px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-secondary:hover {
    border-color: var(--aqua);
    color: var(--aqua);
    background: var(--aqua-dim);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 64px;
    opacity: 0;
    animation: fadeUp 0.8s 1.0s forwards;
}



.stat-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
}

.stat-num span {
    color: var(--aqua);
}

.stat-label {
    font-size: 13px;
    color: var(--gray-400);
    margin-top: 2px;
    font-weight: 400;
}

.hero-visual {
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    z-index: 1;
    opacity: 0;
    animation: fadeLeft 1s 0.5s forwards;
    pointer-events: all;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    will-change: transform;
}

/* ── 3D CSS WASHING MACHINE ── */
.wm-scene {
    perspective: 800px;
    perspective-origin: 50% 50%;
    display: flex;
    justify-content: center;
}

.wm-washer-wrap {
    animation: wmFloatY 4s ease-in-out infinite;
    position: relative;
}

@keyframes wmFloatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

.wm-washer {
    width: 200px;
    height: 230px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(-10deg) rotateY(-25deg);
    transition: transform 0.3s ease;
    cursor: grab;
}

.wm-washer:active {
    cursor: grabbing;
}

.wm-face {
    position: absolute;
}

.wm-front {
    width: 200px;
    height: 230px;
    background: linear-gradient(135deg, #1a2f4a 0%, #152545 50%, #0f1e38 100%);
    transform: translateZ(100px);
    border-radius: 12px 12px 8px 8px;
    border: 2px solid rgba(0, 196, 212, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.wm-back {
    width: 200px;
    height: 230px;
    background: #0a1628;
    transform: translateZ(-100px) rotateY(180deg);
    border-radius: 12px 12px 8px 8px;
}

.wm-left {
    width: 200px;
    height: 230px;
    background: linear-gradient(90deg, #0d1e30, #152540);
    transform: rotateY(-90deg) translateZ(100px);
    border-radius: 4px;
}

.wm-right {
    width: 200px;
    height: 230px;
    background: linear-gradient(90deg, #152540, #0d1e30);
    transform: rotateY(90deg) translateZ(100px);
    border-radius: 4px;
}

.wm-top {
    width: 200px;
    height: 200px;
    background: linear-gradient(180deg, #1a2f4a, #0f2040);
    transform: rotateX(90deg) translateZ(100px);
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wm-bottom {
    width: 200px;
    height: 200px;
    background: #080f1e;
    transform: rotateX(-90deg) translateZ(130px);
}

.wm-panel {
    width: 170px;
    height: 45px;
    background: linear-gradient(180deg, #0a1e2e, #061525);
    border-radius: 6px;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 10px;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 196, 212, 0.1);
    transition: all 0.3s ease;
}

.wm-panel.wm-running {
    background: linear-gradient(180deg, #0a2e20, #061a14);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.5), 0 0 12px rgba(0, 196, 212, 0.35);
}

.wm-knob {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #8ab4d0, #2a4a6a);
    border: 2px solid rgba(0, 196, 212, 0.3);
    position: relative;
    cursor: pointer;
    animation: wmSpinKnob 3s linear infinite;
    animation-play-state: paused;
}

.wm-knob-rev {
    animation-direction: reverse;
    animation-duration: 5s;
}

.wm-knob.wm-running-anim {
    animation-play-state: running;
}

@keyframes wmSpinKnob {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.wm-knob::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 7px;
    background: var(--aqua);
    border-radius: 2px;
}

.wm-indicator {
    display: flex;
    gap: 5px;
}

.wm-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #333;
    transition: background 0.3s;
}

.wm-dot.wm-active:nth-child(1) {
    background: #00ff99;
    animation: wmBlink 1.5s ease-in-out infinite;
}

.wm-dot.wm-active:nth-child(2) {
    background: var(--aqua);
    animation: wmBlink 1.5s ease-in-out 0.3s infinite;
}

.wm-dot.wm-active:nth-child(3) {
    background: #ffcc00;
    animation: wmBlink 1.5s ease-in-out 0.6s infinite;
}

@keyframes wmBlink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

.wm-porthole-ring {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #060e1a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6), inset 0 2px 8px rgba(0, 196, 212, 0.08), 0 0 0 2px rgba(0, 196, 212, 0.15);
}

.wm-porthole {
    width: 108px;
    height: 108px;
    border-radius: 50%;
    background: radial-gradient(ellipse at 35% 30%, rgba(255, 255, 255, 0.08), transparent 60%),
        radial-gradient(ellipse at 60% 70%, rgba(0, 100, 180, 0.1), transparent 50%),
        #060d1a;
    overflow: hidden;
    position: relative;
    border: 4px solid #0d1e35;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.9);
}

.wm-drum {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    animation: wmSpin 2s linear infinite;
    animation-play-state: paused;
    transform-origin: center;
}

.wm-drum.wm-running-anim {
    animation-play-state: running;
}

@keyframes wmSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.wm-drum-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: repeating-conic-gradient(#0f2545 0deg 30deg, #142e55 30deg 60deg);
    position: relative;
}

.wm-drum-hole {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.85);
    box-shadow: inset 0 1px 2px rgba(0, 196, 212, 0.1);
}

.wm-water {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background: linear-gradient(180deg, rgba(0, 100, 180, 0.5), rgba(0, 60, 140, 0.75));
    animation: wmSlosh 1.8s ease-in-out infinite;
    animation-play-state: paused;
    border-radius: 0 0 50% 50%;
}

.wm-water.wm-running-anim {
    animation-play-state: running;
}

.wm-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wm-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 196, 212, 0.55);
    animation: wmRise linear infinite;
    animation-play-state: paused;
}

.wm-bubble.wm-running-anim {
    animation-play-state: running;
}

.wm-bubble:nth-child(1) {
    width: 4px;
    height: 4px;
    left: 20%;
    animation-duration: 1.2s;
    animation-delay: 0s;
}

.wm-bubble:nth-child(2) {
    width: 3px;
    height: 3px;
    left: 50%;
    animation-duration: 1.5s;
    animation-delay: 0.3s;
}

.wm-bubble:nth-child(3) {
    width: 5px;
    height: 5px;
    left: 70%;
    animation-duration: 1s;
    animation-delay: 0.6s;
}

.wm-bubble:nth-child(4) {
    width: 3px;
    height: 3px;
    left: 35%;
    animation-duration: 1.3s;
    animation-delay: 0.9s;
}

@keyframes wmRise {
    from {
        bottom: 5%;
        opacity: 1;
    }

    to {
        bottom: 95%;
        opacity: 0;
    }
}

@keyframes wmSlosh {

    0%,
    100% {
        transform: skewX(-3deg) scaleX(1.02);
        height: 45%;
    }

    50% {
        transform: skewX(3deg) scaleX(0.98);
        height: 42%;
    }
}

.wm-clothes {
    position: absolute;
    top: 50%;
    left: 50%;
    animation: wmTumble 2s linear infinite;
    animation-play-state: paused;
    transform-origin: center;
}

.wm-clothes.wm-running-anim {
    animation-play-state: running;
}

@keyframes wmTumble {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.wm-cloth {
    position: absolute;
    border-radius: 4px;
    opacity: 0.85;
}

.wm-glass-glare {
    position: absolute;
    top: 8%;
    left: 15%;
    width: 35%;
    height: 30%;
    background: radial-gradient(ellipse, rgba(0, 196, 212, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.wm-handle {
    width: 8px;
    height: 28px;
    background: linear-gradient(90deg, #1a3a5a, rgba(0, 196, 212, 0.5), #1a3a5a);
    border-radius: 4px;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 6px rgba(0, 196, 212, 0.2);
}

.wm-lid-door {
    position: absolute;
    width: 200px;
    height: 230px;
    background: linear-gradient(135deg, #1a2f4a 0%, #152545 50%, #0f1e38 100%);
    border-radius: 12px 12px 8px 8px;
    border: 2px solid rgba(0, 196, 212, 0.25);
    transform-style: preserve-3d;
    transform-origin: bottom center;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
    cursor: pointer;
}

.wm-lid-door.wm-closed {
    transform: rotateX(0deg);
}

.wm-lid-door.wm-open {
    transform: rotateX(-120deg);
}

.wm-top-panel-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0.3;
}

.wm-top-line {
    width: 80px;
    height: 3px;
    background: var(--aqua);
    border-radius: 2px;
}

.wm-shadow {
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 20px;
    background: radial-gradient(ellipse, rgba(0, 196, 212, 0.25), transparent 70%);
    animation: wmShadowPulse 4s ease-in-out infinite;
}

@keyframes wmShadowPulse {

    0%,
    100% {
        transform: translateX(-50%) scaleX(1);
        opacity: 0.5;
    }

    50% {
        transform: translateX(-50%) scaleX(0.85);
        opacity: 0.25;
    }
}

.wm-vent {
    position: absolute;
    width: 60px;
    height: 4px;
    background: rgba(0, 196, 212, 0.12);
    border-radius: 2px;
    left: 50%;
    transform: translateX(-50%);
}

.wm-toggle-btn {
    padding: 10px 28px;
    font-size: 12px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--font-body);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, var(--aqua), #007b8a);
    color: #0a1628;
}

.wm-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 196, 212, 0.4);
}

.wm-toggle-btn.wm-running {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.wm-toggle-btn.wm-running:hover {
    box-shadow: 0 6px 16px rgba(231, 76, 60, 0.45);
}

/* ── SERVICES ── */
.section {
    padding: 100px 48px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--aqua);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.1;
    color: var(--white);
}

.section-title span {
    color: var(--aqua);
}

.section-sub {
    margin-top: 16px;
    font-size: 17px;
    color: var(--gray-400);
    font-weight: 300;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

#services {
    background: var(--deep-blue);
}

#services .section-title {
    color: var(--white);
}

#services .section-sub {
    color: var(--gray-400);
}

#services .section-tag {
    color: var(--aqua);
}

/* Laundry-only two-column layout */
.laundry-service-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
    align-items: stretch;
}

.laundry-single-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 196, 212, 0.2);
}

.laundry-single-card .service-name {
    color: var(--white);
}

.laundry-single-card .service-desc {
    color: var(--gray-400);
}

.laundry-single-card .service-icon {
    background: linear-gradient(135deg, var(--aqua-dim), rgba(0, 196, 212, 0.2));
    border: 1px solid rgba(0, 196, 212, 0.3);
}

/* Benefits card */
.service-benefits-card {
    background: rgba(0, 196, 212, 0.06);
    border: 1px solid rgba(0, 196, 212, 0.2);
    border-radius: 20px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.benefits-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    margin-bottom: 24px;
}

.service-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    flex: 1;
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-400);
    font-weight: 400;
}

.benefit-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: rgba(0, 196, 212, 0.15);
    border: 1px solid rgba(0, 196, 212, 0.4);
    color: var(--aqua);
    font-size: 13px;
    font-weight: 800;
}

.benefits-book-btn {
    display: block;
    text-align: center;
    background: var(--aqua);
    color: var(--deep-blue);
    padding: 16px 24px;
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    border: none;
}

.benefits-book-btn:hover {
    background: var(--aqua-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(0, 196, 212, 0.4);
}

@media (max-width: 768px) {
    .laundry-service-layout {
        grid-template-columns: 1fr;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 32px;
    cursor: pointer;
    border: 1px solid var(--gray-100);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 196, 212, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(10, 22, 40, 0.12);
    border-color: rgba(0, 196, 212, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--mid-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.service-desc {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.65;
    font-weight: 400;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--mid-blue);
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: gap 0.2s, color 0.2s;
}

.service-card:hover .service-link {
    gap: 10px;
    color: var(--aqua);
}

/* ── HOW IT WORKS ── */
#how {
    background: var(--deep-blue);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 48px;
    left: calc(12.5% + 28px);
    right: calc(12.5% + 28px);
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--aqua), transparent);
    opacity: 0.3;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step:nth-child(2) {
    transition-delay: 0.15s;
}

.step:nth-child(3) {
    transition-delay: 0.3s;
}

.step:nth-child(4) {
    transition-delay: 0.45s;
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--aqua-dim);
    border: 2px solid rgba(0, 196, 212, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--aqua);
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
}

.step-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.step-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.step-desc {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.65;
    font-weight: 300;
}

/* ── PINCODE ── */
#coverage {
    background: var(--mid-blue);
}

.coverage-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.pincode-form {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 8px 8px 8px 20px;
    align-items: center;
}

.pincode-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--white);
}

.pincode-input::placeholder {
    color: var(--gray-400);
}

.pincode-btn {
    background: var(--aqua);
    color: var(--deep-blue);
    border: none;
    border-radius: 10px;
    padding: 14px 28px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

.pincode-btn:hover {
    background: var(--aqua-light);
    transform: scale(1.02);
}

.pincode-result {
    margin-top: 24px;
    padding: 20px 28px;
    border-radius: 12px;
    background: var(--aqua-dim);
    border: 1px solid rgba(0, 196, 212, 0.3);
    display: none;
    text-align: left;
}

.pincode-result.show {
    display: block;
    animation: fadeUp 0.4s forwards;
}

.pincode-result-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    color: var(--aqua);
    margin-bottom: 6px;
}

.pincode-result-detail {
    font-size: 14px;
    color: var(--gray-400);
}

/* ── PRICING ── */
#pricing {
    background: var(--off-white);
}

#pricing .section-title {
    color: var(--deep-blue);
}

#pricing .section-sub {
    color: var(--gray-600);
}

#pricing .section-tag {
    color: var(--mid-blue);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 960px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    border: 1px solid var(--gray-100);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(10, 22, 40, 0.1);
}

.pricing-card.featured {
    background: var(--deep-blue);
    border-color: var(--aqua);
    transform: scale(1.04);
}

.pricing-card.featured:hover {
    transform: scale(1.04) translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 196, 212, 0.2);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--aqua);
    color: var(--deep-blue);
    padding: 6px 18px;
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.plan-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 16px;
}

.pricing-card.featured .plan-name {
    color: var(--aqua);
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-600);
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 14px;
}

.pricing-card.featured .plan-price {
    color: rgba(255, 255, 255, 0.7);
}

.plan-price span {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--deep-blue);
    letter-spacing: -2px;
}

.pricing-card.featured .plan-price span {
    color: var(--white);
}

.plan-desc {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.65;
    font-weight: 400;
    margin-bottom: 16px;
    flex: 1;
}

.pricing-card.featured .plan-desc {
    color: var(--gray-400);
}

/* Delivery badge inside card */
.plan-delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 196, 212, 0.1);
    border: 1px solid rgba(0, 196, 212, 0.3);
    color: #007a85;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
    width: fit-content;
}

.plan-delivery-badge.featured-badge {
    background: rgba(0, 196, 212, 0.15);
    border-color: rgba(0, 196, 212, 0.5);
    color: var(--aqua-light);
}

.plan-cta {
    display: block;
    text-align: center;
    background: var(--deep-blue);
    color: var(--white);
    padding: 14px;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    width: 100%;
    margin-top: auto;
}

.plan-cta:hover {
    background: var(--mid-blue);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(10, 22, 40, 0.2);
}

.pricing-card.featured .plan-cta {
    background: var(--red);
}

.pricing-card.featured .plan-cta:hover {
    background: var(--red-dark);
    box-shadow: 0 8px 24px rgba(232, 41, 75, 0.35);
}

/* ── SLAB PRICING STRIP ── */
.slab-strip {
    max-width: 860px;
    margin: 48px auto 0;
    background: rgba(10, 22, 40, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 196, 212, 0.18);
    border-radius: 18px;
    padding: 24px 36px;
    display: flex;
    align-items: center;
    gap: 28px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slab-strip.visible {
    opacity: 1;
    transform: translateY(0);
}

.slab-strip-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mid-blue);
    opacity: 0.7;
    white-space: nowrap;
    flex-shrink: 0;
}

.slab-strip-items {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: space-around;
    flex-wrap: wrap;
    row-gap: 12px;
}

.slab-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 4px;
}

.slab-kg {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--deep-blue);
    letter-spacing: 0.3px;
}

.slab-sep {
    font-size: 12px;
    color: var(--gray-400);
    opacity: 0.6;
}

.slab-price {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: var(--mid-blue);
    letter-spacing: -0.3px;
}

.slab-divider {
    width: 1px;
    height: 28px;
    background: rgba(0, 196, 212, 0.25);
    flex-shrink: 0;
    margin: 0 4px;
}

/* Responsive: pricing grid */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .pricing-card.featured {
        transform: scale(1);
        order: -1;
    }

    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }

    .slab-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 20px 24px;
    }

    .slab-strip-label {
        margin-bottom: 0;
    }

    .slab-strip-items {
        justify-content: flex-start;
        gap: 8px;
        row-gap: 10px;
    }

    .slab-divider {
        width: 1px;
        height: 20px;
        margin: 0 2px;
    }
}

/* ── SCHEDULE FORM ── */
#schedule {
    background: var(--deep-blue);
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.schedule-left .section-header {
    text-align: left;
}

.form-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--gray-400);
}

.form-control {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--white);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
}

.form-control:focus {
    border-color: var(--aqua);
    background: rgba(0, 196, 212, 0.05);
}

.form-control::placeholder {
    color: var(--gray-600);
}

.form-control option {
    background: var(--deep-blue);
}

/* Package selector dropdown */
.pkg-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%2300c4d4' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.pkg-select:focus {
    border-color: var(--aqua);
    background-color: rgba(0, 196, 212, 0.05);
    box-shadow: 0 0 0 3px rgba(0, 196, 212, 0.12);
}

/* Dynamic pricing info card */
.pkg-price-card {
    background: rgba(0, 196, 212, 0.07);
    border: 1px solid rgba(0, 196, 212, 0.22);
    border-radius: 14px;
    padding: 0 18px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    /* hidden by default */
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.28s ease 0.05s,
                transform 0.28s ease 0.05s,
                padding 0.30s ease;
}

.pkg-price-card.visible {
    max-height: 160px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    padding: 16px 18px 14px;
}

.pkg-price-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-400);
}

.pkg-price-amount {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--aqua);
    letter-spacing: -1.5px;
    line-height: 1.1;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.pkg-price-amount.updating {
    opacity: 0;
    transform: translateY(4px);
}

.pkg-delivery-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(0, 196, 212, 0.12);
    border: 1px solid rgba(0, 196, 212, 0.28);
    color: var(--aqua-light);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 100px;
    width: fit-content;
    margin-top: 2px;
}

.pkg-hint-text {
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 400;
    margin-top: 2px;
    min-height: 16px;
}

.pkg-disclaimer {
    font-size: 11px;
    color: var(--gray-600);
    font-weight: 400;
    font-style: italic;
    margin-top: 2px;
}

/* Delivery method radio group */
.delivery-method-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.delivery-option {
    cursor: pointer;
}

.delivery-option input[type="radio"] {
    display: none;
}

.delivery-option-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 16px 12px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    text-align: center;
    transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
}

.delivery-option-box:hover {
    border-color: rgba(0, 196, 212, 0.35);
    background: rgba(0, 196, 212, 0.06);
}

.delivery-option input[type="radio"]:checked + .delivery-option-box {
    border-color: var(--aqua);
    background: var(--aqua-dim);
    box-shadow: 0 0 0 1px rgba(0, 196, 212, 0.3);
}

.delivery-icon {
    font-size: 22px;
    margin-bottom: 2px;
}

.delivery-label {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.1px;
}

.delivery-sublabel {
    font-size: 11px;
    color: var(--gray-400);
    font-weight: 400;
}


.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.time-slot {
    padding: 10px 8px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-400);
    transition: all 0.2s;
    background: transparent;
}

.time-slot:hover,
.time-slot.selected {
    border-color: var(--aqua);
    color: var(--aqua);
    background: var(--aqua-dim);
}

/* ── COLLAPSIBLE FORM FIELD GROUP (address, date) ── */
.form-field-collapsible {
    overflow: hidden;
    max-height: 120px;
    opacity: 1;
    transform: translateY(0);
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.28s ease,
                transform 0.28s ease;
}

.form-field-collapsible.hidden {
    max-height: 0 !important;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    margin-bottom: 0;
}

/* ── TIME SLOT SECTION — animated show/hide ── */
.time-slot-section {
    overflow: hidden;
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.28s ease,
                transform 0.28s ease;
}

.time-slot-section.hidden {
    max-height: 0;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
}

/* Helper text under time slots */
.time-slot-helper {
    margin-top: 10px;
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 400;
    letter-spacing: 0.1px;
    opacity: 0.85;
}

/* ── DROP-OFF BLOCK ── */
.dropoff-hint {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-radius: 12px;
    background: rgba(0, 196, 212, 0.06);
    border: 1px solid rgba(0, 196, 212, 0.2);
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 400;
    letter-spacing: 0.1px;
    margin-bottom: 4px;
    padding: 0;
    /* hidden by default — animate via max-height */
    max-height: 0;
    opacity: 0;
    transform: translateY(6px);
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.42s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.30s ease 0.06s,
                transform 0.30s ease 0.06s,
                padding 0.30s ease;
}

.dropoff-hint.visible {
    max-height: 380px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    margin-bottom: 20px;
    padding: 14px 16px 16px;
}

/* Hours row (top row inside the block) */
.dropoff-hours-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropoff-hint strong {
    color: var(--aqua-light);
    font-weight: 600;
}

.dropoff-hint-icon {
    font-size: 18px;
    flex-shrink: 0;
}

/* ── LOCATION CARD ── */
.dropoff-location-card {
    display: flex;
    gap: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

/* Minimal map preview */
.dropoff-map-preview {
    position: relative;
    width: 100px;
    min-width: 100px;
    background: #0d1e33;
    overflow: hidden;
    flex-shrink: 0;
}

/* Subtle grid lines mimicking a map tile */
.map-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,196,212,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,196,212,0.07) 1px, transparent 1px);
    background-size: 18px 18px;
}

/* Road lines */
.map-road {
    position: absolute;
    background: rgba(255,255,255,0.07);
    border-radius: 2px;
}
.map-road-h {
    left: 0; right: 0;
    top: 50%;
    height: 6px;
    transform: translateY(-50%);
}
.map-road-v {
    top: 0; bottom: 0;
    left: 42%;
    width: 6px;
}

/* Pin */
.map-pin-wrap {
    position: absolute;
    top: 50%;
    left: 42%;
    transform: translate(-50%, -90%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-pin-svg {
    width: 22px;
    height: 29px;
    filter: drop-shadow(0 2px 6px rgba(0,196,212,0.5));
}

/* Pulsing ring around the pin */
.map-pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0,196,212,0.18);
    animation: mapPinPulse 2s ease-out infinite;
}

@keyframes mapPinPulse {
    0%   { transform: translate(-50%, -30%) scale(0.5); opacity: 0.8; }
    70%  { transform: translate(-50%, -30%) scale(1.4); opacity: 0; }
    100% { transform: translate(-50%, -30%) scale(1.4); opacity: 0; }
}

/* Store info panel */
.dropoff-store-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 14px 14px 14px 0;
    flex: 1;
    min-width: 0;
}

.dropoff-store-name {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.2px;
    line-height: 1.2;
}

.dropoff-store-address {
    font-size: 11.5px;
    color: var(--gray-400);
    line-height: 1.55;
    font-weight: 400;
}

/* Google Maps CTA */
.dropoff-maps-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    padding: 7px 13px;
    border-radius: 7px;
    background: rgba(0, 196, 212, 0.14);
    border: 1px solid rgba(0, 196, 212, 0.35);
    color: var(--aqua);
    font-family: var(--font-display);
    font-size: 11.5px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: background 0.2s, border-color 0.2s, transform 0.15s, box-shadow 0.2s;
    align-self: flex-start;
    white-space: nowrap;
}

.dropoff-maps-btn:hover {
    background: rgba(0, 196, 212, 0.25);
    border-color: var(--aqua);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0,196,212,0.2);
}

/* Mobile — stack map above info */
@media (max-width: 480px) {
    .dropoff-location-card {
        flex-direction: column;
    }
    .dropoff-map-preview {
        width: 100%;
        height: 80px;
    }
    .dropoff-store-info {
        padding: 12px 14px;
    }
}



.form-submit {
    width: 100%;
    padding: 18px;
    background: var(--red);
    border: none;
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
}

.form-submit:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(232, 41, 75, 0.4);
}

/* ── TESTIMONIALS ── */
#testimonials {
    background: var(--off-white);
}

#testimonials .section-title {
    color: var(--deep-blue);
}

#testimonials .section-sub {
    color: var(--gray-600);
}

#testimonials .section-tag {
    color: var(--mid-blue);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--gray-100);
    transition: transform 0.3s, box-shadow 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(10, 22, 40, 0.08);
}

.stars {
    color: #f5a623;
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 24px;
    font-weight: 300;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--deep-blue), var(--aqua));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
}

.author-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--deep-blue);
}

.author-area {
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 2px;
}

/* ── FOOTER ── */
footer {
    background: #060e1b;
    padding: 70px 48px 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand .logo {
    font-size: 28px;
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.7;
    max-width: 260px;
    font-weight: 300;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    color: var(--gray-400);
    transition: all 0.2s;
}

.social-btn:hover {
    background: var(--aqua-dim);
    border-color: rgba(0, 196, 212, 0.4);
    color: var(--aqua);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--gray-400);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--aqua);
}

.footer-address {
    font-size: 13px;
    color: var(--gray-400);
    line-height: 1.6;
    margin-bottom: 16px;
    font-weight: 300;
}

.footer-address strong {
    color: var(--white);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--gray-600);
}

.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 200;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 26px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translate(40px, -50%);
    }

    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0px);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-18px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ── MOBILE ── */
@media (max-width: 900px) {
    nav {
        padding: 18px 24px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .hero h1 {
        font-size: 52px;
    }

    .hero-visual {
        display: none !important;
    }

    .hero-visual canvas {
        display: none;
    }

    .hero-stats {
        gap: 24px;
    }

    .section {
        padding: 70px 24px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid::before {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }

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

    .pricing-card.featured:hover {
        transform: translateY(-6px);
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

/* ── KEYFRAMES ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(60px) translateY(-50%);
    }

    to {
        opacity: 1;
        transform: translateX(0) translateY(-50%);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

@keyframes rippleAnim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ── SERVICE CARD — button style fix ── */
.service-card {
    cursor: pointer;
}

button.service-link {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--mid-blue);
    letter-spacing: 0.2px;
    transition: gap 0.2s, color 0.2s;
    font-family: var(--font-body);
}

.service-card:hover button.service-link {
    gap: 10px;
    color: var(--aqua);
}

/* ── PRICING — service cards layout ── */
.svc-price-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.plan-desc {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 32px;
    flex: 1;
}

.pricing-card.featured .plan-desc {
    color: var(--gray-400);
}

.plan-price small {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--gray-400);
}

.pricing-card.featured .plan-price small {
    color: var(--aqua-light);
}

/* Make pricing cards flex-column so CTA sticks to bottom */
.pricing-card {
    display: flex;
    flex-direction: column;
}

/* Override plan-cta to be a button */
button.plan-cta {
    display: block;
    width: 100%;
    text-align: center;
    border: none;
    cursor: pointer;
    background: var(--deep-blue);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    margin-top: auto;
}

button.plan-cta:hover {
    background: var(--mid-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 196, 212, 0.2);
}

.pricing-card.featured button.plan-cta {
    background: var(--aqua);
    color: var(--deep-blue);
}

.pricing-card.featured button.plan-cta:hover {
    background: var(--aqua-light);
    box-shadow: 0 8px 28px rgba(0, 196, 212, 0.45);
}

/* Pricing card hover — cyan glow */
.pricing-card:hover {
    box-shadow: 0 20px 50px rgba(0, 196, 212, 0.14);
}

.pricing-card.featured:hover {
    box-shadow: 0 24px 60px rgba(0, 196, 212, 0.32);
}

/* ── SERVICE MODAL OVERLAY ── */
.svc-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(5, 12, 24, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.svc-modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.svc-modal-card {
    background: linear-gradient(160deg, #0f2040 0%, #0a1628 100%);
    border: 1px solid rgba(0, 196, 212, 0.18);
    border-radius: 20px;
    padding: 44px 48px;
    max-width: 680px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.svc-modal-overlay.open .svc-modal-card {
    transform: scale(1);
}

.svc-modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.2s;
}

.svc-modal-close:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: rotate(90deg);
}

.svc-modal-icon {
    font-size: 52px;
    margin-bottom: 12px;
}

.svc-modal-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 28px;
}

.svc-modal-section {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.svc-modal-section:last-of-type {
    border-bottom: none;
}

.svc-modal-section-title {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--aqua);
    margin-bottom: 10px;
}

.svc-modal-text {
    font-size: 15px;
    color: var(--gray-400);
    line-height: 1.72;
    font-weight: 300;
}

/* Image gallery */
.svc-modal-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.svc-img-placeholder {
    background: linear-gradient(135deg, #1a2f4a 0%, #0f2040 100%);
    border: 1px solid rgba(0, 196, 212, 0.15);
    border-radius: 12px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
    overflow: hidden;
}

.svc-img-placeholder:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(0, 196, 212, 0.15);
    border-color: rgba(0, 196, 212, 0.35);
}

.svc-img-placeholder span {
    font-size: 28px;
}

.svc-img-placeholder p {
    font-size: 11px;
    color: var(--gray-400);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Book Now CTA inside modal */
.svc-modal-book-btn {
    display: block;
    width: 100%;
    margin-top: 32px;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--aqua), #007b8a);
    color: var(--deep-blue);
    border: none;
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.2px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.svc-modal-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(0, 196, 212, 0.4);
}

/* ── MODAL RESPONSIVE ── */
/* ── TABLET (≤ 768px) ── */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }

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

    .schedule-left {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .hero-visual {
        display: none;
    }

    /* Booking Form Mobile Responsiveness (max-width: 768px) */
    .form-card {
        padding: 24px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-field-collapsible {
        max-height: 250px;
    }

    .delivery-option-box {
        padding: 12px 8px;
    }

    .delivery-label {
        font-size: 12px;
    }

    .delivery-sublabel {
        font-size: 10px;
    }

    .time-slots {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

/* ── MOBILE (≤ 480px) ── */
@media (max-width: 480px) {

    /* Nav */
    .nav-links a:not(.nav-cta) {
        display: none;
    }

    /* Hero */
    .hero {
        padding: 100px 20px 60px;
        min-height: 100vh;
    }

    .hero h1 {
        font-size: clamp(36px, 11vw, 52px);
        letter-spacing: -1px;
        word-break: break-word;
    }

    .hero-sub {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-top: 32px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        gap: 24px;
        margin-top: 40px;
    }

    .stat-num {
        font-size: 28px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Coverage / Pincode */
    .pincode-form {
        flex-direction: column;
        gap: 12px;
    }

    .pincode-input {
        width: 100%;
        min-width: unset;
    }

    .pincode-btn {
        width: 100%;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    /* Steps */
    .steps-grid {
        grid-template-columns: 1fr;
    }

    /* Form stacked layout now handled under max-width 768px */

    /* Sections */
    .section {
        padding: 64px 20px;
    }

    .section-title {
        font-size: clamp(32px, 9vw, 48px);
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ── MODAL (≤ 600px) — preserved from earlier ── */
@media (max-width: 600px) {
    .svc-modal-card {
        padding: 28px 22px;
    }

    .svc-modal-gallery {
        grid-template-columns: 1fr;
    }

    .svc-img-placeholder {
        height: 80px;
    }

    .svc-modal-title {
        font-size: 24px;
    }
}

/* ── MOBILE UX IMPROVEMENTS ── */
@media (max-width: 768px) {
    .main-content {
        display: flex;
        flex-direction: column;
    }

    #home {
        order: 1;
    }

    #schedule {
        order: 2;
    }

    #services {
        order: 3;
    }

    #how {
        order: 4;
    }

    #coverage {
        order: 5;
    }

    #pricing {
        order: 6;
    }

    #testimonials {
        order: 7;
    }

    .mobile-book-sticky {
        display: flex;
    }

    /* Ensure the body has padding at the bottom for the sticky button so content isn't hidden */
    body {
        padding-bottom: 60px;
    }
}

.mobile-book-sticky {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--red);
    color: var(--white);
    padding: 16px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    z-index: 150;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.2px;
}

/* ── CUSTOM IN-APP MODAL STYLING ── */
.custom-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 3000;
    background: rgba(5, 12, 24, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.custom-modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.custom-modal-card {
    background: linear-gradient(160deg, rgba(15, 35, 71, 0.88) 0%, rgba(10, 22, 40, 0.98) 100%);
    border: 1px solid rgba(0, 196, 212, 0.16);
    border-radius: 24px;
    padding: 40px;
    max-width: 460px;
    width: 100%;
    position: relative;
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
    box-shadow: 0 0 50px rgba(0, 196, 212, 0.1), 0 30px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.custom-modal-overlay.open .custom-modal-card {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Card State Glows */
.custom-modal-card.success-state {
    border-color: rgba(0, 196, 212, 0.3);
    box-shadow: 0 0 60px rgba(0, 196, 212, 0.16), 0 30px 60px rgba(0, 0, 0, 0.6);
}

.custom-modal-card.error-state {
    border-color: rgba(232, 41, 75, 0.35);
    box-shadow: 0 0 60px rgba(232, 41, 75, 0.16), 0 30px 60px rgba(0, 0, 0, 0.6);
}

.custom-modal-card.warning-state {
    border-color: rgba(255, 166, 0, 0.35);
    box-shadow: 0 0 60px rgba(255, 166, 0, 0.16), 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* Close Button */
.custom-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--gray-400);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.custom-modal-close:hover {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    transform: rotate(90deg);
}

/* Icon / SVG Animations */
.custom-modal-icon-container {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Success Checkmark SVG */
.success-checkmark-svg {
    width: 72px;
    height: 72px;
}

.success-checkmark-svg .circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3.5;
    stroke-miterlimit: 10;
    stroke: var(--aqua);
    fill: none;
    animation: modal-stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-checkmark-svg .check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 3.5;
    stroke: var(--white);
    fill: none;
    animation: modal-stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.5s forwards;
}

/* Error Cross SVG */
.error-cross-svg {
    width: 72px;
    height: 72px;
}

.error-cross-svg .circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3.5;
    stroke: var(--red);
    fill: none;
    animation: modal-stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.error-cross-svg .line1 {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    stroke-width: 3.5;
    stroke: var(--white);
    fill: none;
    animation: modal-stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.4s forwards;
}

.error-cross-svg .line2 {
    stroke-dasharray: 40;
    stroke-dashoffset: 40;
    stroke-width: 3.5;
    stroke: var(--white);
    fill: none;
    animation: modal-stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.55s forwards;
}

/* Warning Triangle SVG */
.warning-icon-svg {
    width: 72px;
    height: 72px;
}

.warning-icon-svg .triangle {
    stroke-dasharray: 240;
    stroke-dashoffset: 240;
    stroke-width: 3.5;
    stroke: #ffa600;
    fill: none;
    animation: modal-stroke 0.8s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.warning-icon-svg .exclamation {
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    stroke-width: 3.5;
    stroke: var(--white);
    fill: none;
    animation: modal-stroke 0.4s ease-out 0.6s forwards;
}

@keyframes modal-stroke {
    to {
        stroke-dashoffset: 0;
    }
}

/* Modal Title */
.custom-modal-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--white);
    margin-bottom: 12px;
}

/* Modal Message Body */
.custom-modal-body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-400);
    margin-bottom: 24px;
    font-weight: 300;
}

.custom-modal-body strong {
    color: var(--white);
    font-weight: 600;
}

/* Booking Details Box */
.custom-modal-details {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px 20px;
    margin: 24px 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.modal-detail-row .detail-label {
    color: var(--gray-400);
    font-weight: 400;
}

.modal-detail-row .detail-value {
    color: var(--white);
    font-weight: 600;
}

/* Modal Actions Layout */
.custom-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.custom-modal-actions.row-layout {
    flex-direction: row;
}

.custom-modal-actions.row-layout button {
    flex: 1;
}

/* Modal Buttons */
.modal-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--aqua), #009eb0);
    color: var(--deep-blue);
    padding: 14px 24px;
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    letter-spacing: 0.2px;
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.2s;
    text-decoration: none;
}

.modal-btn-primary:hover {
    transform: translateY(-1.5px);
    box-shadow: 0 8px 24px rgba(0, 196, 212, 0.35);
}

.custom-modal-card.error-state .modal-btn-primary {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
}

.custom-modal-card.error-state .modal-btn-primary:hover {
    box-shadow: 0 8px 24px rgba(232, 41, 75, 0.35);
}

.custom-modal-card.warning-state .modal-btn-primary {
    background: linear-gradient(135deg, #ffa600, #d98d00);
    color: var(--deep-blue);
}

.custom-modal-card.warning-state .modal-btn-primary:hover {
    box-shadow: 0 8px 24px rgba(255, 166, 0, 0.35);
}

.modal-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--gray-400);
    padding: 13px 24px;
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.modal-btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
}

/* ── BUTTON PROCESSING LOADER ── */
.form-submit.processing {
    pointer-events: none;
    opacity: 0.85;
    background: var(--gray-600) !important;
    transform: none !important;
    box-shadow: none !important;
}

.form-submit-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: btn-spin-anim 0.6s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes btn-spin-anim {
    to {
        transform: rotate(360deg);
    }
}

/* Mobile adjustments for modals */
@media (max-width: 480px) {
    .custom-modal-card {
        padding: 32px 24px;
    }
    
    .custom-modal-title {
        font-size: 20px;
    }
    
    .custom-modal-body {
        font-size: 14px;
    }
}