/* ==========================================================
   TUK TUK HIRING PAGE — tuktuk.css
   Bold Yellow / Black theme — matching reference image
   ========================================================== */

.tuktuk-page {
    font-family: 'DM Sans', sans-serif;
    padding-top: 70px;
}

@media (max-width: 991px) {
    .tuktuk-page { padding-top: 60px; }
}


/* ----------------------------------------------------------
   1. HERO — Blue-sky gradient (same as other pages)
   ---------------------------------------------------------- */

.tuktuk-hero {
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 40%, #fef3c7 100%);
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.tuktuk-hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(234,179,8,0.12) 0%, transparent 70%);
    border-radius: 50%;
}

/* Badge */
.tuktuk-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(234,179,8,0.12);
    border: 1px solid rgba(234,179,8,0.35);
    color: #92400e;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
}

/* Title */
.tuktuk-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
}

.tuktuk-hero-title span { color: #eab308; }

/* Subtitle */
.tuktuk-hero-subtitle {
    font-size: 1.05rem;
    color: #475569;
    max-width: 520px;
    line-height: 1.7;
}

/* Hero image */
.tuktuk-hero-img {
    width: 100%;
    max-width: 520px;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(234,179,8,0.22);
}

/* WhatsApp button */
.btn-whatsapp-tuktuk {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37,211,102,0.35);
    transition: all 0.3s ease;
}

.btn-whatsapp-tuktuk:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(37,211,102,0.45);
}

.btn-whatsapp-tuktuk i { font-size: 1.3rem; }


/* ----------------------------------------------------------
   2. SECTION HEADING COMMON
   ---------------------------------------------------------- */

.tuktuk-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.tuktuk-section-sub {
    font-size: 0.95rem;
    color: #64748b;
    max-width: 480px;
    margin: 0 auto;
}


/* ----------------------------------------------------------
   3. WHY CHOOSE US — Feature Cards
   ---------------------------------------------------------- */

.tuktuk-features {
    background: #ffffff;
    padding: 70px 0;
}

.tuktuk-feature-card {
    background: #fefce8;
    border: 1px solid #fde047;
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.tuktuk-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(234,179,8,0.18);
}

.tuktuk-feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #fef9c3, #fde047);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.6rem;
    color: #a16207;
}

.tuktuk-feature-card h5 {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.tuktuk-feature-card p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}


/* ----------------------------------------------------------
   4. RIDE OPTIONS — Type Chips
   ---------------------------------------------------------- */

.tuktuk-types-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 60px 0;
}

/* Override section title for dark bg */
.tuktuk-types-section .tuktuk-section-title { color: #ffffff; }
.tuktuk-types-section .tuktuk-section-sub   { color: rgba(255,255,255,0.65); }

.tuktuk-type-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: #2d2d2d;
    border: 1.5px solid #eab308;
    border-radius: 16px;
    padding: 22px 12px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fde047;
    transition: all 0.3s ease;
    cursor: default;
    height: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tuktuk-type-chip i {
    font-size: 1.8rem;
    color: #eab308;
}

.tuktuk-type-chip:hover {
    background: #eab308;
    color: #1a1a1a;
    border-color: #eab308;
    box-shadow: 0 6px 20px rgba(234,179,8,0.4);
    transform: translateY(-4px);
}

.tuktuk-type-chip:hover i { color: #1a1a1a; }


/* ----------------------------------------------------------
   5. HOW IT WORKS — Steps
   ---------------------------------------------------------- */

.tuktuk-steps-section {
    background: #ffffff;
    padding: 70px 0;
}

.tuktuk-step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 36px;
}

.tuktuk-step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #eab308, #ca8a04);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #1a1a1a;
    box-shadow: 0 4px 16px rgba(234,179,8,0.4);
}

.tuktuk-step-text h6 {
    font-weight: 700;
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.tuktuk-step-text p {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* CTA Box (right side) — bold black/yellow */
.tuktuk-cta-box {
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    border: 3px solid #eab308;
    border-radius: 28px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tuktuk-cta-box::before {
    content: '🛺';
    position: absolute;
    font-size: 10rem;
    opacity: 0.05;
    bottom: -20px;
    right: -20px;
    line-height: 1;
}

.tuktuk-cta-icon {
    font-size: 5rem;
    color: #eab308;
    display: block;
    margin-bottom: 24px;
}

.tuktuk-cta-title {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 1.4rem;
}

.tuktuk-cta-sub {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.6;
}


/* ----------------------------------------------------------
   6. TALK TO US CTA SECTION
   ---------------------------------------------------------- */

.tuktuk-cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #ca8a04 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.tuktuk-cta-section::before {
    content: '🛺';
    position: absolute;
    font-size: 18rem;
    color: rgba(255,255,255,0.03);
    right: -40px; top: -40px;
    line-height: 1;
}

.tuktuk-cta-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}

.tuktuk-cta-text {
    color: rgba(255,255,255,0.75);
    font-size: 1rem;
    max-width: 560px;
    line-height: 1.6;
    margin: 0;
}


/* ----------------------------------------------------------
   7. TAGLINE
   ---------------------------------------------------------- */

.tuktuk-tagline {
    background: #fefce8;
    padding: 36px 0;
    text-align: center;
    border-top: 3px solid #eab308;
}

.tuktuk-tagline h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a1a;
}


/* ----------------------------------------------------------
   8. MOBILE
   ---------------------------------------------------------- */

@media (max-width: 768px) {
    .tuktuk-hero-title    { font-size: 1.9rem; }
    .tuktuk-section-title { font-size: 1.5rem; }
    .tuktuk-cta-heading   { font-size: 1.5rem; }
    .btn-whatsapp-tuktuk  { font-size: 0.9rem; padding: 12px 24px; }
    .tuktuk-hero-img      { border-radius: 16px; }
    .tuktuk-type-chip     { font-size: 0.75rem; padding: 16px 8px; }
    .tuktuk-type-chip i   { font-size: 1.4rem; }
}