/* ══════════════════════════════════════════════
   Chezo Laundry – styles
   Theme: Sky Blue / Clean White
   ══════════════════════════════════════════════ */

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

:root {
    --blue: #1a9bd7;
    --blue-d: #1480b5;
    --teal: #00c4a7;
    --dark: #050e18;
    --navy: #091929;
    --white: #ffffff;
    --grey: #6e8899;
    --radius: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow-x: hidden;
}

/* ── Navbar ── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    transition: background 0.3s, box-shadow 0.3s;
}

.navbar.scrolled {
    background: rgba(5, 14, 24, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
}

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 22px;
}

.logo-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

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

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

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.nav-cta {
    background: var(--blue);
    color: var(--white) !important;
    border-radius: 100px;
    padding: 9px 22px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
}

.nav-cta:hover {
    background: var(--blue-d) !important;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(ellipse at 50% 35%, #0a2d4a 0%, #050e18 65%);
    padding: 120px 24px 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231a9bd7' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    max-width: 680px;
}

.hero-badge {
    display: inline-block;
    background: rgba(26, 155, 215, 0.15);
    color: var(--blue);
    border: 1px solid rgba(26, 155, 215, 0.3);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: clamp(42px, 7vw, 76px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--blue);
}

.hero-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    max-width: 520px;
    margin: 0 auto 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

/* Hero stats */
.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.num {
    font-size: 26px;
    font-weight: 800;
    color: var(--blue);
}

.label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 4px;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 8px 28px rgba(26, 155, 215, 0.4);
}

.btn-primary:hover {
    background: var(--blue-d);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(26, 155, 215, 0.55);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* ── Notice Band ── */
.notice-band {
    background: rgba(26, 155, 215, 0.08);
    border-top: 1px solid rgba(26, 155, 215, 0.2);
    border-bottom: 1px solid rgba(26, 155, 215, 0.2);
    padding: 14px 24px;
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

.notice-band .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.notice-icon {
    font-size: 18px;
}

/* ── Sections ── */
.section {
    padding: 100px 24px;
}

.section-alt {
    background: rgba(255, 255, 255, 0.025);
}

.container {
    max-width: 1160px;
    margin: 0 auto;
}

.title-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    background: rgba(26, 155, 215, 0.1);
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

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

.section-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ── Services Grid ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    border-color: rgba(26, 155, 215, 0.3);
}

.service-icon {
    font-size: 36px;
    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* ── Steps Grid ── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-top: 20px;
}

.step-card {
    text-align: center;
    padding: 40px 28px;
}

.step-num {
    font-size: 52px;
    font-weight: 800;
    color: rgba(26, 155, 215, 0.18);
    line-height: 1;
    margin-bottom: 20px;
    display: block;
}

.step-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* ── Contact ── */
.contact-section {
    padding: 100px 24px;
    background: var(--navy);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--radius);
    padding: 24px;
}

.contact-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 4px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-item span,
.contact-item a {
    font-size: 15px;
    color: var(--white);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--blue);
}

/* ── Footer ── */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 28px 24px;
}

.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-brand {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-brand:hover {
    color: var(--blue);
}

.footer-name {
    font-size: 18px;
    font-weight: 800;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

/* ── Map Widget ── */
.map-wrapper {
    margin-top: 48px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.map-consent {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius);
    padding: 48px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.map-consent .map-icon {
    font-size: 40px;
}

.map-consent p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 460px;
    line-height: 1.7;
}

.map-consent p a {
    color: var(--blue);
    text-decoration: underline;
}

.map-consent-btn {
    background: var(--blue);
    color: var(--white);
    border: none;
    border-radius: 100px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.map-consent-btn:hover {
    background: var(--blue-d);
    transform: translateY(-2px);
}

.map-frame {
    display: none;
    width: 100%;
    height: 380px;
    border: none;
}

.map-frame.loaded {
    display: block;
}

/* ── Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

@media (max-width: 900px) {
    .navbar {
        padding: 18px 24px;
    }

    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }
}

@media (max-width: 600px) {

    .services-grid,
    .steps-grid,
    .contact-info {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        gap: 24px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}