/* =====================================================
   HARMAN CABS - Premium Luxury Theme
   Primary: Yellow | Secondary: Royal Blue | Accent: Red
   ===================================================== */

:root {
    --hc-yellow: #FFC400;
    --hc-yellow-dark: #E6A800;
    --hc-royal-blue: #1B3B8C;
    --hc-royal-blue-dark: #12285F;
    --hc-red: #E52D27;
    --hc-white: #FFFFFF;
    --hc-dark: #14161F;
    --hc-gray: #6C7280;
    --hc-light-bg: #F7F8FB;
    --hc-radius: 18px;
    --hc-shadow: 0 10px 40px rgba(27, 59, 140, 0.12);
    --hc-transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    color: var(--hc-dark);
    background: var(--hc-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    color: var(--hc-royal-blue-dark);
}

a { text-decoration: none; transition: var(--hc-transition); }

/* ---------- Buttons ---------- */
.btn-hc-primary {
    background: linear-gradient(135deg, var(--hc-yellow) 0%, var(--hc-yellow-dark) 100%);
    color: var(--hc-royal-blue-dark);
    font-weight: 700;
    border: none;
    border-radius: 50px;
    padding: 14px 34px;
    box-shadow: 0 8px 20px rgba(255, 196, 0, 0.35);
    transition: var(--hc-transition);
}
.btn-hc-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(255, 196, 0, 0.45);
    color: var(--hc-royal-blue-dark);
}
.btn-hc-outline {
    border: 2px solid var(--hc-royal-blue);
    color: var(--hc-royal-blue);
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    background: transparent;
}
.btn-hc-outline:hover {
    background: var(--hc-royal-blue);
    color: var(--hc-white);
    transform: translateY(-3px);
}

/* ---------- Header / Navbar ---------- */
.hc-topbar {
    background: var(--hc-royal-blue-dark);
    color: var(--hc-white);
    font-size: 14px;
    padding: 8px 0;
}
.hc-topbar a { color: var(--hc-yellow); }

.hc-navbar {
    background: var(--hc-white);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}
.hc-navbar .nav-link {
    color: var(--hc-dark);
    font-weight: 600;
    margin: 0 10px;
    position: relative;
}
.hc-navbar .nav-link:hover,
.hc-navbar .nav-link.active {
    color: var(--hc-royal-blue);
}
.hc-navbar .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--hc-yellow);
    border-radius: 3px;
}

/* ---------- Hero Slider ---------- */
.hc-hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.hc-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(18,40,95,0.88) 0%, rgba(27,59,140,0.55) 60%, rgba(255,196,0,0.15) 100%);
}
.hc-hero-content {
    position: relative;
    z-index: 2;
    color: var(--hc-white);
    animation: hcFadeUp 1s ease both;
}
.hc-hero-content h1 {
    color: var(--hc-white);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
}
.hc-hero-content .hc-badge {
    display: inline-block;
    background: rgba(255,196,0,0.15);
    border: 1px solid var(--hc-yellow);
    color: var(--hc-yellow);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 18px;
}

@keyframes hcFadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- Glass Booking Form ---------- */
.hc-booking-form {
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: var(--hc-radius);
    padding: 30px;
    box-shadow: var(--hc-shadow);
}
.hc-booking-form label {
    color: var(--hc-white);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
}
.hc-booking-form .form-control,
.hc-booking-form .form-select {
    border-radius: 10px;
    border: none;
    padding: 12px 14px;
    background: rgba(255,255,255,0.92);
}
.hc-booking-form .form-control:focus,
.hc-booking-form .form-select:focus {
    box-shadow: 0 0 0 3px rgba(255,196,0,0.5);
}

/* ---------- Section Titles ---------- */
.hc-section {
    padding: 90px 0;
}
.hc-section-alt {
    background: var(--hc-light-bg);
}
.hc-eyebrow {
    color: var(--hc-red);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
}
.hc-section-title {
    font-size: 2.4rem;
    margin-bottom: 12px;
}
.hc-section-desc {
    color: var(--hc-gray);
    max-width: 680px;
}

/* ---------- Rounded / Glass Cards ---------- */
.hc-card {
    background: var(--hc-white);
    border-radius: var(--hc-radius);
    box-shadow: var(--hc-shadow);
    padding: 30px;
    transition: var(--hc-transition);
    border: 1px solid rgba(27,59,140,0.06);
}
.hc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(27,59,140,0.18);
}
.hc-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--hc-yellow), var(--hc-yellow-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--hc-royal-blue-dark);
    margin-bottom: 18px;
}

/* ---------- Fleet Cards ---------- */
.hc-fleet-card {
    border-radius: var(--hc-radius);
    overflow: hidden;
    box-shadow: var(--hc-shadow);
    background: var(--hc-white);
    transition: var(--hc-transition);
}
.hc-fleet-card:hover { transform: translateY(-6px); }
.hc-fleet-card img { height: 220px; width: 100%; object-fit: cover; }
.hc-fleet-card .hc-fleet-body { padding: 22px; }
.hc-fleet-specs span {
    font-size: 12px;
    color: var(--hc-gray);
    margin-right: 12px;
}

/* ---------- Counters ---------- */
.hc-counter-box {
    text-align: center;
    color: var(--hc-white);
}
.hc-counter-box .num {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--hc-yellow);
}
.hc-counters-section {
    background: linear-gradient(120deg, var(--hc-royal-blue-dark), var(--hc-royal-blue));
    padding: 60px 0;
}

/* ---------- Testimonials ---------- */
.hc-testimonial-card {
    background: var(--hc-white);
    border-radius: var(--hc-radius);
    padding: 28px;
    box-shadow: var(--hc-shadow);
}
.hc-testimonial-card .stars { color: var(--hc-yellow); }

/* ---------- CTA ---------- */
.hc-cta {
    background: linear-gradient(120deg, var(--hc-royal-blue-dark), var(--hc-royal-blue) 70%, var(--hc-red) 140%);
    border-radius: 24px;
    padding: 60px;
    color: var(--hc-white);
    text-align: center;
}

/* ---------- Footer v2 (gradient card style) ---------- */
.hc-footer-v2 {
    padding: 40px 0 40px;
    background: var(--hc-white);
}
.hc-footer-v2-card {
    background: linear-gradient(120deg, var(--hc-royal-blue-dark) 0%, var(--hc-royal-blue) 45%, #7a1f2b 85%, var(--hc-red) 130%);
    border-radius: 28px;
    padding: 50px 50px 25px;
    color: rgba(255,255,255,0.75);
    box-shadow: 0 20px 50px rgba(18,40,95,0.25);
}
.hc-footer-v2-brand {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--hc-white);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.hc-footer-v2-brand span { color: var(--hc-yellow); }
.hc-footer-v2-card p { color: rgba(255,255,255,0.7); line-height: 1.8; font-size: 14.5px; }
.hc-footer-v2-card a { color: rgba(255,255,255,0.75); }
.hc-footer-v2-card a:hover { color: var(--hc-yellow); }

.hc-footer-v2-heading {
    color: var(--hc-white);
    font-weight: 700;
    margin-bottom: 18px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.hc-footer-v2-links li { margin-bottom: 10px; }
.hc-footer-v2-links a { font-size: 14.5px; transition: var(--hc-transition); }
.hc-footer-v2-links a:hover { padding-left: 4px; }

.hc-footer-v2-newsletter {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    padding: 4px 4px 4px 18px;
}
.hc-footer-v2-newsletter input {
    background: transparent;
    border: none;
    outline: none;
    color: var(--hc-white);
    flex: 1;
    font-size: 14px;
    padding: 10px 0;
}
.hc-footer-v2-newsletter input::placeholder { color: rgba(255,255,255,0.55); }
.hc-footer-v2-newsletter button {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--hc-yellow);
    color: var(--hc-royal-blue-dark);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: var(--hc-transition);
}
.hc-footer-v2-newsletter button:hover { background: var(--hc-yellow-dark); transform: scale(1.06); }

.hc-footer-v2-social {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--hc-white);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    transition: var(--hc-transition);
}
.hc-footer-v2-social:hover {
    background: var(--hc-yellow);
    color: var(--hc-royal-blue-dark);
    border-color: var(--hc-yellow);
    transform: translateY(-3px);
}

.hc-footer-v2-divider {
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin: 35px 0 20px;
}
.hc-footer-v2-bottom {
    font-size: 13.5px;
    color: rgba(255,255,255,0.6);
    padding-bottom: 10px;
}
.hc-footer-v2-bottom { text-align: center; }

@media (max-width: 768px) {
    .hc-footer-v2-card { padding: 35px 24px 20px; border-radius: 20px; }
}

/* ---------- Sticky Buttons ---------- */
.hc-sticky-btns {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.hc-sticky-btns a {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--hc-white);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    animation: hcPulse 2.2s infinite;
}
.hc-sticky-btns .whatsapp { background: #25D366; }
.hc-sticky-btns .call { background: var(--hc-red); }
.hc-back-to-top {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--hc-royal-blue);
    color: var(--hc-white) !important;
    display: flex; align-items: center; justify-content: center;
}
@keyframes hcPulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

@media (max-width: 768px) {
    .hc-hero-content h1 { font-size: 2.1rem; }
    .hc-section { padding: 60px 0; }
}