/* ═══════════════════════════════════════════════
   Camel Towing — home.css
   Homepage-only styles. Loaded conditionally.
   ═══════════════════════════════════════════════ */

/* ─── Hero ─── */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(168deg, var(--white) 0%, var(--pink-light) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
    min-height: 92vh;
    display: flex;
    align-items: center;
}
.hero::after {
    content: '';
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(233,30,140,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-sub {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 20px;
}
.hero-left h1 {
    font-size: clamp(44px, 5vw, 76px);
    line-height: 1.02;
    margin-bottom: 24px;
}
.hero-left h1 .highlight {
    color: var(--pink);
    position: relative;
    display: inline-block;
}
.hero-left h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0; right: 0;
    height: 8px;
    background: var(--pink);
    opacity: 0.15;
    border-radius: 4px;
}
.hero-desc {
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 460px;
    margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-right { position: relative; }
.hero-img-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 16/10;
    border: 1px solid rgba(0,0,0,0.04);
}
.hero-img-main img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.hero-badge {
    position: absolute;
    bottom: -16px; left: -16px;
    background: var(--white);
    padding: 20px 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.04);
    z-index: 2;
}
.hero-badge .big {
    font-family: 'Archivo Black', sans-serif;
    font-size: 32px;
    color: var(--pink);
    display: block;
    line-height: 1;
}
.hero-badge .badge-label {
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
    margin-top: 2px;
}

/* ─── How It Works ─── */
.how-section { padding: 120px 0; }
.how-heading {
    font-size: clamp(36px, 4vw, 52px);
    margin-bottom: 64px;
}
.how-heading .pink { color: var(--pink); }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.step {
    background: var(--pink-subtle);
    border: 1px solid rgba(233,30,140,0.06);
    border-radius: var(--radius);
    padding: 44px 32px;
    transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
}
.step:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(233,30,140,0.12);
}
.step-num {
    font-family: 'Archivo Black', sans-serif;
    font-size: 56px;
    color: rgba(233,30,140,0.08);
    line-height: 1;
    margin-bottom: 20px;
}
.step-icon-wrap {
    width: 52px; height: 52px;
    border-radius: 14px;
    background: var(--pink);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    color: #fff;
}
.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: none;
}
.step p { color: var(--muted); line-height: 1.7; font-size: 15px; }

/* ─── Services ─── */
.services-section { padding: 120px 0; background: var(--light-gray); }
.services-header { text-align: center; margin-bottom: 64px; }
.services-header h2 { font-size: clamp(36px, 4vw, 52px); margin-bottom: 14px; }
.services-sub { color: var(--muted); font-size: 17px; max-width: 480px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.svc-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.4s, box-shadow 0.4s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.svc-img { aspect-ratio: 4/3; overflow: hidden; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.svc-card:hover .svc-img img { transform: scale(1.05); }
.svc-info { padding: 28px; }
.svc-info h3 { font-size: 20px; margin-bottom: 8px; text-transform: none; }
.svc-info p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ─── Why Choose Us ─── */
.why-us-section { padding: 120px 0; }
.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}
.why-us-img {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-lg);
}
.why-us-img img { width: 100%; height: 100%; object-fit: cover; }
.why-us-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
}
.why-us-img-label {
    position: absolute;
    bottom: 24px; left: 24px;
    z-index: 2;
    color: #fff;
}
.why-us-img-label .name { font-family: 'Archivo Black', sans-serif; font-size: 22px; }
.why-us-img-label .role { font-size: 14px; opacity: 0.8; }
.why-us-content h2 {
    font-size: clamp(32px, 3.5vw, 48px);
    line-height: 1.1;
    margin-bottom: 20px;
}
.why-us-content > p {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 32px;
}
.why-us-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
}
.stat-card {
    background: var(--pink-subtle);
    border: 1px solid rgba(233,30,140,0.06);
    border-radius: 14px;
    padding: 24px;
}
.stat-num {
    font-family: 'Archivo Black', sans-serif;
    font-size: 36px;
    color: var(--pink);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label { font-size: 14px; color: var(--muted); font-weight: 600; }
.why-us-perks { list-style: none; }
.why-us-perks li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
}
.perk-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--pink-light);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--pink);
}

/* ─── Image Break ─── */
.img-break {
    position: relative;
    height: 420px;
    overflow: hidden;
}
.img-break > img { width: 100%; height: 100%; object-fit: cover; }
.img-break-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(233,30,140,0.85), rgba(196,0,110,0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
}
.img-break-content { text-align: center; color: #fff; max-width: 700px; }
.img-break-content h2 {
    font-size: clamp(32px, 3.5vw, 52px);
    line-height: 1.1;
    margin-bottom: 16px;
    color: #fff;
}
.img-break-content p { font-size: 18px; opacity: 0.9; margin-bottom: 32px; line-height: 1.6; }

/* ─── Offer / Quote Section ─── */
.offer-section { padding: 120px 0; }
.offer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.offer-left h2 {
    font-size: clamp(32px, 3.5vw, 48px);
    line-height: 1.1;
    margin-bottom: 20px;
}
.offer-left > p { font-size: 17px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.offer-features { list-style: none; margin-bottom: 32px; }
.offer-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    padding: 10px 0;
}
.check-icon {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: var(--pink-light);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--pink);
}

/* ─── Makes ─── */
.makes-section {
    padding: 80px 0;
    background: var(--light-gray);
    border-top: 1px solid rgba(0,0,0,0.04);
    text-align: center;
}
.makes-section h2 { font-size: 24px; margin-bottom: 36px; }
.makes-logos { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.make-logo {
    padding: 14px 24px;
    background: var(--white);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 1px;
    border: 1px solid rgba(0,0,0,0.04);
}

/* ─── Testimonials ─── */
.testimonials-section { padding: 120px 0; }
.testimonials-heading {
    font-size: clamp(36px, 4vw, 52px);
    margin-bottom: 60px;
    text-align: center;
}
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.test-card {
    background: var(--pink-subtle);
    border: 1px solid rgba(233,30,140,0.06);
    border-radius: var(--radius);
    padding: 36px;
}
.stars { color: #FFB800; font-size: 16px; margin-bottom: 16px; letter-spacing: 3px; }
.test-card blockquote {
    color: var(--muted);
    line-height: 1.7;
    font-size: 15px;
    font-style: italic;
    margin-bottom: 24px;
}
.test-author { display: flex; align-items: center; gap: 12px; }
.test-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pink-light), rgba(233,30,140,0.15));
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--pink);
}
.test-name { font-weight: 700; font-size: 14px; color: var(--dark); }
.test-loc { font-size: 12px; color: var(--muted); }

/* ─── Location ─── */
.location-section { padding: 120px 0; background: var(--light-gray); }
.location-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}
.location-info h2 {
    font-size: clamp(32px, 3.5vw, 44px);
    margin-bottom: 12px;
    line-height: 1.1;
}
.location-info > p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 36px; }
.loc-details { list-style: none; }
.loc-details li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.loc-details li:last-child { border-bottom: none; }
.loc-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--pink-light);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    color: var(--pink);
}
.loc-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}
.loc-value { font-size: 16px; font-weight: 600; color: var(--dark); line-height: 1.5; }
.loc-value a { color: var(--dark); }
.loc-value a:hover { color: var(--pink); }
.loc-value small { display: block; font-weight: 400; font-size: 14px; color: var(--muted); }
.location-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.04);
    min-height: 440px;
}
.location-map iframe { width: 100%; height: 100%; min-height: 440px; border: 0; }

/* ─── FAQ ─── */
.faq-section { padding: 120px 0; }
.faq-inner { max-width: 760px; }
.faq-heading {
    font-size: clamp(36px, 4vw, 48px);
    margin-bottom: 48px;
    text-align: center;
}

/* ─── Mobile Overrides ─── */
@media (max-width: 1024px) {
    .hero { padding: 100px 0 60px; min-height: auto; }
    .hero-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .test-grid { grid-template-columns: 1fr; }
    .why-us-inner { grid-template-columns: 1fr; }
    .why-us-img { max-width: 400px; margin: 0 auto; }
    .offer-grid { grid-template-columns: 1fr; }
    .location-inner { grid-template-columns: 1fr; }
    .location-map { min-height: 350px; }
    .location-map iframe { min-height: 350px; }
    .img-break { height: 360px; }
}
@media (max-width: 640px) {
    .hero-badge { position: static; margin-top: 20px; display: inline-flex; gap: 8px; align-items: center; }
    .hero-badge .big { font-size: 24px; }
    .why-us-stats { grid-template-columns: 1fr; }
}
