/* ================ RESET & TYPOGRAPHY ================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #f9fbfc;
    color: #2d3436;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #006d77;
}

a {
    text-decoration: none !important;
    color: inherit;
    transition: all 0.3s ease;
}

/* ================ CONTAINER ================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================ HEADER ================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 109, 119, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.desktop-nav a {
    color: white;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e09f3e;
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

.drawer-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.drawer-toggle span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* ================ DRAWER ================ */
.drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: #006d77;
    transition: right 0.4s ease;
    z-index: 2000;
    padding-top: 80px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.2);
}

.drawer.open {
    right: 0;
}

.close-drawer {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 36px;
    color: white;
    cursor: pointer;
}

.drawer a {
    display: block;
    padding: 1rem 2rem;
    color: white;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.drawer a:hover,
.drawer a.active {
    background: rgba(224, 159, 62, 0.2);
    color: #e09f3e;
}

/* ================ HERO SLIDER ================ */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 70px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.slide.active { opacity: 1; }

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.7));
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    max-width: 900px;
    width: 90%;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
}

.hero-content h1 span {
    color: #e09f3e;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #e09f3e;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(224, 159, 62, 0.3);
    transition: all 0.3s ease;
}

.cta:hover {
    background: #d48a2a;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(224, 159, 62, 0.4);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active,
.dot:hover {
    background: #e09f3e;
    transform: scale(1.3);
}

/* ================ SECTIONS ================ */
section {
    padding: 100px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #e09f3e;
    display: block;
    margin: 15px auto;
    border-radius: 2px;
}

/* Why Choose */
.why-choose {
    background: white;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    width: 320px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.4s;
    border: 1px solid #f0f4f8;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: #e6f3f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #006d77;
}

/* Services */
.services-rates {
    background: linear-gradient(135deg, #f0f9f9 0%, #e6f3f3 100%);
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #444;
    font-weight: 500;
}

.rates-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.rate-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    width: 340px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: 0.4s;
}

.rate-card:hover {
    transform: translateY(-12px);
}

.rate-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.rate-info {
    padding: 1.8rem;
    text-align: center;
}

.rate-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #006d77;
}

.price, .upfront {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: #2d3436;
}

.order-btn {
    margin-top: 1rem;
    padding: 0.8rem 2rem;
    background: #25D366;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.order-btn:hover {
    background: #1ebe57;
    transform: scale(1.05);
}

/* FAQs */
.faqs-section {
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-list details {
    background: #f8fbfc;
    margin: 1rem 0;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    border-left: 4px solid #e09f3e;
}

.faq-list summary {
    font-weight: 600;
    cursor: pointer;
    color: #006d77;
    font-size: 1.1rem;
    list-style: none;
    position: relative;
}

.faq-list summary::after {
    content: '+';
    position: absolute;
    right: 0;
    font-weight: bold;
    color: #e09f3e;
}

.faq-list details[open] summary::after {
    content: '−';
}

/* Banner */
.banner {
    background: linear-gradient(rgba(0,109,119,0.95), rgba(0,109,119,0.95)), url('https://images.unsplash.com/photo-1512290924381-0b813c5c6f9c?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') center/cover;
    color: white;
    text-align: center;
    padding: 5rem 20px;
}

.banner h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #e0dada;
}

.banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.banner-btn {
    padding: 1rem 2.5rem;
    background: #25D366;
    color: white;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.banner-btn:hover {
    background: #1ebe57;
    transform: translateY(-5px);
}

/* Footer */
.main-footer {
    background: #006d77;
    color: white;
    padding: 4rem 20px 2rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: #e09f3e;
}

.footer-col a {
    color: #ddd;
    display: block;
    margin: 0.8rem 0;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #e09f3e;
    padding-left: 5px;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: #25D366;
    color: white;
    font-size: 1.8rem;
    border-radius: 50%;
    transition: 0.3s;
}

.whatsapp-link:hover {
    background: #1ebe57;
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #ccc;
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #1ebe57;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    animation: bounce 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ================ RESPONSIVE ================ */
@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .drawer-toggle { display: flex; }
    .hero-content h1 { font-size: 2.5rem; }
    .hero-content p { font-size: 1.1rem; }
    .cards-container, .rates-grid { flex-direction: column; align-items: center; }
    .feature-card, .rate-card { width: 90%; max-width: 350px; }
    .footer-container { flex-direction: column; text-align: center; }
}

/* HERO SUBTITLE – ELEGANT & RESPONSIVE */
.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.hero-subtitle .location,
.hero-subtitle .service-type {
    display: inline-block;
    font-weight: 500;
    color: #e09f3e;
    font-size: 1.1rem;
}

.hero-subtitle .location::before,
.hero-subtitle .service-type::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #e09f3e;
    border-radius: 50%;
    margin: 0 12px;
    vertical-align: middle;
}

.hero-subtitle .location::before { content: none; margin-left: 0; }

@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    .hero-subtitle br { display: none; }
    .hero-subtitle .location,
    .hero-subtitle .service-type {
        font-size: 1rem;
    }
}

/* SERVICE BADGES – INCALL / OUTCALL */
.service-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem auto 3rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.badge.incall {
    background: linear-gradient(135deg, #006d77, #008c99);
}

.badge.outcall {
    background: linear-gradient(135deg, #e09f3e, #f4b869);
}

.badge i {
    font-size: 1.1rem;
}

@media (max-width: 480px) {
    .service-badges { gap: 1rem; }
    .badge { font-size: 0.9rem; padding: 0.5rem 1rem; }
}
/* Enhanced FAQ Styling */
.faq-list details[open] p {
    line-height: 1.7;
    padding: 0.5rem 0;
}

.faq-list details[open] strong {
    color: #006d77;
}

/* Optional: Add icons to Incall/Outcall FAQ */
.faq-list details:nth-child(3) summary::before {
    content: "Location Options";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
    color: #e09f3e;
}

.faq-list details:nth-child(3)[open] p {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 1rem;
}

.faq-list details:nth-child(3)[open] p strong {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #006d77;
    font-size: 1.05rem;
}

.faq-list details:nth-child(3)[open] p strong::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.1rem;
    color: #e09f3e;
}

.faq-list details:nth-child(3)[open] p strong:first-of-type::before {
    content: "Home";
}
.faq-list details:nth-child(3)[open] p strong:last-of-type::before {
    content: "Car";
}

/* SERVICE BADGES – INCALL / OUTCALL */
.service-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem auto 3rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.badge.incall {
    background: linear-gradient(135deg, #006d77, #008c99);
}

.badge.outcall {
    background: linear-gradient(135deg, #e09f3e, #f4b869);
}

.badge i {
    font-size: 1.1rem;
}

/* Mobile Fix – Force display */
@media (max-width: 480px) {
    .service-badges {
        gap: 1rem;
        flex-direction: row;
        justify-content: center;
    }
    .badge {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        min-width: 140px;
    }
}

/* TESTIMONIALS – 3-CARD CAROUSEL */
.testimonials-section {
    padding: 100px 20px;
    background: #f8fdfc;
    overflow: hidden;
}

.testimonials-carousel {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

.testimonial-card {
    min-width: calc(100% / 3);
    padding: 1.5rem;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .testimonial-card {
        min-width: 50%;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 100%;
    }
}

/* Card Styling */
.testimonial-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    margin: 0 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.client-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #e09f3e;
    flex-shrink: 0;
    margin-right: 1.5rem;
}

.client-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    flex: 1;
    padding: 0.5rem 0;
}

.quote-icon {
    font-size: 3.5rem;
    color: #e09f3e;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: -0.8rem;
    font-weight: bold;
}

.testimonial-text {
    font-size: 1rem;
    color: #444;
    font-style: italic;
    line-height: 1.6;
    margin: 0.8rem 0;
}

.client-name {
    font-weight: 600;
    color: #006d77;
    font-size: 0.95rem;
    margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .testimonial-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        margin: 0 8px;
    }
    .client-img {
        width: 70px;
        height: 70px;
        margin: 0 auto 1rem;
    }
    .quote-icon {
        font-size: 3rem;
    }
}