/* ============================================
   OKYANUS HALI YIKAMA - Site Styles
   Inspired by business card design
   ============================================ */

:root {
    --hy-primary:    #003F8A;   /* deep navy blue - card main color */
    --hy-primary-dk: #002d66;   /* darker navy */
    --hy-primary-lt: #deeeff;   /* light blue tint */
    --hy-accent:     #00AEEF;   /* bright cyan wave */
    --hy-accent-dk:  #0090cc;
    --hy-dark:       #001a40;   /* deep sea dark */
    --hy-text:       #1a2e4a;
    --hy-muted:      #5a7490;
    --hy-light:      #f0f8ff;
    --hy-border:     #c8dff5;
    --hy-success:    #10b981;
    --hy-stripe1:    #e53e3e;   /* red stripe - card accent */
    --hy-stripe2:    #ed8936;   /* orange stripe */
    --hy-stripe3:    #805ad5;   /* purple stripe */
    --hy-radius:     14px;
    --hy-shadow:     0 4px 24px rgba(0,63,138,0.12);
    --hy-shadow-lg:  0 8px 40px rgba(0,63,138,0.22);
}

/* ---- Base ---- */
* { box-sizing: border-box; }

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--hy-text);
    background: #fff;
    margin: 0;
}

/* ============================================
   NAVBAR
   ============================================ */
.hy-navbar {
    background: #fff !important;
    border-bottom: 2px solid var(--hy-primary-lt);
    padding: 12px 0;
    transition: box-shadow 0.3s;
}

.hy-navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0,63,138,0.13);
}

/* Color stripe under navbar - card inspired */
.hy-navbar::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
        var(--hy-stripe1) 0%, var(--hy-stripe1) 33%,
        var(--hy-stripe2) 33%, var(--hy-stripe2) 66%,
        var(--hy-stripe3) 66%, var(--hy-stripe3) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.hy-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.4rem;
    color: var(--hy-dark) !important;
    letter-spacing: -0.5px;
}

.brand-icon { font-size: 1.6rem; }
.brand-text { color: var(--hy-dark); }
.brand-accent { color: var(--hy-primary); }

.hy-nav-link {
    font-weight: 600;
    color: var(--hy-text) !important;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.hy-nav-link:hover {
    color: var(--hy-primary) !important;
    background: var(--hy-primary-lt);
}

/* ============================================
   BUTTONS
   ============================================ */
.hy-btn-primary {
    background: linear-gradient(135deg, var(--hy-primary), var(--hy-accent-dk));
    color: #fff !important;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    padding: 11px 26px;
    transition: transform 0.15s, box-shadow 0.2s, opacity 0.2s;
    text-decoration: none;
    letter-spacing: 0.2px;
}

.hy-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,63,138,0.38);
    color: #fff !important;
    opacity: 0.93;
}

.hy-btn-outline {
    background: transparent;
    color: var(--hy-primary) !important;
    border: 2.5px solid var(--hy-primary);
    border-radius: 10px;
    font-weight: 700;
    padding: 10px 26px;
    transition: all 0.2s;
    text-decoration: none;
}

.hy-btn-outline:hover {
    background: var(--hy-primary);
    color: #fff !important;
    transform: translateY(-2px);
}

/* ============================================
   HERO  — card-inspired: deep blue + wave
   ============================================ */
.hy-hero {
    position: relative;
    background: linear-gradient(140deg, #001a40 0%, #003F8A 55%, #0070c0 100%);
    min-height: 92vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

/* Wave SVG overlay */
.hy-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 75% 15%, rgba(0,174,239,0.22) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 85%, rgba(0,63,138,0.30) 0%, transparent 55%);
    pointer-events: none;
}

/* Big wave watermark - card style */
.hy-hero::after {
    content: '';
    position: absolute;
    right: -5%;
    bottom: -8%;
    width: 65%;
    height: 110%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 500'%3E%3Cellipse cx='380' cy='320' rx='280' ry='200' fill='rgba(0,174,239,0.08)'/%3E%3Cellipse cx='420' cy='260' rx='220' ry='160' fill='rgba(0,174,239,0.06)'/%3E%3Ccircle cx='500' cy='150' r='80' fill='rgba(0,174,239,0.05)'/%3E%3Ccircle cx='300' cy='380' r='40' fill='rgba(0,174,239,0.07)'/%3E%3C/svg%3E") no-repeat center / contain;
    pointer-events: none;
}

/* Left color stripe - card inspired */
.hy-hero .hero-stripe {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg,
        var(--hy-stripe1) 0%,
        var(--hy-stripe2) 50%,
        var(--hy-stripe3) 100%);
}

.min-vh-hero { min-height: 72vh; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0,174,239,0.15);
    border: 1px solid rgba(0,174,239,0.40);
    color: #7dd6f7;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 18px 0;
    text-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.hero-accent {
    color: var(--hy-accent);
}

.hero-subtitle {
    font-size: 1.12rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.75;
    font-weight: 400;
}

/* Service pills in hero area */
.hero-services {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-service-pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    color: rgba(255,255,255,0.90);
    font-size: 0.84rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 50px;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
}

.hero-service-pill:hover {
    background: rgba(255,255,255,0.18);
}

.hero-service-pill i {
    font-size: 0.9rem;
    color: var(--hy-accent);
}

/* ============================================
   STATS BAR
   ============================================ */
.hy-stats {
    background: var(--hy-primary);
    padding: 0;
    border-bottom: 3px solid var(--hy-accent);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 22px 16px;
    border-right: 1px solid rgba(255,255,255,0.12);
}

.stat-item:last-child { border-right: none; }

.stat-number {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.stat-label {
    font-size: 0.80rem;
    color: rgba(255,255,255,0.70);
    margin-top: 5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   SECTIONS
   ============================================ */
.hy-section {
    padding: 80px 0;
}

.section-badge {
    display: inline-block;
    background: var(--hy-primary-lt);
    color: var(--hy-primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    border: 1px solid rgba(0,63,138,0.15);
}

.section-badge.light {
    background: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.92);
    border-color: rgba(255,255,255,0.20);
}

.section-title {
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    font-weight: 900;
    color: var(--hy-dark);
    letter-spacing: -0.8px;
    margin-top: 10px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--hy-muted);
    max-width: 520px;
    margin: 10px auto 0;
    line-height: 1.65;
}

/* ============================================
   CARDS
   ============================================ */
.hy-card {
    background: #fff;
    border: 1.5px solid var(--hy-border);
    border-radius: var(--hy-radius);
    padding: 32px;
    box-shadow: var(--hy-shadow);
}

/* Calculator Card */
.calc-card { padding: 36px; }

/* ============================================
   SERVICE CARDS  — card-style icons
   ============================================ */
.service-card {
    background: #fff;
    border: 1.5px solid var(--hy-border);
    border-radius: var(--hy-radius);
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* top accent line */
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--hy-border);
    border-radius: var(--hy-radius) var(--hy-radius) 0 0;
    transition: background 0.25s;
}

.service-card--main::before {
    background: linear-gradient(90deg, var(--hy-primary), var(--hy-accent));
}

.service-card--extra::before {
    background: linear-gradient(90deg, var(--hy-stripe2), var(--hy-stripe1));
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hy-shadow-lg);
    border-color: var(--hy-primary);
}

.service-card:hover::before {
    background: linear-gradient(90deg, var(--hy-primary), var(--hy-accent));
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0,63,138,0.15));
}

.service-card h5 {
    font-weight: 800;
    color: var(--hy-dark);
    margin-bottom: 10px;
    font-size: 1.05rem;
    letter-spacing: -0.3px;
}

.service-card p {
    color: var(--hy-muted);
    font-size: 0.92rem;
    margin: 0 0 14px;
    line-height: 1.6;
}

.service-tag {
    display: inline-block;
    background: var(--hy-primary-lt);
    color: var(--hy-primary);
    font-size: 0.76rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.service-tag--extra {
    background: #fff3e0;
    color: #c05621;
}

.service-tag--free {
    background: #d1fae5;
    color: #065f46;
}

/* Service Detail Cards */
.service-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.service-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--hy-shadow-lg);
}

.service-detail-icon {
    font-size: 2.6rem;
    flex-shrink: 0;
    line-height: 1;
}

.service-detail-card h4 {
    font-weight: 800;
    color: var(--hy-dark);
    margin-bottom: 6px;
}

.service-detail-card p {
    color: var(--hy-muted);
    margin-bottom: 10px;
}

.service-price-tag {
    display: inline-block;
    background: var(--hy-primary-lt);
    color: var(--hy-primary);
    font-size: 0.80rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
}

/* Services note box */
.services-note {
    background: var(--hy-primary-lt);
    border: 1px solid rgba(0,63,138,0.15);
    border-left: 4px solid var(--hy-primary);
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 0.92rem;
    color: var(--hy-text);
}

/* ============================================
   WHY CARDS
   ============================================ */
.hy-why-section {
    background: var(--hy-light);
}

.why-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--hy-radius);
    border: 1.5px solid var(--hy-border);
    background: #fff;
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--hy-shadow-lg);
}

.why-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--hy-primary-lt), #c8e8ff);
    color: var(--hy-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
    box-shadow: 0 4px 14px rgba(0,63,138,0.15);
}

.why-card h5 {
    font-weight: 800;
    color: var(--hy-dark);
    margin-bottom: 8px;
}

.why-card p {
    color: var(--hy-muted);
    font-size: 0.93rem;
    margin: 0;
    line-height: 1.65;
}

/* ============================================
   CALCULATOR INPUTS
   ============================================ */
.hy-label {
    display: block;
    font-size: 0.87rem;
    font-weight: 700;
    color: var(--hy-text);
    margin-bottom: 8px;
}

.hy-input {
    width: 100%;
    border: 1.5px solid var(--hy-border);
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 0.97rem;
    color: var(--hy-text);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    font-family: inherit;
}

.hy-input:focus {
    border-color: var(--hy-primary);
    box-shadow: 0 0 0 3px rgba(0,63,138,0.12);
}

.hy-textarea {
    resize: vertical;
    min-height: 80px;
}

/* Counter Input */
.counter-input {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--hy-border);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.counter-btn {
    background: var(--hy-light);
    border: none;
    color: var(--hy-primary);
    font-size: 0.85rem;
    padding: 11px 16px;
    cursor: pointer;
    transition: background 0.15s;
    line-height: 1;
}

.counter-btn:hover { background: var(--hy-primary-lt); }

.counter-value {
    flex: 1;
    border: none;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--hy-dark);
    outline: none;
    padding: 8px 4px;
    -moz-appearance: textfield;
    font-family: inherit;
}

.counter-value::-webkit-outer-spin-button,
.counter-value::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Input with unit */
.input-with-unit { position: relative; }
.input-with-unit .hy-input { padding-right: 42px; }
.input-unit {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--hy-muted);
    pointer-events: none;
}

/* Calc card header */
.calc-card-title {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1.5px solid var(--hy-border);
    margin-bottom: 4px;
}

.calc-card-icon { font-size: 2rem; }

/* ── Calc Result Bar ── */
.calc-result-bar {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--hy-dark), var(--hy-primary));
    border-radius: 14px;
    padding: 20px 28px;
    flex-wrap: wrap;
    gap: 16px;
    box-shadow: 0 4px 18px rgba(0,63,138,0.25);
}

.result-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 100px;
    text-align: center;
}

.result-label {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.60);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-value {
    font-size: 1.35rem;
    font-weight: 900;
    color: #fff;
}

.result-price { color: var(--hy-accent) !important; }

.result-divider {
    width: 1px;
    background: rgba(255,255,255,0.15);
    align-self: stretch;
    min-height: 40px;
}

/* Direct m² input */
.sqm-input-wrapper {
    position: relative;
}

.sqm-big-input {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    padding: 14px 50px 14px 18px !important;
}

.sqm-unit-badge {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--hy-primary);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: 6px;
}

.sqm-hint {
    font-size: 0.83rem;
    color: var(--hy-muted);
    line-height: 1.6;
}

.sqm-result-box {
    background: var(--hy-light);
    border: 1.5px solid var(--hy-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s;
}

.sqm-result-box--active {
    border-color: var(--hy-primary);
    box-shadow: 0 0 0 3px rgba(0,63,138,0.08);
}

.sqm-result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
}

.sqm-result-label { font-size: 0.88rem; color: var(--hy-muted); font-weight: 600; }
.sqm-result-val   { font-weight: 700; color: var(--hy-dark); }

.sqm-result-divider {
    height: 1px;
    background: var(--hy-border);
}

.sqm-total-row { background: #fff; }
.sqm-total-price {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--hy-primary);
}

.sqm-price-note {
    font-size: 0.82rem;
    color: var(--hy-success);
    font-weight: 600;
}

/* ── Calculator Steps ── */
.calc-step-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--hy-dark);
}

.step-num {
    width: 26px; height: 26px;
    background: var(--hy-primary);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.80rem;
    font-weight: 800;
}

/* ============================================
   ORDER SECTION
   ============================================ */
.hy-order-section {
    background: linear-gradient(140deg, #001a40 0%, #003F8A 55%, #0070c0 100%);
    position: relative;
    overflow: hidden;
}

.hy-order-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(0,174,239,0.15) 0%, transparent 55%),
        radial-gradient(ellipse at 10% 90%, rgba(0,63,138,0.25) 0%, transparent 55%);
    pointer-events: none;
}

.order-card { padding: 40px; }

.hy-validation-msg {
    display: block;
    color: #ef4444;
    font-size: 0.82rem;
    margin-top: 4px;
    font-weight: 600;
}

.hy-alert-danger {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    color: #dc2626;
    padding: 14px 18px;
    font-size: 0.92rem;
}

/* ── Form Steps ── */
.form-step {
    padding: 28px 0;
    border-bottom: 1px solid var(--hy-border);
}

.form-step-last {
    border-bottom: none;
    padding-bottom: 0;
}

.form-step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1rem;
    color: var(--hy-dark);
}

.form-step-num {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--hy-primary), var(--hy-accent-dk));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,63,138,0.25);
}

/* ── GPS Bar ── */
.gps-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hy-btn-gps {
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff !important;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    padding: 10px 20px;
    transition: opacity 0.2s, transform 0.15s;
}

.hy-btn-gps:hover   { opacity: .88; transform: translateY(-1px); }
.hy-btn-gps:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.gps-status {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--hy-muted);
}

/* ── Leaflet Map ── */
.map-wrapper { animation: fadeIn .3s ease; }

.leaflet-map-box {
    height: 260px;
    border-radius: 12px;
    border: 1.5px solid var(--hy-border);
    z-index: 0;
}

.map-pin-info {
    font-size: 0.85rem;
    color: var(--hy-muted);
    line-height: 1.5;
    padding: 8px 12px;
    background: var(--hy-light);
    border-radius: 8px;
    border: 1px solid var(--hy-border);
}

@keyframes fadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:none; } }

/* ── Carpet Rows ── */
.carpet-row {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--hy-light);
    border: 1px solid var(--hy-border);
    border-radius: 10px;
    padding: 10px 14px;
    flex-wrap: wrap;
}

.carpet-row-label {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--hy-primary);
    min-width: 52px;
}

.carpet-row-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    flex-wrap: wrap;
}

.carpet-row-inputs .input-with-unit { width: 120px; }
.carpet-row-inputs .hy-input { padding: 8px 36px 8px 12px; font-size: 0.92rem; }

.carpet-x {
    font-size: 1rem;
    font-weight: 800;
    color: var(--hy-muted);
}

.carpet-sqm-badge {
    background: white;
    border: 1px solid var(--hy-border);
    border-radius: 6px;
    padding: 4px 10px;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--hy-primary);
    min-width: 68px;
    text-align: center;
}

/* ── Carpet Transfer Box ── */
.carpet-transfer-box {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #f0f8ff, #deeeff);
    border: 1.5px solid rgba(0,63,138,0.18);
    border-radius: 12px;
    padding: 14px 18px;
}

.ct-icon {
    font-size: 1.5rem;
    color: var(--hy-success);
    flex-shrink: 0;
}

.ct-info { flex: 1; }

.ct-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--hy-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ct-details {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--hy-dark);
    margin-top: 3px;
}

.ct-edit-link {
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--hy-primary);
    text-decoration: none;
    flex-shrink: 0;
    border: 1px solid var(--hy-primary);
    padding: 5px 12px;
    border-radius: 7px;
    transition: background 0.2s;
}

.ct-edit-link:hover {
    background: var(--hy-primary);
    color: #fff;
}

.carpet-transfer-empty {
    font-size: 0.9rem;
    color: var(--hy-muted);
    font-weight: 600;
    padding: 12px 16px;
    background: var(--hy-light);
    border-radius: 10px;
    border: 1.5px dashed var(--hy-border);
}

.carpet-transfer-empty a {
    color: var(--hy-primary);
    text-decoration: none;
    font-weight: 700;
}

/* ============================================
   CONFIRMATION PAGE
   ============================================ */
.hy-confirmation-section {
    background: var(--hy-light);
    min-height: 80vh;
}

.confirmation-hero {
    background: linear-gradient(140deg, #001a40, var(--hy-primary));
    border-radius: var(--hy-radius);
    padding: 48px 32px 36px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.confirmation-hero::after {
    content: '🌊';
    font-size: 180px;
    position: absolute;
    right: -20px;
    bottom: -40px;
    opacity: 0.06;
    pointer-events: none;
    line-height: 1;
}

.confirm-anim-icon {
    font-size: 3.8rem;
    color: var(--hy-success);
    animation: popIn .5s cubic-bezier(.175,.885,.32,1.275);
}

@keyframes popIn { from { transform: scale(0); opacity:0; } to { transform: scale(1); opacity:1; } }

.confirm-title  { font-size: 2.1rem; font-weight: 900; margin: 12px 0 8px; }
.confirm-subtitle { opacity: .80; margin-bottom: 16px; font-size: 1rem; }

.order-number-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 8px;
    padding: 8px 22px;
    font-size: .95rem;
    letter-spacing: .5px;
    font-weight: 700;
}

/* Track steps */
.track-steps-card { padding: 24px 28px; }
.track-steps-title { font-weight: 800; color: var(--hy-dark); margin-bottom: 20px; }

.track-steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

.track-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.ts-icon {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: var(--hy-border);
    color: var(--hy-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    z-index: 1;
    transition: background .3s, color .3s;
}

.track-step.active .ts-icon {
    background: linear-gradient(135deg, var(--hy-primary), var(--hy-accent-dk));
    color: #fff;
    box-shadow: 0 0 0 5px rgba(0,63,138,0.15);
}

.ts-line {
    position: absolute;
    top: 21px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: var(--hy-border);
    z-index: 0;
}

.track-step.active .ts-line { background: var(--hy-primary); }

.ts-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 8px;
    text-align: center;
}

.ts-label { font-size: .78rem; font-weight: 700; color: var(--hy-dark); }
.ts-date  { font-size: .72rem; color: var(--hy-muted); margin-top: 2px; }

/* Confirm details */
.confirm-details-card { padding: 28px 32px; }

.confirm-details-title {
    font-weight: 800;
    color: var(--hy-dark);
    padding-bottom: 12px;
    border-bottom: 1.5px solid var(--hy-border);
    margin-bottom: 16px;
}

.confirm-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--hy-border);
    gap: 16px;
}

.confirm-row:last-child { border-bottom: none; }
.confirm-key { font-size: .9rem; color: var(--hy-muted); font-weight: 600; flex-shrink: 0; }
.confirm-val { font-size: .95rem; color: var(--hy-dark); font-weight: 700; text-align: right; }
.confirm-val-sm { font-size: .82rem; }

.confirm-row-total {
    background: var(--hy-primary-lt);
    border-radius: 10px;
    padding: 14px 12px;
    margin: 8px -12px;
    border-bottom: none !important;
}

.confirm-key-total { font-size: 1rem; font-weight: 800; color: var(--hy-dark); }
.confirm-price { font-size: 1.55rem; font-weight: 900; color: var(--hy-primary) !important; }

/* Carpet detail table */
.carpet-detail-table {
    border: 1px solid var(--hy-border);
    border-radius: 10px;
    overflow: hidden;
    font-size: .87rem;
}

.cdt-header, .cdt-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    padding: 8px 14px;
}

.cdt-header {
    background: var(--hy-light);
    font-weight: 800;
    color: var(--hy-muted);
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.cdt-row { border-top: 1px solid var(--hy-border); color: var(--hy-text); }
.cdt-row:hover { background: #fafcff; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-stat {
    display: flex;
    flex-direction: column;
    padding: 22px;
    background: var(--hy-light);
    border-radius: 12px;
    text-align: center;
    border: 1.5px solid var(--hy-border);
}

.stat-big {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--hy-primary);
}

.stat-small {
    font-size: 0.82rem;
    color: var(--hy-muted);
    font-weight: 600;
}

.about-values-card { padding: 32px; }

.value-item {
    display: flex;
    align-items: center;
    padding: 11px 0;
    font-size: 0.97rem;
    border-bottom: 1px solid var(--hy-border);
}

.value-item:last-child { border-bottom: none; }

/* ============================================
   FOOTER
   ============================================ */
.hy-footer {
    background: var(--hy-dark);
    color: rgba(255,255,255,0.72);
    padding: 60px 0 0;
    position: relative;
}

/* Color stripe at top of footer - card inspired */
.hy-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 5px;
    background: linear-gradient(90deg,
        var(--hy-stripe1)  0%,  var(--hy-stripe1)  20%,
        var(--hy-stripe2)  20%, var(--hy-stripe2)  40%,
        var(--hy-accent)   40%, var(--hy-accent)   60%,
        var(--hy-primary)  60%, var(--hy-primary)  80%,
        var(--hy-stripe3)  80%, var(--hy-stripe3) 100%);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand-text {
    font-size: 1.35rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.3px;
}

.footer-desc {
    font-size: 0.90rem;
    line-height: 1.75;
    max-width: 280px;
}

.footer-heading {
    color: #fff;
    font-weight: 800;
    margin-bottom: 16px;
    font-size: 0.90rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 9px; }

.footer-links a {
    color: rgba(255,255,255,0.58);
    text-decoration: none;
    font-size: 0.90rem;
    transition: color 0.2s;
    font-weight: 500;
}

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

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 11px;
    font-size: 0.90rem;
    color: rgba(255,255,255,0.65);
}

.footer-contact li i {
    color: var(--hy-accent);
    margin-top: 2px;
    flex-shrink: 0;
    width: 14px;
}

.footer-divider {
    border-color: rgba(255,255,255,0.10);
    margin: 40px 0 0;
}

.footer-bottom {
    padding: 20px 0;
    font-size: 0.83rem;
    color: rgba(255,255,255,0.42);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.60);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    font-size: 0.92rem;
}

.footer-social a:hover {
    background: var(--hy-accent);
    color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 767px) {
    .hy-hero { min-height: auto; padding: 60px 0 80px; }
    .hy-section { padding: 52px 0; }
    .calc-card, .order-card { padding: 24px 20px; }
    .confirm-details-card { padding: 20px; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
    .stat-item:last-child { border-bottom: none; }
    .confirm-row { flex-direction: column; gap: 2px; }
    .confirm-val { text-align: left; }
    .hero-title { letter-spacing: -1px; }
}

@media (max-width: 575px) {
    .counter-btn { padding: 11px 12px; }
    .result-divider { display: none; }
    .track-steps { flex-direction: column; gap: 12px; }
    .ts-line { display: none; }
    .hero-services { gap: 7px; }
    .hero-service-pill { font-size: 0.78rem; padding: 6px 11px; }
}

/* fw utility */
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }
