* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #F0C66D;
    --gold-dark: #C9973B;
    --white: #FFFFFF;
    --dark: #1a1a1a;
    --gray: #666;
    --light-bg: #fafafa;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ================= HEADER ================= */
.header {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.header-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
    opacity: 0.9;
}

.header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 26, 0.8) 100%);
    z-index: 1;
}

.header-content {
    margin-top: 10%;
    position: relative;
    z-index: 2;
    color: var(--white);
    padding: 0 5%;
    max-width: 1000px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.6);
    margin-bottom: 1rem;
}

.header-content .highlight {
    color: var(--gold);
    display: block;
}

.header-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

/* ================= BOOKING WIDGET ================= */
.booking-widget {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 60px;
    padding: 12px 8px 12px 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    width: fit-content;
    max-width: 100%;
    transition: all 0.3s ease;
}

.booking-widget:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.pickup-info,
.where-info {
    display: flex;
    flex-direction: column;
    margin-right: 25px;
    padding-right: 25px;
    border-right: 2px solid #e8e8e8;
}

.where-info {
    border-right: none;
    margin-right: 20px;
}

.label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.detail {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 600;
}

.action-button {
    background: var(--gold);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(201, 151, 59, 0.4);
}

.action-button:hover {
    background: var(--gold-dark);
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(201, 151, 59, 0.5);
}




/* ================= REVIEWS BADGE ================= */
.reviews-badge {
    display: inline-flex;
    flex-direction: column;
    gap: 16px;
    background-color: transparent;
    backdrop-filter: blur(20px);
    padding: 12px 12px;
    margin-top: 2px;
}

.reviews-keywords {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.keyword {
    color: var(--dark);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 8px 16px;
    background-color: var(--gold);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    text-transform: capitalize;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.keyword:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.15));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ================= SERVICES SECTION ================= */
.services-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark);
    letter-spacing: 2px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gold);
    margin: 20px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* Base card */
.service-card {
    padding: 50px 35px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid transparent;
    color: #1a1a1a;
}

/* 1️⃣ Wash & Fold – Koyu Teal */
.services-grid .service-card:nth-child(1) {
    background-color: #1F5E73;
    color: #ffffff;
}

/* 2️⃣ Pickup & Delivery – Mint */
.services-grid .service-card:nth-child(2) {
    background-color: #A7E3E5;
    color: #1a1a1a;
}

/* 3️⃣ Quick Turnaround – Gold */
.services-grid .service-card:nth-child(3) {
    background-color: #FFD36A;
    color: #1a1a1a;
}

/* Hover – hepsi için ortak */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    background: #ffffff;
    color: #1a1a1a;
    border-color: var(--gold);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.check-icon {
  color: #16a34a;
  font-weight: 700;
}

/* Varsayılan – renkli kartlar için */
.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #ffffff;
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

/* Açık zeminli kartlar (2. ve 3.) */
.services-grid .service-card:nth-child(2) h3,
.services-grid .service-card:nth-child(3) h3 {
    color: var(--dark);
}

.services-grid .service-card:nth-child(2) p,
.services-grid .service-card:nth-child(3) p {
    color: var(--gray);
}



/* ================= HOW IT WORKS ================= */
.how-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    position: relative;
    margin-top: 60px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 6px 25px rgba(201, 151, 59, 0.3);
    transition: all 0.3s ease;
}

.step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 35px rgba(201, 151, 59, 0.5);
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--dark);
    font-weight: 700;
}

.step p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* ================= PRICING ================= */
.pricing-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.price-card {
    background: linear-gradient(135deg, #fafafa 0%, white 100%);
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    border: 3px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-dark) 100%);
}

.price-card h3 {
    font-size: 5rem;
    color: var(--gold-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.per {
    font-size: 1.3rem;
    color: var(--gray);
    display: block;
    margin-bottom: 25px;
    font-weight: 500;
}

.price-detail {
    color: var(--dark);
    margin-bottom: 12px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cost-estimate {
    color: var(--gold-dark);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 35px;
}

.price-features {
    list-style: none;
    text-align: left;
    margin: 35px 0;
}

.price-features li {
    padding: 15px 0;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    border-bottom: 1px solid #eee;
}

.price-features li:last-child {
    border-bottom: none;
}

.check-icon {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.3rem;
}

.cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: white;
    padding: 18px 55px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    margin-top: 25px;
    box-shadow: 0 6px 25px rgba(201, 151, 59, 0.4);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(201, 151, 59, 0.5);
}

/* ================= SERVICE AREAS ================= */
.service-areas-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.service-areas-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-areas-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.service-areas-list li {
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.service-areas-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.service-areas-list a {
    display: block;
    padding: 22px 30px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: color 0.3s ease;
}

.service-areas-list a:hover {
    color: var(--gold-dark);
}

@media (max-width: 968px) {
    .service-areas-section {
        padding: 70px 5%;
    }
    
    .service-areas-list {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .service-areas-intro {
        font-size: 1.05rem;
        margin-bottom: 35px;
    }
}

@media (max-width: 640px) {
    .service-areas-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .service-areas-list a {
        padding: 18px 24px;
        font-size: 1.05rem;
    }
}

/* ================= TESTIMONIALS ================= */
.testimonials-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid var(--gold);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.testimonial-meta h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 3px;
    font-weight: 700;
}

.location {
    color: var(--gray);
    font-size: 0.9rem;
}

.stars-rating {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.date {
    color: #aaa;
    font-size: 0.9rem;
    font-style: italic;
}


/* ================= MOBILE RESPONSIVE (FINAL) ================= */

/* 1) TABLET + MOBILE (<= 968px) */
@media (max-width: 968px) {

    /* ---------- HEADER ---------- */
    .header {
        height: auto;
        min-height: 100svh;
        min-height: 100dvh;
        padding: 96px 0 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header-content {
        margin-top: 0 !important;
        padding: 0 6%;
        width: 100%;
        max-width: 720px;
        text-align: center;

        min-height: calc(100svh - 140px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 14px;
    }

    .header-content h1 {
        font-size: clamp(2.1rem, 6.2vw, 3rem);
        line-height: 1.08;
        letter-spacing: 1.2px;
        margin-bottom: 6px;
    }

    .header-content p {
        font-size: clamp(1rem, 2.8vw, 1.15rem);
        margin-bottom: 18px;
        max-width: 46ch;
    }

    /* ---------- BOOKING (MOBILE LOOK) ---------- */
    .booking-widget {
        width: min(560px, 92vw);
        max-width: none;
        margin: 0 auto;

        display: flex;
        flex-direction: row;
        /* tek satır */
        align-items: center;
        justify-content: space-between;

        background: #fff;
        border-radius: 999px;
        /* pill */
        padding: 10px 10px 10px 18px;
        /* solda rahat */
        gap: 0;

        overflow: hidden;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    }

    .pickup-info,
    .where-info {
        flex: 1;
        min-width: 0;

        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;

        margin: 0;
        padding: 6px 0;
        border: 0;
        background: transparent;
        border-radius: 0;
    }

    /* divider */
    .pickup-info {
        padding-right: 16px;
        margin-right: 16px;
        border-right: 1px solid #e9e9e9;
    }

    .where-info {
        padding-right: 10px;
    }

    /* Mobilde label/detail görseldeki gibi */
    .label {
        font-size: .85rem;
        font-weight: 700;
        color: #111;
        /* Pickup/Where koyu */
        letter-spacing: 0;
        text-transform: none;
        /* uppercase kapalı */
        margin-bottom: 2px;
        line-height: 1.1;
    }

    .detail {
        font-size: .95rem;
        font-weight: 600;
        color: #6b7280;
        /* Tomorrow/Add address gri */
        line-height: 1.1;

        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .action-button {
        width: 54px;
        height: 54px;
        border-radius: 50%;
        flex: 0 0 auto;

        background: var(--gold);
        color: #fff;
        font-size: 26px;

        display: flex;
        align-items: center;
        justify-content: center;

        box-shadow: 0 10px 22px rgba(201, 151, 59, 0.35);
    }

    /* mobilde hover zıplaması olmasın */
    .booking-widget:hover {
        transform: none;
    }

    .action-button:hover {
        transform: none;
    }


    .reviews-badge {
        width: min(560px, 92vw);
        padding: 5px 5px !important;
        border-radius: 18px;
        margin-top: 10px;
    }

    .reviews-keywords {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .keyword {
        font-size: 0.82rem;
        padding: 7px 12px;
    }

    /* ---------- SECTIONS ---------- */
    .section-title {
        font-size: 2.4rem;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .steps-container {
        flex-direction: column;
        gap: 34px;
    }

    .testimonial-card {
        padding: 28px;
    }

    .service-card {
        padding: 34px 22px;
    }
}


/* 2) SMALL PHONES (<= 640px) */
@media (max-width: 640px) {

    .header {
        padding: 88px 0 36px;
    }

    .header-content {
        padding: 0 6.5%;
        gap: 12px;
    }

    .header-content h1 {
        font-size: clamp(1.9rem, 7.2vw, 2.5rem);
        letter-spacing: 1px;
    }

    .header-content p {
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .booking-widget {
        width: 92vw;
        padding: 10px 10px 10px 16px;
    }

    .action-button {
        width: 52px;
        height: 52px;
        font-size: 25px;
    }

    .section-title {
        font-size: 2.15rem;
    }

    .price-card {
        padding: 38px 22px;
    }

    .price-card h3 {
        font-size: 3.2rem;
    }
}


/* 3) EXTRA SMALL (<= 420px) */
@media (max-width: 420px) {

    .header-content h1 {
        font-size: 2.05rem;
    }

    .keyword {
        font-size: 0.8rem;
        padding: 6px 10px;
    }

    .action-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}