/* ============================================================
   EMBEE NEXUS — REDESIGNED
   Aesthetic: Bold logistics brand — dark, electric, motion-forward
   Fonts: Clash Display (headings) + Outfit (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --primary: #00c2ff;
    --primary-dark: #0099cc;
    --primary-glow: rgba(0,194,255,0.18);
    --primary-subtle: rgba(0,194,255,0.08);
    --dark: #05070f;
    --dark-2: #0c0e1a;
    --dark-3: #141728;
    --dark-4: #1e2235;
    --white: #ffffff;
    --off-white: #f8faff;
    --light-bg: #f0f5ff;
    --text: #0f1221;
    --text-muted: #5a6480;
    --text-light: #8892aa;
    --border: #e2e8f5;
    --border-dark: rgba(255,255,255,0.08);
    --red: #ff4757;
    --green: #00e096;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.1);
    --shadow-lg: 0 24px 64px rgba(0,0,0,0.14);
    --shadow-blue: 0 8px 40px rgba(0,194,255,0.3);
}

html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Outfit', sans-serif;
    margin: 0;
    background: var(--white);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.12;
    margin: 0;
    letter-spacing: -0.02em;
}

/* ============================================================
   HEADER
   ============================================================ */
header {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}
header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }

.logo-wrapper { display: flex; align-items: center; gap: 10px; }
.site-logo { height: 36px; width: auto; }
.logo { font-family: 'Space Grotesk', sans-serif; font-size: 1.45rem; font-weight: 700; letter-spacing: -0.5px; color: var(--dark); }
.logo span { color: var(--primary); }

nav a {
    margin-left: 28px;
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}
nav a:hover { color: var(--primary); }
.nav-btn {
    background: var(--dark) !important;
    color: white !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.25s;
}
.nav-btn:hover { background: var(--primary) !important; transform: translateY(-1px); box-shadow: var(--shadow-blue); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    padding: 14px 30px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.25s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    border: none;
    font-family: 'Outfit', sans-serif;
}
.btn.primary {
    background: var(--primary);
    color: var(--dark);
    box-shadow: var(--shadow-blue);
}
.btn.primary:hover { background: white; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,194,255,0.4); }
.btn.secondary {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
}
.btn.secondary:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn.dark-btn {
    background: var(--dark);
    color: white;
}
.btn.dark-btn:hover { background: var(--primary); color: var(--dark); transform: translateY(-2px); }
.btn.outline-white {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
}
.btn.outline-white:hover { background: white; color: var(--dark); }

/* ============================================================
   HERO — SPLIT LAYOUT, DARK GRADIENT
   ============================================================ */
.hero {
    min-height: 92vh;
    background: var(--dark);
    display: flex;
    align-items: center;
    padding: 80px 7%;
    position: relative;
    overflow: hidden;
    gap: 60px;
}

/* Animated grid background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,194,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,194,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
}
@keyframes gridMove { from { transform: translateY(0); } to { transform: translateY(60px); } }

/* Glow orbs */
.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,194,255,0.12) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.hero-bg-pattern {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,194,255,0.08) 0%, transparent 70%);
    bottom: -150px;
    left: 10%;
    pointer-events: none;
}

.hero-content {
    flex: 1;
    position: relative;
    z-index: 2;
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,194,255,0.12);
    border: 1px solid rgba(0,194,255,0.25);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 28px;
    animation: fadeUp 0.6s ease both;
}
.badge-dot {
    width: 7px; height: 7px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    color: white;
    font-weight: 700;
    margin-bottom: 24px;
    animation: fadeUp 0.6s 0.1s ease both;
}
.hero h1 span {
    color: var(--primary);
    position: relative;
}

.hero > .hero-content > p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 36px;
    line-height: 1.7;
    animation: fadeUp 0.6s 0.2s ease both;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 52px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.08);
    animation: fadeUp 0.6s 0.4s ease both;
}
.stat { text-align: center; padding: 0 28px; }
.stat:first-child { padding-left: 0; }
.stat-num { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--primary); }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.8px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* HERO VISUAL */
.hero-visual {
    flex: 0 0 420px;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeUp 0.8s 0.3s ease both;
}

.hero-map-bg {
    width: 340px;
    height: 340px;
    position: relative;
}
.map-svg { width: 100%; height: 100%; }

.hero-card {
    position: absolute;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.card-icon { font-size: 1.4rem; }
.card-text { display: flex; flex-direction: column; }
.card-text strong { font-size: 0.85rem; font-weight: 600; }
.card-text span { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

.card-float-1 { top: 20px; left: -40px; animation: float1 4s ease-in-out infinite; }
.card-float-2 { top: 50%; right: -50px; transform: translateY(-50%); animation: float2 4s ease-in-out infinite 1s; }
.card-float-3 { bottom: 30px; left: -20px; animation: float1 4s ease-in-out infinite 2s; }

@keyframes float1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}
@keyframes float2 {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(calc(-50% - 10px)); }
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    background: var(--light-bg);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    overflow: hidden;
}
.trust-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    width: max-content;
    padding: 0 40px;
}
.trust-inner strong { color: var(--text); font-weight: 600; }
.trust-dot { color: var(--primary); font-weight: 700; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
    background: var(--primary-subtle);
    padding: 5px 12px;
    border-radius: 100px;
}
.section-header { margin-bottom: 52px; }
.section-header h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--dark); margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; color: var(--text-muted); max-width: 500px; }
.section-header.light h2 { color: white; }
.section-header.light p { color: rgba(255,255,255,0.55); }
.light-tag { background: rgba(0,194,255,0.15); }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
    padding: 100px 7%;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-subtle) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}
.service-card .service-icon,
.service-card h3,
.service-card p,
.service-card .card-link,
.service-card .btn {
    position: relative;
    z-index: 1;
}
.service-card:hover { border-color: rgba(0,194,255,0.4); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card:hover::before { opacity: 1; }

.featured-card {
    background: var(--dark);
    border-color: transparent;
    grid-row: span 2;
}
.featured-card h3, .featured-card p { color: rgba(255,255,255,0.85); }
.featured-card h3 { color: white; }
.featured-card .card-link { color: var(--primary); }
.featured-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.3); }

.cta-card {
    background: var(--primary);
    border-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}
.cta-card h3 { color: var(--dark); font-size: 1.4rem; }
.cta-card p { color: rgba(5,7,15,0.65); margin: 0; }
.cta-card .btn.primary { background: var(--dark); color: white; align-self: flex-start; }
.cta-card .btn.primary:hover { background: white; color: var(--dark); }

.service-icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
    display: block;
}
.service-card h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 700;
}
.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0 0 16px;
}
.card-link {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}
.card-link:hover { gap: 8px; }

/* ============================================================
   PROCESS SECTION — DARK
   ============================================================ */
.process-section {
    background: var(--dark-2);
    padding: 100px 7%;
    position: relative;
    overflow: hidden;
}
.process-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,194,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,194,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}
.process-inner { position: relative; z-index: 1; }

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 52px;
    position: relative;
}
.steps::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5%);
    width: 75%;
    height: 1px;
    background: linear-gradient(90deg, var(--primary), rgba(0,194,255,0.2));
}

.step {
    text-align: center;
    padding: 0 16px;
    position: relative;
}
.step-num {
    width: 56px; height: 56px;
    background: var(--dark-3);
    border: 2px solid rgba(0,194,255,0.3);
    color: var(--primary);
    border-radius: 50%;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s;
}
.step:hover .step-num {
    background: var(--primary);
    color: var(--dark);
    box-shadow: var(--shadow-blue);
    transform: scale(1.1);
}
.step-content h4 {
    font-size: 1rem;
    color: white;
    margin-bottom: 8px;
    font-weight: 700;
}
.step-content p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
}
.step-arrow { display: none; }

.process-cta { text-align: center; margin-top: 52px; }

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-section { padding: 100px 7%; background: var(--off-white); }
.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.why-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 16px; color: var(--dark); }
.why-text p { color: var(--text-muted); margin-bottom: 28px; font-size: 1rem; }
.why-list { list-style: none; padding: 0; margin: 0 0 36px; display: flex; flex-direction: column; gap: 14px; }
.why-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.95rem; color: var(--text); }
.check { color: var(--primary); font-weight: 700; flex-shrink: 0; }

.compare-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.compare-label.mt { margin-top: 20px; }
.compare-box {
    border-radius: var(--radius-md);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.compare-box.bad { background: #fff5f5; border: 1px solid #ffd6d6; }
.compare-box.good { background: #f0fff8; border: 1px solid #b8f5d8; }
.compare-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.x-mark { color: var(--red); font-weight: 700; }
.tick-mark { color: var(--green); font-weight: 700; }

/* ============================================================
   FEEDBACK SECTION
   ============================================================ */
.feedback-section {
    padding: 100px 7%;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.feedback-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(0,194,255,0.08) 0%, transparent 70%);
    top: -200px; right: 0;
    pointer-events: none;
}
.feedback-inner {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}
.feedback-inner h2 { color: white; font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 12px; }
.feedback-inner p { color: rgba(255,255,255,0.5); margin-bottom: 40px; }
.feedback-inner .section-tag { background: rgba(0,194,255,0.15); }

.feedback-form { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.feedback-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.feedback-form input::placeholder,
.feedback-form textarea::placeholder { color: rgba(255,255,255,0.3); }
.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0,194,255,0.06);
}
.feedback-form select { color: rgba(255,255,255,0.7); }
.feedback-form select option { background: var(--dark-3); color: white; }
.feedback-form textarea { resize: vertical; min-height: 120px; }
.feedback-form .btn { align-self: flex-start; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--dark-2);
    border-top: 1px solid var(--border-dark);
    padding: 70px 7% 30px;
}
.footer-container {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid var(--border-dark);
}
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-img { height: 32px; }
.footer-logo { font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; font-weight: 700; color: white; }
.footer-logo span { color: var(--primary); }
.footer-left p { font-size: 0.9rem; color: rgba(255,255,255,0.4); line-height: 1.7; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
    padding: 8px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all 0.2s;
}
.social-btn:hover { background: var(--primary); color: var(--dark); border-color: var(--primary); }

.footer-links h4 { color: rgba(255,255,255,0.9); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px; }
.footer-links a, .footer-links span {
    display: block;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--primary); }

.footer-bottom {
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p, .footer-bottom span { font-size: 0.82rem; color: rgba(255,255,255,0.25); margin: 0; }

/* ============================================================
   BACK LINK
   ============================================================ */
.back-link { font-size: 0.85rem; font-weight: 600; text-decoration: none; color: var(--text-muted); }
.mobile-back { display: none; font-size: 0.85rem; font-weight: 600; color: var(--text); text-decoration: none; }

/* ============================================================
   FORM PAGE
   ============================================================ */
.form-page { background: var(--off-white); min-height: 100vh; }
.form-container { max-width: 660px; margin: 40px auto; padding: 0 20px 60px; }
.booking-card {
    background: white;
    padding: 44px;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border: 1px solid var(--border);
}
.form-title { margin-top: 0; font-weight: 800; font-size: 1.6rem; color: var(--dark); border-bottom: 2px solid var(--border); padding-bottom: 18px; margin-bottom: 32px; }
.form-section { margin-bottom: 36px; }
.form-section h3 { font-size: 0.75rem; color: var(--primary); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; margin-bottom: 16px; }

.location-box { padding-left: 16px; }
.location-box .input-row { margin-bottom: 12px; }
.location-box input { background: var(--off-white); }
.box-label { font-size: 0.65rem; font-weight: 700; color: rgba(0,0,0,0.35); display: block; margin-bottom: 10px; letter-spacing: 1.2px; text-transform: uppercase; }
.pickup-box { border-left: 4px solid var(--primary); }
.dropoff-entry { border-left: 4px solid var(--red); margin-top: 6px; }
.connector-line { width: 2px; height: 20px; background: var(--border); margin-left: 32px; }

.input-row { display: flex; gap: 12px; }
input, select {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 10px;
    color: var(--text);
    background: white;
    transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus, select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-glow); }
.add-btn { background: none; border: none; color: var(--primary); font-weight: 700; cursor: pointer; padding: 8px 0; font-family: 'Outfit', sans-serif; font-size: 0.9rem; }

.price-display {
    background: var(--dark);
    padding: 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 28px 0;
    border: 1px solid rgba(0,194,255,0.15);
}
.price-display span { font-size: 0.8rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }
.price-display h2 { margin: 6px 0 4px; font-size: 2.4rem; font-weight: 800; color: var(--primary); }
.price-note { font-size: 0.75rem; color: rgba(255,255,255,0.35); margin: 0; }
.submit-btn { width: 100%; font-size: 1rem; justify-content: center; border-radius: var(--radius-sm); }

.price-loader { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 10px; font-size: 0.85rem; color: var(--primary); }
.spinner { width: 18px; height: 18px; border: 3px solid rgba(0,194,255,0.2); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.remove-btn { background: none; border: none; color: var(--red); font-size: 0.8rem; font-weight: 700; cursor: pointer; margin-top: 8px; padding: 4px 0; display: block; text-align: right; width: 100%; font-family: 'Outfit', sans-serif; }
.remove-btn:hover { text-decoration: underline; }

/* ============================================================
   HAMBURGER & MOBILE MENU
   ============================================================ */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 5px; z-index: 100; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--dark); border-radius: 3px; transition: 0.3s; }

.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: white; font-size: 1.5rem; font-weight: 700; text-decoration: none; letter-spacing: -0.5px; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu .close-menu { position: absolute; top: 24px; right: 24px; background: none; border: none; color: white; font-size: 1.8rem; cursor: pointer; line-height: 1; }
.mobile-menu .nav-btn { background: var(--primary) !important; color: var(--dark) !important; padding: 14px 40px; border-radius: 100px; font-size: 1rem; }

/* ============================================================
   MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-card { grid-row: span 1; }
    .steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .steps::before { display: none; }
    .why-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
    .footer-left { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    nav { display: none; }
    .hamburger { display: flex; }
    .mobile-back { display: block; }
    .back-link { display: none; }

    .hero { flex-direction: column; padding: 60px 6% 50px; min-height: auto; gap: 40px; }
    .hero-visual { display: none; }
    .hero h1 { font-size: 2.4rem; }
    .hero > .hero-content > p { font-size: 1rem; }
    .hero-stats { gap: 0; }
    .stat { padding: 0 16px; }
    .stat-num { font-size: 1.4rem; }

    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .btn.secondary { border-color: rgba(255,255,255,0.3); }

    .services-section, .process-section, .why-section, .feedback-section { padding: 70px 6%; }
    .services-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; gap: 24px; }
    .footer-container { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .feedback-row { grid-template-columns: 1fr; }

    .form-container { padding: 0 14px 40px; margin: 20px auto; }
    .booking-card { padding: 24px 20px; }
    .input-row { flex-direction: column; gap: 0; }
    select, input { font-size: 16px; }
    .price-display h2 { font-size: 2rem; }

    .site-logo { height: 28px; }
    .logo { font-size: 1.2rem; }
    .logo-wrapper { gap: 7px; }
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
    z-index: 9000;
    transition: all 0.3s;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.6);
}
.whatsapp-float svg { display: block; }

@media (max-width: 768px) {
    .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
    .whatsapp-float svg { width: 24px; height: 24px; }
}

/* ============================================================
   WHATSAPP ICON BUTTON (hero)
   ============================================================ */
.btn.wa-icon-btn {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.25);
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 24px;
}
.btn.wa-icon-btn svg { flex-shrink: 0; }
.btn.wa-icon-btn:hover {
    border-color: #25D366;
    background: rgba(37,211,102,0.12);
    color: #25D366;
    transform: translateY(-2px);
}
.btn.wa-icon-btn:hover svg { fill: #25D366; }
