/* ═══════════════════════════════════════════════
   Camel Towing — towing.css
   Towing Services page styles.
   ═══════════════════════════════════════════════ */

/* ─── Hero ─── */
.tow-hero {
    padding: 140px 0 80px;
    background: linear-gradient(168deg, var(--white) 0%, var(--pink-light) 100%);
}
.tow-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}
.tow-hero h1 {
    font-size: clamp(40px, 5vw, 64px);
    margin-bottom: 20px;
    line-height: 1.05;
}
.tow-hero .highlight {
    color: var(--pink);
    position: relative;
    display: inline-block;
}
.tow-hero .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 0; right: 0;
    height: 8px;
    background: var(--pink);
    opacity: 0.15;
    border-radius: 4px;
}
.tow-hero-desc {
    font-size: 18px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 500px;
    margin-bottom: 32px;
}
.tow-hero-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.04);
}
.tow-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

/* ─── Shared Section ─── */
.tow-section {
    padding: 100px 0;
}
.tow-section:nth-child(even) {
    background: var(--light-gray);
}
.tow-section h2 {
    font-size: clamp(32px, 3.5vw, 48px);
    margin-bottom: 16px;
}
.tow-section-desc {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 560px;
    margin-bottom: 48px;
}

/* ─── Services Grid ─── */
.tow-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.tow-svc-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.04);
    border-radius: var(--radius);
    padding: 36px;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.tow-svc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(233,30,140,0.1);
}
.tow-svc-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: var(--pink-light);
    display: grid;
    place-items: center;
    margin-bottom: 20px;
    color: var(--pink);
}
.tow-svc-card h3 {
    font-size: 20px;
    text-transform: none;
    margin-bottom: 10px;
}
.tow-svc-card p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 16px;
}
.tow-svc-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--pink);
    transition: color 0.3s;
}
.tow-svc-link:hover {
    color: var(--pink-dark);
}

/* ─── Flatbed Section ─── */
.tow-flatbed-section {
    background: var(--white) !important;
}
.tow-flatbed-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
.tow-flatbed-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.tow-flatbed-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/10;
}
.tow-flatbed-content h2 {
    margin-bottom: 16px;
}
.tow-flatbed-content > p {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 24px;
}
.tow-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.tow-benefits li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}

/* ─── Vehicle Types Grid ─── */
.tow-vehicle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}
.tow-vehicle-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 24px;
    background: var(--pink-subtle);
    border: 1px solid rgba(233,30,140,0.05);
    border-radius: 14px;
    transition: transform 0.3s;
}
.tow-vehicle-item:hover {
    transform: translateY(-2px);
}
.tow-vehicle-check {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: var(--pink);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-top: 2px;
    color: #fff;
}
.tow-vehicle-item strong {
    font-size: 15px;
    color: var(--dark);
    display: block;
    margin-bottom: 2px;
}
.tow-vehicle-item p {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

/* ─── Service Area Chips ─── */
.tow-area-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.tow-area-chip {
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}
.tow-area-chip-more {
    background: var(--pink);
    color: #fff;
    border-color: var(--pink);
}

/* ─── CTA Banner ─── */
.tow-cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: #fff;
}
.tow-cta-banner h2 {
    font-size: clamp(28px, 3vw, 44px);
    color: #fff;
    margin-bottom: 16px;
}
.tow-cta-banner p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.6;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .tow-hero-grid { grid-template-columns: 1fr; }
    .tow-hero-right { max-width: 500px; }
    .tow-services-grid { grid-template-columns: 1fr; }
    .tow-flatbed-grid { grid-template-columns: 1fr; }
    .tow-flatbed-img { max-width: 500px; }
}
@media (max-width: 640px) {
    .tow-vehicle-grid { grid-template-columns: 1fr; }
}
