﻿/* ----- RESET & BASE ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
    background: #faf8f5;
    color: #1e2a3a;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    display: block;
}

/* ----- BUTTONS ----- */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #e67e22;
    color: #fff;
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.35);
}

    .btn-primary:hover {
        background: #cf711d;
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(230, 126, 34, 0.45);
    }

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

    .btn-outline:hover {
        background: #fff;
        color: #1e2a3a;
    }

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

    .btn-whatsapp:hover {
        background: #1da851;
        transform: translateY(-3px);
    }

/* ----- HEADER / NAV ----- */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(30, 42, 58, 0.95);
    backdrop-filter: blur(10px);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

    .logo span {
        color: #e67e22;
    }

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    font-weight: 500;
}

    .nav-links a {
        color: rgba(255,255,255,0.8);
        transition: 0.3s;
        font-size: 0.95rem;
    }

        .nav-links a:hover,
        .nav-links a.active {
            color: #e67e22;
        }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

    .nav-toggle span {
        display: block;
        width: 26px;
        height: 3px;
        background: #fff;
        border-radius: 4px;
        transition: 0.3s;
    }

/* ----- PAGE HERO (each page can override) ----- */
.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #0f1a2b, #1e2a3a);
    color: #fff;
    text-align: center;
}

    .page-hero h1 {
        font-size: 2.8rem;
        font-weight: 800;
    }

        .page-hero h1 span {
            color: #e67e22;
        }

    .page-hero p {
        max-width: 640px;
        margin: 12px auto 0;
        color: rgba(255,255,255,0.8);
        font-size: 1.2rem;
    }

/* ----- SECTION COMMON ----- */
section {
    padding: 70px 0;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

    .section-title span {
        color: #e67e22;
    }

.section-sub {
    text-align: center;
    color: #5a6a7a;
    max-width: 640px;
    margin: 0 auto 48px;
    font-size: 1.1rem;
}

/* ----- SERVICES, PACKAGES, DESTINATIONS (cards) ----- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

    .card:hover {
        transform: translateY(-6px);
        border-color: #e67e22;
    }

    .card .icon {
        font-size: 2.8rem;
        margin-bottom: 14px;
    }

    .card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .card p {
        color: #5a6a7a;
        font-size: 0.95rem;
    }

/* Destinations (small pills) */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
}

.dest-item {
    background: #fff;
    padding: 16px 12px;
    border-radius: 14px;
    text-align: center;
    font-weight: 600;
    border: 1px solid #eee;
    transition: 0.3s;
}

    .dest-item:hover {
        border-color: #e67e22;
        transform: scale(1.02);
    }

/* ----- ABOUT / CONTACT (dark bg) ----- */
.dark-section {
    background: #1e2a3a;
    color: #fff;
}

    .dark-section .section-title span {
        color: #e67e22;
    }

    .dark-section .section-sub {
        color: rgba(255,255,255,0.7);
    }

.contact-details {
    list-style: none;
    margin-top: 20px;
}

    .contact-details li {
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        gap: 16px;
        color: rgba(255,255,255,0.85);
    }

        .contact-details li strong {
            color: #fff;
            min-width: 70px;
        }

    .contact-details a {
        color: #e67e22;
    }

/* ----- FOOTER ----- */
footer {
    background: #0f1a2b;
    padding: 30px 0;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

    footer a {
        color: #e67e22;
    }

/* ----- RESPONSIVE ----- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        padding: 20px 0 10px;
        background: rgba(30,42,58,0.98);
        border-radius: 0 0 16px 16px;
    }

        .nav-links.open {
            display: flex;
        }

    .nav-toggle {
        display: flex;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    section {
        padding: 50px 0;
    }

    .contact-details li {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .page-hero {
        padding: 60px 0 40px;
    }
}
/* =============================================
   NEW SECTIONS STYLES (Sections 1 to 6)
   ============================================= */

/* ----- Section 1: Trust Badges & Stats ----- */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 50px;
    padding: 20px 0 10px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5a6a7a;
    font-weight: 500;
}

    .trust-badge .icon {
        font-size: 1.8rem;
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    text-align: center;
    margin-top: 20px;
}

.stat-item {
    background: #fff;
    padding: 30px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #f0eeeb;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #e67e22;
    line-height: 1.2;
}

.stat-label {
    color: #5a6a7a;
    font-weight: 500;
    margin-top: 6px;
}

/* ----- Section 2: Instant Quote Form ----- */
.quote-form {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 50px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}

    .quote-form .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }

    .quote-form .form-group {
        margin-bottom: 18px;
    }

    .quote-form label {
        display: block;
        font-weight: 600;
        margin-bottom: 6px;
        font-size: 0.9rem;
        color: #1e2a3a;
    }

    .quote-form input,
    .quote-form select,
    .quote-form textarea {
        width: 100%;
        padding: 12px 16px;
        border-radius: 12px;
        border: 1.5px solid #e5e7eb;
        font-size: 1rem;
        transition: 0.3s;
        background: #fafafa;
    }

        .quote-form input:focus,
        .quote-form select:focus,
        .quote-form textarea:focus {
            outline: none;
            border-color: #e67e22;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(230,126,34,0.15);
        }

    .quote-form textarea {
        resize: vertical;
        min-height: 80px;
    }

    .quote-form .btn {
        width: 100%;
    }

/* Floating WhatsApp (sticky) */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    background: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
    transition: 0.3s;
    text-decoration: none;
}

    .whatsapp-float:hover {
        transform: scale(1.08);
        background: #1da851;
    }

/* ----- Section 3: Blog / Content ----- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: 0.3s;
}

    .blog-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0,0,0,0.07);
    }

    .blog-card .blog-img {
        height: 200px;
        background: #d1d5db;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #6b7280;
        font-size: 3rem;
    }

    .blog-card .blog-content {
        padding: 22px 24px 28px;
    }

    .blog-card .blog-tag {
        display: inline-block;
        background: #e67e22;
        color: #fff;
        font-size: 0.7rem;
        font-weight: 700;
        padding: 4px 12px;
        border-radius: 50px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .blog-card h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .blog-card p {
        color: #5a6a7a;
        font-size: 0.95rem;
    }

    .blog-card a {
        color: #e67e22;
        font-weight: 600;
    }

/* ----- Section 4: Visual / Gallery & Video ----- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.gallery-item {
    aspect-ratio: 1 / 1;
    background: #d1d5db;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #6b7280;
    transition: 0.3s;
    cursor: pointer;
    overflow: hidden;
}

    .gallery-item:hover {
        transform: scale(1.03);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* ----- Section 5: Special Offers ----- */
.offer-banner {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(230,126,34,0.3);
}

    .offer-banner h3 {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 6px;
    }

    .offer-banner p {
        font-size: 1.1rem;
        opacity: 0.95;
        margin-bottom: 16px;
    }

    .offer-banner .btn {
        background: #fff;
        color: #d35400;
        box-shadow: none;
    }

        .offer-banner .btn:hover {
            background: #f0f0f0;
            transform: scale(1.02);
        }

/* ----- Section 6: Upgraded Footer ----- */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: left;
    padding: 20px 0 30px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 20px;
}

    .footer-grid h4 {
        color: #fff;
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    .footer-grid ul {
        list-style: none;
    }

        .footer-grid ul li {
            margin-bottom: 10px;
        }

            .footer-grid ul li a {
                color: rgba(255,255,255,0.7);
                transition: 0.3s;
            }

                .footer-grid ul li a:hover {
                    color: #e67e22;
                }

    .footer-grid .social-links {
        display: flex;
        gap: 12px;
        margin-top: 12px;
    }

        .footer-grid .social-links a {
            background: rgba(255,255,255,0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #fff;
            transition: 0.3s;
        }

            .footer-grid .social-links a:hover {
                background: #e67e22;
            }

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

    .newsletter-form input {
        flex: 1;
        padding: 12px 16px;
        border-radius: 50px;
        border: none;
        outline: none;
        font-size: 0.95rem;
    }

    .newsletter-form .btn {
        padding: 12px 24px;
        background: #e67e22;
        color: #fff;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
    }

        .newsletter-form .btn:hover {
            background: #cf711d;
        }

/* ----- Responsive Tweaks for New Sections ----- */
@media (max-width: 768px) {
    .quote-form {
        padding: 25px 20px;
    }

        .quote-form .form-row {
            grid-template-columns: 1fr;
        }

    .offer-banner h3 {
        font-size: 1.6rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }

        .footer-grid .social-links {
            justify-content: center;
        }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   FLEET / VEHICLE SHOWCASE
   ============================================= */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.fleet-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

    .fleet-card:hover {
        transform: translateY(-8px);
        border-color: #e67e22;
        box-shadow: 0 16px 40px rgba(0,0,0,0.08);
    }

    .fleet-card .fleet-image {
        height: 200px;
        padding: 10px;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 4rem;
        color: #6b7280;
        border-bottom: 1px solid #eee;
    }

        /* When you add real images, use this */
        .fleet-card .fleet-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .fleet-card .fleet-body {
        padding: 24px 24px 28px;
    }

        .fleet-card .fleet-body h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 4px;
            color: #1e2a3a;
        }

        .fleet-card .fleet-body .fleet-subtitle {
            color: #e67e22;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .fleet-card .fleet-body .fleet-details {
            list-style: none;
            margin: 12px 0 18px;
        }

            .fleet-card .fleet-body .fleet-details li {
                display: flex;
                align-items: center;
                gap: 10px;
                padding: 4px 0;
                color: #5a6a7a;
                font-size: 0.95rem;
            }

                .fleet-card .fleet-body .fleet-details li .icon {
                    font-size: 1.2rem;
                    width: 24px;
                    text-align: center;
                }

        .fleet-card .fleet-body .btn {
            width: 100%;
            text-align: center;
            padding: 12px;
            font-size: 0.95rem;
        }

    /* Optional: price badge */
    .fleet-card .price-badge {
        display: inline-block;
        background: #e67e22;
        color: #fff;
        font-weight: 700;
        padding: 4px 16px;
        border-radius: 50px;
        font-size: 0.85rem;
        margin-top: 6px;
    }

/* =============================================
   FLEET PAGE – EXTRA STYLES
   ============================================= */

/* Fleet spec list (vertical details) */
.fleet-specs {
    list-style: none;
    margin: 12px 0 18px;
}

    .fleet-specs li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 5px 0;
        color: #2a3a4a;
        font-size: 0.95rem;
        border-bottom: 1px solid #f3f1ee;
    }

        .fleet-specs li:last-child {
            border-bottom: none;
        }

        .fleet-specs li .spec-icon {
            font-size: 1.2rem;
            width: 28px;
            text-align: center;
        }

        .fleet-specs li .spec-label {
            font-weight: 500;
            color: #1e2a3a;
            min-width: 90px;
        }

        .fleet-specs li .spec-value {
            color: #5a6a7a;
        }

/* Comparison Table */
.fleet-comparison {
    overflow-x: auto;
    margin: 30px 0 10px;
}

    .fleet-comparison table {
        width: 100%;
        border-collapse: collapse;
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    }

    .fleet-comparison th {
        background: #1e2a3a;
        color: #fff;
        font-weight: 600;
        padding: 16px 20px;
        text-align: left;
    }

    .fleet-comparison td {
        padding: 14px 20px;
        border-bottom: 1px solid #f0eeeb;
        color: #2a3a4a;
    }

    .fleet-comparison tr:last-child td {
        border-bottom: none;
    }

    .fleet-comparison tr:hover td {
        background: #faf8f5;
    }

    .fleet-comparison .highlight {
        color: #e67e22;
        font-weight: 600;
    }

/* Fleet CTA Banner (for dedicated page) */
.fleet-cta-banner {
    background: linear-gradient(135deg, #0f1a2b, #1e2a3a);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    color: #fff;
    margin-top: 20px;
}

    .fleet-cta-banner h3 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .fleet-cta-banner p {
        color: rgba(255,255,255,0.8);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto 24px;
    }

@media (max-width: 768px) {
    .fleet-comparison th,
    .fleet-comparison td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .fleet-cta-banner {
        padding: 30px 20px;
    }

        .fleet-cta-banner h3 {
            font-size: 1.6rem;
        }

    .fleet-specs li .spec-label {
        min-width: 70px;
    }
}


/* =============================================
   VEHICLE BOOKING ENQUIRY FORM
   ============================================= */
.booking-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 45px 50px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}

    .booking-form-wrapper .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .booking-form-wrapper .form-group {
        margin-bottom: 18px;
    }

    .booking-form-wrapper label {
        display: block;
        font-weight: 600;
        margin-bottom: 6px;
        font-size: 0.9rem;
        color: #1e2a3a;
    }

        .booking-form-wrapper label .required {
            color: #e74c3c;
            margin-left: 2px;
        }

    .booking-form-wrapper input,
    .booking-form-wrapper select,
    .booking-form-wrapper textarea {
        width: 100%;
        padding: 13px 16px;
        border-radius: 12px;
        border: 1.5px solid #e5e7eb;
        font-size: 1rem;
        transition: 0.3s;
        background: #fafafa;
        font-family: inherit;
    }

        .booking-form-wrapper input:focus,
        .booking-form-wrapper select:focus,
        .booking-form-wrapper textarea:focus {
            outline: none;
            border-color: #e67e22;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(230,126,34,0.12);
        }

    .booking-form-wrapper textarea {
        resize: vertical;
        min-height: 90px;
    }

    .booking-form-wrapper .btn-submit {
        width: 100%;
        padding: 16px;
        font-size: 1.1rem;
        font-weight: 700;
        border: none;
        border-radius: 50px;
        background: #25d366;
        color: #fff;
        cursor: pointer;
        transition: 0.3s;
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

        .booking-form-wrapper .btn-submit:hover {
            background: #1da851;
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
        }

        .booking-form-wrapper .btn-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

    .booking-form-wrapper .form-note {
        text-align: center;
        font-size: 0.85rem;
        color: #5a6a7a;
        margin-top: 16px;
    }

        .booking-form-wrapper .form-note a {
            color: #e67e22;
            font-weight: 600;
        }

/* Success message (hidden by default) */
.booking-success {
    display: none;
    text-align: center;
    padding: 40px 30px;
    background: #f0fdf4;
    border-radius: 16px;
    border: 2px solid #86efac;
}

    .booking-success .icon {
        font-size: 3.5rem;
        margin-bottom: 12px;
    }

    .booking-success h3 {
        color: #166534;
        font-size: 1.6rem;
    }

    .booking-success p {
        color: #14532d;
        margin-top: 6px;
    }

@media (max-width: 768px) {
    .booking-form-wrapper {
        padding: 25px 20px;
    }

        .booking-form-wrapper .form-row {
            grid-template-columns: 1fr;
        }
}



/* =============================================
   HERO SLIDER (replaces page-hero)
   ============================================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    min-height: 500px;
    overflow: hidden;
    background: #1e2a3a; /* fallback color */
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
    flex: 0 0 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    /* Dark overlay on slides for text readability */
    .slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(15, 26, 43, 0.55);
        z-index: 1;
    }

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px 30px;
    text-align: center;
    color: #fff;
}

    .slide-content h1 {
        font-size: 3.2rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 16px;
        text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    }

        .slide-content h1 span {
            color: #e67e22;
        }

    .slide-content p {
        font-size: 1.25rem;
        color: rgba(255,255,255,0.9);
        max-width: 600px;
        margin: 0 auto 28px;
        text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    }

    .slide-content .btn-group {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

    .slider-btn:hover {
        background: #e67e22;
        border-color: #e67e22;
        transform: translateY(-50%) scale(1.05);
    }

    .slider-btn.prev {
        left: 20px;
    }

    .slider-btn.next {
        right: 20px;
    }

/* Dots / Pagination */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

    .slider-dots .dot {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: rgba(255,255,255,0.4);
        cursor: pointer;
        transition: 0.3s;
        border: 2px solid transparent;
    }

        .slider-dots .dot.active {
            background: #e67e22;
            border-color: #fff;
            transform: scale(1.2);
        }

        .slider-dots .dot:hover {
            background: rgba(255,255,255,0.8);
        }

/* Responsive */
@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 2.6rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 90vh;
        min-height: 450px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

        .slider-btn.prev {
            left: 10px;
        }

        .slider-btn.next {
            right: 10px;
        }

    .slider-dots .dot {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 1.6rem;
    }

    .slide-content .btn-group .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}