/* 
   Crystal Kia - Premium Design System
   Aesthetic: Modern Luxury, Kia Corporate Palette (Midnight Black, Brushed Metallic, Electric Cyan, Accent Red)
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --color-bg-dark: #070708;
    --color-bg-light: #ffffff;
    --color-card-dark: rgba(20, 20, 25, 0.7);
    --color-card-border: rgba(255, 255, 255, 0.08);

    --color-text-white: #ffffff;
    --color-text-gray: #a1a1aa;
    --color-text-muted: #71717a;
    --color-text-dark: #18181b;

    /* Brand Accents */
    --color-kia-red: #ea1829;
    --color-ev-blue: #00d2ff;
    --color-accent-glow: rgba(0, 210, 255, 0.15);

    /* Layout */
    --header-height: 80px;
    --header-height-mobile: 70px;
    --container-max-width: 1280px;

    /* Typography */
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--color-bg-dark);
    color: var(--color-text-white);
    overflow-x: hidden;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Base Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background-color: #ffffff;
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

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

/* Logo */
.logo-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-link {
    display: block;
    height: 48px;
}

.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

/* Logo height remains constant */

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-list {
    display: flex;
    list-style: none;
    height: 100%;
    align-items: center;
}

.nav-item {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0 1.25rem;
    height: 100%;
    display: flex;
    align-items: center;
    color: #000000;
    /* Black for header links */
    position: relative;
    cursor: pointer;
    transition: var(--transition-fast);
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: #000000;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--color-kia-red);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-item.active .nav-link::after {
    width: calc(100% - 2.5rem);
}

/* Cars menu item specifically triggers mega menu */
.nav-item.has-megamenu {
    position: static;
    /* Needed for full-width dropdown */
}

/* Chevron icon for desktop dropdowns */
.chevron-icon {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    transition: var(--transition-smooth);
}

/* Mega Menu Container */
.megamenu {
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.3s ease;
    z-index: 999;
    padding: 3rem 0;
}

/* Megamenu position remains constant */

/* Show mega menu on hover */
.nav-item.has-megamenu:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Grid Layout for Mega Menu */
.megamenu-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 3rem;
}

.megamenu-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    padding-right: 2.5rem;
}

.megamenu-column-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #71717a;
    /* Zinc 500 */
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.megamenu-column-title .badge {
    font-size: 0.65rem;
    padding: 0.15rem 0.4rem;
    border-radius: 3px;
    font-weight: 600;
}

.badge-ice {
    background-color: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.25);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.05);
}

.badge-ev {
    background-color: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.25);
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.05);
}

.megamenu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.megamenu-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #27272a;
    /* Zinc 800 */
    transition: var(--transition-smooth);
}

.megamenu-item a:hover {
    color: #000000;
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

/* EV Item hover accent */
.megamenu-item.ev-model a:hover {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.03);
    box-shadow: inset 0 0 12px rgba(16, 185, 129, 0.03);
}

/* Car label badges */
.car-badge {
    font-size: 0.65rem;
    font-family: var(--font-secondary);
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
}

.car-badge.ev {
    background-color: #10b981;
    color: #fff;
}

.car-badge.new {
    background-color: var(--color-kia-red);
    color: #fff;
}

/* Right promo panel inside mega menu */
.megamenu-promo {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(244, 244, 245, 0.7) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    color: #18181b;
}

.megamenu-promo::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 180, 216, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
}

.promo-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0077b6;
    margin-bottom: 0.5rem;
}

.promo-title {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.promo-desc {
    font-size: 0.85rem;
    color: #52525b;
    margin-bottom: 0;
}

.promo-img-wrapper {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: -2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.promo-img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}

.megamenu-promo:hover .promo-img {
    transform: scale(1.05);
}

.promo-btn {
    align-self: flex-start;
    padding: 0.75rem 1.5rem;
    background-color: #18181b;
    color: #ffffff;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 6px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: var(--transition-smooth);
}

.promo-btn:hover {
    background-color: var(--color-kia-red);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Mobile Toggle Hamburger */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1100;
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.mobile-toggle:active {
    transform: scale(0.92);
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #18181b;
    position: absolute;
    left: 11px;
    transition: all 0.35s cubic-bezier(0.77, 0, 0.175, 1);
    border-radius: 2px;
}

.mobile-toggle span:nth-child(1) {
    top: 14px;
    width: 22px;
}

.mobile-toggle span:nth-child(2) {
    top: 21px;
    width: 16px;
}

.mobile-toggle span:nth-child(3) {
    top: 28px;
    width: 22px;
}

/* Hamburger animated to X */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 21px;
    width: 22px;
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 21px;
    width: 22px;
}

/* Mobile Overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Navigation Drawer — Full-screen Dark Panel */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100dvh;
    height: 100vh;
    background: linear-gradient(165deg, #0a0a0c 0%, #111114 40%, #0d0d10 100%);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    overflow: hidden;
}

.mobile-nav-drawer.active {
    transform: translateX(0);
}

/* Close Button */
.mobile-close-btn {
    position: absolute;
    top: 1.15rem;
    right: 1.25rem;
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-close-btn svg {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

.mobile-close-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.mobile-close-btn:active {
    transform: scale(0.9);
}

/* Decorative ambient glow blobs */
.mobile-drawer-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.mobile-drawer-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0;
    transition: opacity 0.8s ease 0.3s;
}

.mobile-nav-drawer.active .mobile-drawer-glow {
    opacity: 1;
}

.mobile-drawer-glow--1 {
    width: 300px;
    height: 300px;
    top: -60px;
    right: -80px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
}

.mobile-drawer-glow--2 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    left: -50px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
}

/* Inner nav wrapper */
.mobile-drawer-nav {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: calc(var(--header-height-mobile) + 1.5rem) 1.75rem 1.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Mobile Drawer Header */
.mobile-drawer-header {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 0.5rem;
}

.mobile-drawer-logo {
    display: inline-block;
}

.mobile-drawer-logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

/* Menu Items List */
.mobile-menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

/* Individual Menu Item — staggered reveal */
.mobile-menu-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Menu Link */
.mobile-menu-link {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 1.15rem 0;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.85);
    text-align: left;
    cursor: pointer;
    transition: color 0.25s ease;
    position: relative;
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
    color: #ffffff;
}

/* Numbered index */
.mobile-link-number {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(234, 24, 41, 0.55);
    letter-spacing: 0.08em;
    font-variant-numeric: tabular-nums;
    min-width: 1.4rem;
    transition: color 0.25s ease;
}

.mobile-menu-link:hover .mobile-link-number,
.mobile-menu-link:active .mobile-link-number {
    color: #ffffff;
}

/* Link text */
.mobile-link-text {
    flex: 1;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* Arrow icon */
.mobile-link-arrow {
    width: 18px;
    height: 18px;
    opacity: 0;
    transform: translate(-4px, 4px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.mobile-menu-link:hover .mobile-link-arrow,
.mobile-menu-link:active .mobile-link-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

/* Chevron icon for Cars accordion */
.mobile-link-chevron {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.mobile-menu-link.active .mobile-link-chevron {
    transform: rotate(180deg);
    color: #ffffff;
}

/* Mobile Dropdown Accordion */
.mobile-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-bottom: 0;
}

.mobile-menu-link.active+.mobile-accordion-content {
    padding-bottom: 1rem;
}

/* Category Card */
.mobile-car-category {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1.25rem;
    transition: border-color 0.3s ease;
}

.mobile-car-category:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.mobile-car-category--ev {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.mobile-car-category--ev:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

/* Category Header */
.mobile-category-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-category-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.4);
}

.mobile-category-badge {
    font-size: 0.6rem;
    padding: 0.1rem 0.35rem;
    border-radius: 3px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.mobile-category-badge.badge-ice {
    background-color: rgba(245, 158, 11, 0.2);
    color: #fb923c;
    border: 1px solid rgba(245, 158, 11, 0.35);
}

.mobile-category-badge.badge-ev {
    background-color: rgba(16, 185, 129, 0.25);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.4);
}

/* Subcategory List */
.mobile-subcategory-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.mobile-subcategory-item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.75rem;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.25s ease;
}

.mobile-subcategory-item a svg {
    width: 14px;
    height: 14px;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.25s ease;
    color: rgba(255, 255, 255, 0.3);
}

.mobile-subcategory-item a:hover,
.mobile-subcategory-item a:active {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.mobile-subcategory-item a:hover svg,
.mobile-subcategory-item a:active svg {
    opacity: 1;
    transform: translateX(0);
}

.mobile-subcategory-item.ev-model a {
    border-left: 2px solid rgba(255, 255, 255, 0.15);
    padding-left: calc(0.75rem - 2px);
}

.mobile-subcategory-item.ev-model a:hover,
.mobile-subcategory-item.ev-model a:active {
    background: rgba(255, 255, 255, 0.05);
    border-left-color: rgba(255, 255, 255, 0.4);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-footer.visible {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Button */
.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e4e4e7 100%);
    color: #18181b;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    border-radius: 12px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.04) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-cta-btn:hover::before,
.mobile-cta-btn:active::before {
    opacity: 1;
}

.mobile-cta-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.mobile-cta-btn:hover svg,
.mobile-cta-btn:active svg {
    transform: translateX(4px);
}

/* Footer Meta Links */
.mobile-footer-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.mobile-footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    letter-spacing: 0.03em;
    transition: color 0.25s ease;
}

.mobile-footer-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

.mobile-footer-link svg {
    width: 15px;
    height: 15px;
}

.mobile-footer-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.1);
}

/* Main Layout Base styling */
main {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height) - 150px);
    display: flex;
    flex-direction: column;
    position: relative;
}

/* ===========================
   Hero Banner Slider
   =========================== */
.hero-banner {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--header-height));
    max-height: 780px;
    overflow: hidden;
    background: #0a0a0c;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Individual Slide */
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto;
}

.hero-slide picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Bottom gradient overlay for text legibility */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.25) 30%,
            rgba(0, 0, 0, 0) 55%);
    z-index: 2;
    pointer-events: none;
}

/* Slide Content (title + subtitle + button) */
.hero-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    text-align: center;
    padding: 0 2rem 3.5rem;
    transform: translateY(12px);
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s,
        transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.hero-slide.active .hero-slide-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-slide-title {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.01em;
    margin-bottom: 0.25rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-slide-subtitle {
    font-family: var(--font-secondary);
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
    margin-bottom: 1.25rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.hero-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.6rem;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.hero-slide-btn:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero-slide-btn svg {
    transition: transform 0.3s ease;
}

.hero-slide-btn:hover svg {
    transform: translateX(3px);
}

/* Navigation Arrows */
.hero-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-nav-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.08);
}

.hero-nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.hero-nav-prev {
    left: 1.5rem;
}

.hero-nav-next {
    right: 1.5rem;
}

/* Dot Indicators */
.hero-dots {
    position: absolute;
    bottom: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
}

.hero-dot.active {
    background: var(--color-kia-red);
    border-color: var(--color-kia-red);
    transform: scale(1.15);
}

.hero-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.35);
}

/* Hero Banner Responsive */
@media (max-width: 1024px) {
    .hero-banner {
        height: calc(100vh - var(--header-height-mobile));
        max-height: 660px;
    }

    .hero-nav-arrow {
        width: 40px;
        height: 40px;
    }

    .hero-nav-prev {
        left: 1rem;
    }

    .hero-nav-next {
        right: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        max-height: 572px;
    }

    .hero-slide-content {
        padding: 0 1.5rem 2.5rem;
    }

    .hero-slide-title {
        font-size: 1.35rem;
    }

    .hero-slide-subtitle {
        font-size: 0.9rem;
    }

    .hero-nav-arrow {
        width: 36px;
        height: 36px;
    }

    .hero-nav-arrow svg {
        width: 16px;
        height: 16px;
    }

    .hero-nav-prev {
        left: 0.75rem;
    }

    .hero-nav-next {
        right: 0.75rem;
    }
}

/* Footer Styling */
.site-footer {
    background-color: #040405;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 0 3rem 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-container-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.brand-col {
    max-width: 280px;
}

.footer-logo {
    height: 48px;
    opacity: 0.9;
    transition: var(--transition-fast);
    display: block;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-brand-desc {
    color: #e4e4e7;
    font-weight: 500;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #a1a1aa;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.social-link:hover {
    background: var(--color-primary, #ea0029);
    border-color: var(--color-primary, #ea0029);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(234, 0, 41, 0.35);
}

.footer-col-title {
    color: var(--color-text-white);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-kia-red);
}

.footer-col-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col-links a {
    color: #e4e4e7;
    font-weight: 500;
    transition: var(--transition-smooth);
    position: relative;
    display: inline-block;
}

.footer-col-links a:hover {
    color: var(--color-text-white);
    transform: translateX(4px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.contact-icon {
    color: #a1a1aa;
    flex-shrink: 0;
}

.contact-text {
    color: #e4e4e7;
    font-weight: 500;
    font-size: 0.85rem;
    line-height: 1.5;
}

.contact-phones {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.phone-category {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.phone-category-title {
    color: var(--color-text-white, #ffffff);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.1rem;
}

.phone-link {
    color: #e4e4e7;
    font-weight: 500;
    font-size: 0.85rem;
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.phone-link .phone-icon {
    color: #a1a1aa;
    flex-shrink: 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.phone-link:hover {
    color: var(--color-text-white);
}

.phone-link:hover .phone-icon {
    color: var(--color-primary, #ea0029);
    transform: scale(1.1);
}

.footer-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
    margin: 0 0 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: #a1a1aa;
    font-weight: 500;
    font-size: 0.8rem;
    margin: 0;
    width: 100%;
    text-align: center;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-container-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .brand-col {
        grid-column: span 2;
        max-width: 100%;
    }

    .contact-col {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .footer-container-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .brand-col,
    .contact-col {
        grid-column: span 1;
    }

    .site-footer {
        padding: 4rem 0 2rem 0;
    }
}


/* Header Action Button */
.header-action {
    display: flex;
    align-items: center;
    margin-left: 1.5rem;
    /* Space next to desktop nav */
}

.btn-contact-header {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.4rem;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(180deg, #3f3f46 0%, #000000 100%);
    border: 1px solid #2d2d34;
    border-radius: 8px;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
    white-space: nowrap;
    text-decoration: none;
}

.btn-contact-header:hover {
    background: linear-gradient(180deg, #3f3f46 0%, #000000 100%);
    border-color: #3f3f46;
    color: #ffffff;
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .desktop-nav {
        display: none;
    }

    .header-action {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .site-header {
        height: var(--header-height-mobile);
    }

    main {
        margin-top: var(--header-height-mobile);
    }
}

/* ==========================================================================
   Explore The Range Section (Light Theme)
   ========================================================================== */
.explore-range-section {
    padding: 5.5rem 0 6rem;
    background: radial-gradient(circle at 50% 0%, #ffffff 0%, #f4f5f7 100%);
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.range-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 3.5rem;
}

.range-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.range-subtitle {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Tabs Container */
.range-tabs-wrapper {
    display: flex;
    justify-content: center;
}

.range-tabs {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    padding: 0.35rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
    gap: 0.35rem;
}

.range-tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.6rem;
    border-radius: 40px;
    background: transparent;
    border: none;
    color: #4b5563;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.range-tab-btn .tab-count {
    font-size: 0.75rem;
    background: #f3f4f6;
    padding: 0.15rem 0.55rem;
    border-radius: 10px;
    color: #6b7280;
    transition: var(--transition-fast);
}

.range-tab-btn:hover {
    color: #111827;
    background: #f9fafb;
}

.range-tab-btn.active {
    background: #111827;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.range-tab-btn.active .tab-count {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

/* Tab Panels */
.range-tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.range-tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Range Cards Grid */
.range-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

/* Car Card */
.car-card {
    flex: 1 1 320px;
    max-width: 360px;
    width: 100%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.car-card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 3;
    background: rgba(17, 24, 39, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 30px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.car-card-badge.ev-badge {
    background: #10b981;
    border-color: #059669;
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.35);
}

.car-card-img-wrap {
    width: 100%;
    aspect-ratio: 800 / 520;
    background: #f4f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.car-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.1));
}

.car-card-content {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background: #ffffff;
}

.car-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
    letter-spacing: -0.01em;
}

.car-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.car-btn {
    padding: 0.65rem 1rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
}

.car-btn.primary-btn {
    background: linear-gradient(180deg, #3f3f46 0%, #000000 100%);
    border: 1px solid #2d2d34;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.car-btn.primary-btn:hover {
    background: linear-gradient(180deg, #3f3f46 0%, #000000 100%);
    border-color: #3f3f46;
    color: #ffffff;
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.car-btn.secondary-btn {
    background: #f9fafb;
    color: #111827;
    border-color: #e5e7eb;
}

.car-btn.secondary-btn:hover {
    background: #f3f4f6;
    color: #111827;
    border-color: #d1d5db;
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* Explore Range Responsive */
@media (max-width: 768px) {
    .explore-range-section {
        padding: 3.5rem 0 4rem;
    }

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

    .range-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.75rem;
    }

    .range-tab-btn {
        padding: 0.6rem 1.1rem;
        font-size: 0.85rem;
    }

    .range-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Outlets Section (Dark Theme) */
.outlets-section.dark-theme {
    background-color: #05141F;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    padding: 5.5rem 0 6rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.outlets-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.outlets-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.outlets-tag::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-kia-red);
}

.outlets-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.outlets-subtitle {
    font-size: 1rem;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.outlets-tabs-wrapper {
    display: inline-flex;
    justify-content: center;
}

.outlets-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    padding: 0.35rem;
    gap: 0.35rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
}

.outlets-tab-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.75rem;
    border-radius: 40px;
    background: transparent;
    border: none;
    color: #9ca3af;
    font-family: var(--font-primary);
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.outlets-tab-btn svg {
    color: #9ca3af;
    transition: color 0.3s ease;
}

.outlets-tab-btn .outlets-count {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 0.15rem 0.55rem;
    border-radius: 10px;
    color: #d1d5db;
    transition: var(--transition-fast);
}

.outlets-tab-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.outlets-tab-btn:hover svg {
    color: #ffffff;
}

.outlets-tab-btn.active {
    background: #ffffff;
    color: #070708;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.outlets-tab-btn.active svg {
    color: #070708;
}

.outlets-tab-btn.active .outlets-count {
    background: rgba(0, 0, 0, 0.1);
    color: #070708;
}

/* Outlet Panels */
.outlets-tab-panel {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.outlets-tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Outlets Grid */
.outlets-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

/* Outlet Card */
.outlet-card {
    flex: 1 1 320px;
    max-width: 360px;
    width: 100%;
    background: rgba(30, 34, 45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.outlet-map-wrap {
    width: 100%;
    height: 220px;
    background: #181b24;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.outlet-map-wrap iframe {
    width: 100%;
    height: 100%;
    filter: brightness(0.9) contrast(1.05);
}

.outlet-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1.25rem;
}

.outlet-card-header {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.outlet-type-badge {
    display: inline-block;
    align-self: flex-start;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.outlet-type-badge.service-badge {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.12);
}

.outlet-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.01em;
}

.outlet-info {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex: 1;
}

.outlet-info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #d1d5db;
    line-height: 1.45;
}

.outlet-info-item .info-icon {
    color: rgba(255, 255, 255, 0.6);
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.outlet-phone {
    font-weight: 600;
    color: #ffffff;
    transition: color 0.2s ease;
}

.outlet-phone:hover {
    color: var(--color-kia-red);
    text-decoration: underline;
}

.outlet-address {
    color: #9ca3af;
}

.outlet-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding-top: 0.5rem;
    margin-top: auto;
}

.outlet-action-btn {
    padding: 0.7rem 0.6rem;
    text-align: center;
    font-size: 0.83rem;
    font-weight: 600;
    border-radius: 10px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    text-decoration: none;
    border: 1px solid transparent;
}

.outlet-action-btn.primary-action {
    background: #ffffff;
    color: #070708;
    border-color: #ffffff;
}

.outlet-action-btn.primary-action:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #070708;
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.outlet-action-btn.secondary-action {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.12);
}

.outlet-action-btn.secondary-action:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

/* Outlets Responsive */
@media (max-width: 768px) {
    .outlets-section.dark-theme {
        padding: 3.5rem 0 4rem;
    }

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

    .outlets-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.75rem;
    }

    .outlets-tab-btn {
        padding: 0.65rem 1.1rem;
        font-size: 0.85rem;
    }

    .outlets-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .outlet-actions {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   About Crystal Kia Section (Light Theme)
   ========================================================================== */
.about-section.light-theme {
    padding: 5.5rem 0 6rem;
    background: radial-gradient(circle at 50% 0%, #ffffff 0%, #f4f5f7 100%);
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-column {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    background: #0f1015;
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.03);
}

.about-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(15, 16, 21, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.badge-year {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.badge-label {
    font-size: 0.72rem;
    color: #a1a1aa;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-top: 0.2rem;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    background: #f4f5f7;
    border: 1px solid #e5e7eb;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
}

.about-tag .tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--kia-red, #ea1829);
}

.about-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-text-content {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 2.25rem;
}

.about-lead {
    font-size: 1.05rem;
    color: #374151;
    line-height: 1.7;
    font-weight: 500;
}

.about-body {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.7;
}

.about-lead strong,
.about-body strong {
    color: #111827;
    font-weight: 600;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.4rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.about-btn.primary-btn {
    background: linear-gradient(180deg, #3f3f46 0%, #000000 100%);
    border: 1px solid #2d2d34;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.about-btn.primary-btn:hover {
    background: linear-gradient(180deg, #3f3f46 0%, #000000 100%);
    border-color: #3f3f46;
    color: #ffffff;
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.about-btn.secondary-btn {
    background: #ffffff;
    color: #374151;
    border: 1px solid #d1d5db;
}

.about-btn.secondary-btn:hover {
    background: #f3f4f6;
    color: #111827;
    border-color: #9ca3af;
}

/* About Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .about-section.light-theme {
        padding: 3.5rem 0 4rem;
    }
    
    .about-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .about-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   Customer Testimonials Section (Dark Theme - Matched to Our Outlets)
   ========================================================================== */
.testimonials-section.dark-theme {
    background-color: #05141F;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.04) 0%, transparent 70%);
    padding: 5.5rem 0 6rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonials-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonials-tag::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-kia-red);
}

.testimonials-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.testimonials-subtitle {
    font-size: 1rem;
    color: #9ca3af;
    line-height: 1.6;
}

.testimonials-carousel-wrapper {
    position: relative;
    padding: 0 3.5rem;
}

.testimonials-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.testimonials-nav-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: #070708;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.05);
}

.testimonials-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.testimonials-prev {
    left: 0;
}

.testimonials-next {
    right: 0;
}

.testimonials-viewport {
    overflow: hidden;
    width: 100%;
    border-radius: 20px;
    padding: 10px 0;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    min-width: 0;
    box-sizing: border-box;
}

.testimonial-card-inner {
    background: rgba(30, 34, 45, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: var(--transition-smooth);
    position: relative;
}

.testimonial-card-inner:hover {
    background: rgba(38, 43, 57, 0.96);
    border-color: rgba(255, 255, 255, 0.22);
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.45);
}

.testimonial-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
}

.star-icon {
    width: 16px;
    height: 16px;
    color: #ffb800;
}

.quote-mark {
    font-size: 3.5rem;
    line-height: 0.8;
    font-family: Georgia, serif;
    color: rgba(255, 255, 255, 0.15);
    font-weight: 700;
    user-select: none;
}

.testimonial-text {
    color: #d1d5db;
    font-size: 0.938rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
    flex-grow: 1;
    font-weight: 400;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    flex-shrink: 0;
}

.testimonial-card-inner:hover .author-avatar {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
}

.author-details {
    display: flex;
    flex-direction: column;
}

.author-name {
    color: #ffffff;
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.author-badge {
    font-size: 0.72rem;
    color: #10b981;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-weight: 500;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
}

.testimonial-dot.active {
    width: 28px;
    border-radius: 5px;
    background: #ffffff;
}

/* Testimonials Responsive */
@media (max-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc((100% - 1.5rem) / 2);
    }
    
    .testimonials-carousel-wrapper {
        padding: 0 2.5rem;
    }
    
    .testimonials-title {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    .testimonials-carousel-wrapper {
        padding: 0;
    }
    
    .testimonials-nav-btn {
        display: none;
    }
    
    .testimonials-section.dark-theme {
        padding: 3.5rem 0 4rem;
    }
    
    .testimonials-title {
        font-size: 1.75rem;
    }
}

/* ==========================================================================
   Kia Sonet Page Styles
   ========================================================================== */

.sonet-hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    background-color: #050505;
}

.sonet-video-container {
    position: relative;
    width: 100%;
    height: calc(100vh - 200px);
    min-height: 480px;
    max-height: 720px;
    overflow: hidden;
    background-color: #000000;
}

.sorento-hero-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sonet-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.sonet-hero-youtube-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.sonet-hero-youtube {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100%;
    min-width: 177.78vh;
    transform: translate(-50%, -50%);
    border: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.sonet-hero-youtube.is-active {
    opacity: 1;
}

/* Sonet Hero Price & Brochure Banner */
.sonet-hero-banner {
    position: relative;
    width: 100%;
    z-index: 5;
    background: #0b0c10;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.25rem 0;
}

.btn-download-brochure {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.75rem;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
}

.btn-download-brochure:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.sonet-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Banner Left: Title & Pricing */
.sonet-banner-left {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.sonet-title-box {
    display: flex;
    flex-direction: column;
}

.sonet-main-title {
    font-size: 2.1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.1;
    white-space: nowrap;
}

.sonet-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.2rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.sonet-banner-divider {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

.sonet-price-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sonet-price-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.2;
    white-space: nowrap;
}

.sonet-price-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.01em;
    white-space: nowrap;
}

/* Banner Right: Key Features */
.sonet-banner-right {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.sonet-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 175px;
    gap: 0.4rem;
}

.sonet-feature-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.sonet-feature-item:hover .sonet-feature-icon {
    transform: translateY(-2px);
}

.sonet-feature-icon svg {
    width: 100%;
    height: 100%;
}

.sonet-feature-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.25;
    letter-spacing: 0.01em;
}

/* Sonet Highlights & Overview Section */
.sonet-overview-section {
    padding: 5rem 0;
    background: #070709;
    color: #ffffff;
}

.sonet-sec-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 3.5rem;
}

.sonet-sec-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(234, 24, 41, 0.15);
    border: 1px solid rgba(234, 24, 41, 0.4);
    color: #ea1829;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.sonet-sec-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.sonet-sec-subtitle {
    font-size: 1rem;
    color: var(--color-text-gray);
    line-height: 1.6;
}

/* Features Grid */
.sonet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.sonet-card {
    background: rgba(20, 20, 26, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.sonet-card:hover {
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.sonet-card-body {
    padding: 1.75rem;
}

.sonet-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.sonet-card-desc {
    font-size: 0.92rem;
    color: var(--color-text-gray);
    line-height: 1.6;
}

/* CTA Section */
.sonet-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0e0f14 0%, #171821 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sonet-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
}

.sonet-cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.sonet-cta-content p {
    font-size: 1rem;
    color: var(--color-text-gray);
    max-width: 550px;
}

.sonet-cta-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Responsive Styles for Sonet Banner */
@media (max-width: 1100px) {
    .sonet-banner-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .sonet-banner-right {
        width: 100%;
        justify-content: space-between;
        gap: 1.5rem;
    }

    .sonet-hero-section {
        height: auto;
        min-height: 520px;
    }
}

@media (max-width: 768px) {
    .sonet-hero-section {
        height: auto;
        min-height: 0;
    }

    .sonet-video-container {
        height: auto;
        aspect-ratio: 16 / 9;
        min-height: 0;
        max-height: none;
    }

    .sonet-hero-youtube {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        min-width: 100%;
        min-height: 100%;
        transform: none;
    }

    .sonet-banner-left {
        gap: 1rem;
        width: 100%;
        justify-content: space-between;
    }

    .sonet-main-title {
        font-size: 1.6rem;
    }

    .sonet-price-value {
        font-size: 1.12rem;
    }

    .sonet-banner-right {
        justify-content: center;
        gap: 0.75rem;
    }

    .sonet-feature-item {
        max-width: 110px;
    }

    .sonet-feature-icon {
        width: 40px;
        height: 40px;
    }

    .sonet-feature-label {
        font-size: 0.7rem;
    }

    .sonet-cta-box {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
    }

    .sonet-cta-actions {
        justify-content: center;
        width: 100%;
    }
}

/* ==========================================================================
   Home Call To Action (CTA) Section
   ========================================================================== */
.home-cta-section {
    background-color: #ffffff;
    padding: 5.5rem 0 6rem;
    position: relative;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

/* ===========================================================================
   About Us Page
   =========================================================================== */
.about-page {
    background: #ffffff;
}

.about-hero {
    min-height: 250px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 78% 18%, rgba(234, 24, 41, 0.2), transparent 30%),
        radial-gradient(circle at 20% 110%, rgba(68, 91, 115, 0.32), transparent 42%),
        linear-gradient(120deg, #050608 0%, #0e141d 46%, #26313e 100%);
}

.about-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: linear-gradient(120deg, transparent 0 52%, rgba(255, 255, 255, 0.18) 52.1%, transparent 52.3%), linear-gradient(30deg, transparent 0 78%, rgba(234, 24, 41, 0.8) 78.1%, transparent 78.3%);
    pointer-events: none;
}

.about-hero-inner {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.about-hero-copy {
    max-width: 760px;
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: #aeb7c2;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
}

.about-breadcrumb a {
    color: #ffffff;
}

.about-breadcrumb a:hover {
    color: #ff6671;
}

.about-eyebrow {
    display: block;
    color: #ff6671;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1.4;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.about-eyebrow-dark {
    color: var(--color-kia-red);
}

.about-hero h1 {
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.about-section {
    padding: 7rem 0;
}

.about-crystal-section {
    color: var(--color-text-dark);
    background: #ffffff;
}

.about-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(3rem, 7vw, 8rem);
}

.about-story-copy {
    max-width: 600px;
}

.about-story-copy h2,
.about-india-heading h2 {
    color: #101114;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
    margin-bottom: 1.75rem;
}

.about-story-copy p,
.about-india-copy p {
    color: #50535a;
    font-size: 0.98rem;
    line-height: 1.85;
    margin-bottom: 1.2rem;
}

.about-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #111318;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-kia-red);
}

.about-text-link span {
    color: var(--color-kia-red);
    font-size: 1.1rem;
}

.about-showroom-figure {
    margin: 0;
    position: relative;
}

.about-showroom-figure img {
    display: block;
    width: 100%;
    aspect-ratio: 1.28;
    object-fit: cover;
    box-shadow: 20px 20px 0 #eef0f2;
}

.about-showroom-figure figcaption {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.25rem;
    color: #74777d;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-showroom-figure figcaption span {
    color: var(--color-kia-red);
}

.about-india-section {
    color: #ffffff;
    background: #06141f;
    border-top: 1px solid #1d2026;
}

.about-india-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(3rem, 8vw, 9rem);
}

.about-india-heading h2 {
    color: #ffffff;
    max-width: 360px;
}

.about-india-copy p {
    color: #b5bac2;
}

.about-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2.75rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.about-fact {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.about-fact strong {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.about-fact span {
    color: #858b94;
    font-size: 0.72rem;
    line-height: 1.45;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}


@media (max-width: 768px) {
    .about-hero {
        min-height: 250px;
    }

    .about-hero-inner {
        padding-top: 3.25rem;
        padding-bottom: 3.25rem;
    }

    .about-section {
        padding: 4.5rem 0;
    }

    .about-story-grid,
    .about-india-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-showroom-figure img {
        box-shadow: 10px 10px 0 #eef0f2;
    }
}

@media (max-width: 480px) {
    .about-facts {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .about-fact {
        display: grid;
        grid-template-columns: 70px 1fr;
        align-items: center;
    }
}

/* ===========================================================================
   Service Pages
   =========================================================================== */
.service-page {
    background: #ffffff;
}

.service-hero {
    min-height: 250px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background:
        radial-gradient(circle at 78% 18%, rgba(234, 24, 41, 0.2), transparent 30%),
        radial-gradient(circle at 20% 110%, rgba(68, 91, 115, 0.32), transparent 42%),
        linear-gradient(120deg, #050608 0%, #0e141d 46%, #26313e 100%);
}

.service-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: linear-gradient(120deg, transparent 0 52%, rgba(255, 255, 255, 0.18) 52.1%, transparent 52.3%), linear-gradient(30deg, transparent 0 78%, rgba(234, 24, 41, 0.8) 78.1%, transparent 78.3%);
    pointer-events: none;
}

.service-hero-inner {
    position: relative;
    z-index: 1;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.service-hero h1 {
    color: #ffffff;
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.service-content-section {
    padding: 6.5rem 0 7rem;
    background: #ffffff;
}

.service-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
    gap: clamp(3rem, 8vw, 9rem);
}

.service-intro {
    max-width: 470px;
    padding-top: 0.5rem;
}

.service-intro h2 {
    color: #101114;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
    line-height: 1.08;
    margin-bottom: 1.5rem;
}

.service-intro p {
    color: #50535a;
    font-size: 1rem;
    line-height: 1.8;
}

.service-contact-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 2rem;
}

.service-action {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    justify-content: center;
    min-height: 42px;
    padding: 0.65rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    color: #111827;
    font-size: 0.8rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.service-action span,
.service-submit span {
    color: currentColor;
    font-size: 1rem;
}

.service-action-primary {
    border-color: #2d2d34;
    background: linear-gradient(180deg, #3f3f46 0%, #000000 100%);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.service-action:hover {
    border-color: #d1d5db;
    background: #f3f4f6;
    color: #111827;
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.service-action-primary:hover {
    border-color: #3f3f46;
    background: linear-gradient(180deg, #3f3f46 0%, #000000 100%);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.contact-phone-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-phone-category {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.contact-phone-category-title {
    color: #101114;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: #50535a;
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.contact-phone-link .contact-phone-icon {
    color: #9aa0a8;
    flex-shrink: 0;
    transition: color 0.2s ease, transform 0.2s ease;
}

.contact-phone-link:hover {
    color: #101114;
}

.contact-phone-link:hover .contact-phone-icon {
    color: var(--color-kia-red);
    transform: scale(1.1);
}

.service-form {
    padding: clamp(1.5rem, 4vw, 3.25rem);
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-top: 3px solid #18181b;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.service-form-heading {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2.25rem;
}

.service-form-heading > span {
    color: var(--color-kia-red);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.service-form-heading h2 {
    color: #111318;
    font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.service-form-heading .quote-highlight {
    color: var(--color-kia-red, #bb162b);
    background: #fef2f2;
    border: 1px solid #fecaca;
    padding: 0.15rem 0.65rem;
    border-radius: 6px;
    font-size: 0.85em;
    font-weight: 700;
    display: inline-block;
    margin-left: 0.35rem;
}

.service-form-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1rem;
}

.service-form label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #555960;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.service-form input,
.service-form select,
.service-form textarea {
    width: 100%;
    border: 1px solid #d9dce0;
    border-radius: 0;
    background: #ffffff;
    color: #17191d;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0;
    outline: none;
    padding: 0.85rem 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-form textarea {
    min-height: 104px;
    resize: vertical;
}

.service-form input:focus,
.service-form select:focus,
.service-form textarea:focus {
    border-color: var(--color-kia-red);
    box-shadow: 0 0 0 3px rgba(234, 24, 41, 0.1);
}

.service-form-full {
    grid-column: 1 / -1;
}

.service-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 2rem;
    padding: 0.9rem 1.4rem;
    border: 1px solid #2d2d34;
    border-radius: 8px;
    background: linear-gradient(180deg, #3f3f46 0%, #000000 100%);
    color: #ffffff;
    cursor: pointer;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.2s ease, background 0.2s ease;
}

.service-submit span {
    color: #ffffff;
}

.service-submit:hover {
    background: linear-gradient(180deg, #3f3f46 0%, #000000 100%);
    border-color: #3f3f46;
    transform: scale(1.03);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .service-hero {
        min-height: 250px;
    }

    .service-content-section {
        padding: 4.5rem 0;
    }

    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }

    .service-contact-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .service-action {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .service-form-fields {
        grid-template-columns: 1fr;
    }

    .service-form-full {
        grid-column: auto;
    }
}

.home-cta-card {
    position: relative;
    background: linear-gradient(135deg, #090c15 0%, #111827 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 4rem 3.5rem;
    box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.3), 0 10px 30px -10px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
}

.home-cta-card .cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}

.home-cta-card .glow-red {
    top: -40px;
    right: -40px;
    width: 320px;
    height: 320px;
    background: rgba(234, 24, 41, 0.18);
}

.home-cta-card .glow-cyan {
    bottom: -50px;
    left: -50px;
    width: 350px;
    height: 350px;
    background: rgba(0, 210, 255, 0.12);
}

.home-cta-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.home-cta-header {
    max-width: 780px;
    margin-bottom: 2.5rem;
}

.home-cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 1.2rem;
    background: linear-gradient(180deg, #ffffff 0%, #d1d5db 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.home-cta-subtitle {
    font-size: 1.1rem;
    color: #9ca3af;
    line-height: 1.65;
    font-weight: 400;
}

.home-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 0;
    width: 100%;
}

.home-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
}

.home-cta-btn.btn-primary {
    background: var(--color-kia-red);
    color: #ffffff;
    border: 1px solid var(--color-kia-red);
    box-shadow: 0 8px 25px rgba(234, 24, 41, 0.35);
}

.home-cta-btn.btn-primary:hover {
    background: #c81220;
    border-color: #c81220;
    box-shadow: 0 12px 30px rgba(234, 24, 41, 0.5);
    transform: translateY(-3px);
}

.home-cta-btn.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(6px);
}

.home-cta-btn.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    color: #ffffff;
}

.home-cta-btn.btn-outline {
    background: transparent;
    color: #e5e7eb;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.home-cta-btn.btn-outline:hover {
    background: #ffffff;
    color: #070708;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.home-cta-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.cta-feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.feature-icon-wrapper {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background: rgba(234, 24, 41, 0.12);
    border: 1px solid rgba(234, 24, 41, 0.25);
    color: var(--color-kia-red);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-feature-item:nth-child(2) .feature-icon-wrapper {
    background: rgba(0, 210, 255, 0.1);
    border-color: rgba(0, 210, 255, 0.25);
    color: var(--color-ev-blue);
}

.cta-feature-item:nth-child(3) .feature-icon-wrapper {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.feature-text-content {
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.feature-desc {
    font-size: 0.825rem;
    color: #9ca3af;
    line-height: 1.45;
}

/* Responsive CTA Styles */
@media (max-width: 992px) {
    .home-cta-card {
        padding: 3rem 2rem;
    }
    
    .home-cta-title {
        font-size: 2.2rem;
    }

    .home-cta-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .home-cta-section.dark-theme {
        padding: 3.5rem 0 4.5rem;
    }

    .home-cta-card {
        padding: 2.25rem 1.25rem;
        border-radius: 18px;
    }

    .home-cta-title {
        font-size: 1.75rem;
    }

    .home-cta-subtitle {
        font-size: 0.95rem;
    }

    .home-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.85rem;
    }

    .home-cta-btn {
        width: 100%;
    }

    .cta-feature-item {
        padding: 1rem;
    }
}

/*-360 sonet-*/
  *{box-sizing:border-box;}
  .design-section{
    width:100%;
    background:#fff;
  }
  .carens-design-section .tab-content{
    position:relative;
  }
  .wrap{
    max-width:1080px;
    margin:0 auto;
    padding:48px 24px 64px;
  }

  /* ---- top row: eyebrow / title / toggle / tabs ---- */
  .top-row{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    flex-wrap:wrap;
    gap:16px;
  }
  .eyebrow.color--kia-red{
    color:#959191 !important;
    font-size:18px;
    letter-spacing:.12em;
    font-weight:600;
    margin:0 0 6px;
    display:block;
  }
  h3.h5{
    font-size:42px;
    font-weight:600;
    letter-spacing:.01em;
    margin:0 0 12px;
    color:#1a1a1a;
  }
  #x-vehicle-line-name{ font-size:inherit; }

  /* line toggle: a plain switch with the line name shown as a separate
     label to its left, matching the reference layout (no text inside the
     pill itself). */
  .line-toggle-wrap{
    display:inline-flex;
    flex-direction:row-reverse;
    align-items:center;
    gap:8px;
    margin-top:2px;
  }
  .line-toggle-label{
    font-size:13px;
    font-weight:700;
    color:#1a1a1a;
    user-select:none;
  }
  .check-toggle{
    position:relative;
    display:inline-flex;
    align-items:center;
    width:44px;
    height:24px;
    background:#6f6f6f;
    border-radius:999px;
    cursor:pointer;
    -webkit-tap-highlight-color:transparent;
  }
  .check-toggle input{
    position:absolute;
    opacity:0;
    width:100%;
    height:100%;
    margin:0;
    cursor:pointer;
  }
  .check-toggle .a11y{
    position:absolute;
    width:1px;height:1px;
    overflow:hidden;
    clip:rect(0 0 0 0);
    white-space:nowrap;
  }
  .check-toggle .knob{
    position:absolute;
    top:2px; left:2px;
    width:20px;height:20px;border-radius:50%;
    background:#fff;
    transition:left .2s ease;
    pointer-events:none;
  }
  .check-toggle.x-active .knob{ left:22px; }

  .tabs.tabs--b{
    display:flex;
    gap:0;
    padding:7px;
    min-width:250px;
    border:1px solid #e4e4e4;
    border-radius:999px;
    background:#fff;
    box-shadow:0 5px 14px rgba(0,0,0,.06);
  }
  .tabs .tab{
    flex:1;
    background:transparent;
    border:none;
    border-radius:999px;
    cursor:pointer;
    text-decoration:none;
    font-size:16px;
    line-height:1;
    padding:16px 20px;
    text-align:center;
    color:#4d4d4d;
    font-weight:600;
    display:block;
    transition:background-color .2s ease, color .2s ease;
  }
  .tabs .tab.is-active{
    color:#fff;
    font-weight:700;
    background:#111927;
  }
  .tabs .tab:focus-visible{
    outline:2px solid #bb162b;
    outline-offset:2px;
  }

  /* ---- 360 viewer ---- */
  .rotate-area{
    margin-top:36px;
    display:flex;
    flex-direction:column;
    align-items:center;
    user-select:none;
  }
  .panorama{
    width:100%;
    aspect-ratio:2.3/1;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:grab;
    position:relative;
    overflow:hidden;
    background:transparent;
  }
  .panorama.dragging{ cursor:grabbing; }
  .panorama.loading{ cursor:wait; }

  /* ---- interior 360 panorama viewer (Pannellum) ---- */
  .interior-pano{
    width:100%;
    aspect-ratio:2.3/1;
    border-radius:4px;
    overflow:hidden;
    background:#000;
    position:relative;
    cursor:grab;
    user-select:none;
  }
  .interior-pano.dragging{ cursor:grabbing; }
  /* Pannellum's default control buttons are styled for a dark full-page
     viewer; strip them down so they don't clash with this compact card. */
  .interior-pano .pnlm-load-box{ background:transparent; }
  .interior-pano .pnlm-controls-container{ display:none; }

    .carens-interior-container{
        position:relative;
        width:100%;
        aspect-ratio:2.3/1;
        min-height:420px;
        overflow:hidden;
        background:#000;
    }
    .carens-interior-container > img{
        display:block;
        width:100%;
        height:100%;
        object-fit:cover;
    }

  .panorama img{
    width:100%;
    height:100%;
    object-fit:contain;
    transform:scale(1.15);
    transform-origin:center center;
    pointer-events:none;
    -webkit-user-drag:none;
    opacity:0;
    transition:opacity .12s ease;
  }

  .panorama img.loaded{opacity:1;}
  .loadingPersent{
    position:absolute;
    font-size:13px;
    color:#959191;
    z-index:3;
    /* no background/padding: stays invisible when text is empty,
       only shows as plain text while a colour is preloading */
  }
  .loadingPersent:empty{
    display:none;
  }
  .panoLoadingStart{
    margin-top:16px;
    display:flex;
    align-items:center;
    gap:8px;
    font-size:16px;
    color:#000;
  }
  .rotate-label svg{width:20px;height:20px;color:var(--color-kia-red, #ea1829);}
  .rotate-icon{width:20px;height:20px;object-fit:contain;display:block;}

  /* ---- colorize row ---- */
  .colorize.mt-lg{
    margin-top:20px;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    flex-wrap:wrap;
    gap:32px;
  }
  .swatch-text{
    color:#000;
    font-size:14px;
    display:block;
    margin-bottom:12px;
  }
  .swatch-text .swatch-selected{font-weight:700;}

  .style-interior{ text-align:right; }

  ul.swatches.large{
    list-style:none;
    margin:0;padding:0;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
  }
  .style-interior ul.swatches.large{ justify-content:flex-end; }

  .swatch-btn{
    width:38px;height:38px;border-radius:50%;
    border:1px solid rgba(0,0,0,0.12);
    cursor:pointer;
    position:relative;
    padding:0;
    outline:none;
    overflow:hidden;
    background:#eee;
    transition:transform .2s ease, box-shadow .2s ease;
    box-shadow:0 2px 5px rgba(0,0,0,0.1);
  }
  .swatch-btn:hover{
    transform:scale(1.12);
  }
  .swatch-name{
    display:none;
  }
  .swatch-btn img.swatch-img,
  .swatch-btn span.swatch-img{
    position:absolute;
    inset:0;
    width:100%;height:100%;
    object-fit:cover;
    border-radius:50%;
    image-rendering:-webkit-optimize-contrast;
  }
  li.swatch.is-active .swatch-btn{
    box-shadow:0 0 0 2px #fff, 0 0 0 4px #1a1a1a;
  }
  .swatch-btn .check{
    position:absolute;inset:0;
    display:none;
    align-items:center;justify-content:center;
    color:#fff;
    font-size:14px;
    z-index:2;
    text-shadow:0 0 2px rgba(0,0,0,.6);
  }
  li.swatch.is-active .check{display:flex;}

  .interior-swatch-btn{
    width:38px;height:38px;border-radius:50%;
    background:#1a1a1a;
    display:inline-flex;align-items:center;justify-content:center;
    color:#fff;font-size:14px;
    border:none;cursor:pointer;
    position:relative;
    overflow:hidden;
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .interior-swatch-btn:hover{
    transform:scale(1.12);
  }
  .interior-swatch-btn img{
    position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.85;
  }
  .interior-swatch-btn .check{ position:relative; z-index:2; }

  /* disclaimer-360 hidden by default, exactly like the real site */
  .disclaimer-360{ display:none; }
  .disclaimer-360 p{
    font-size:9px;
    color:#8a8a8a;
    padding-left:10%;
  }

  /* Carens specific design section layout */
  .carens-design-section .wrap {
    padding-top: 24px;
    padding-bottom: 40px;
  }
  .carens-design-section .rotate-area {
    margin-top: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .carens-design-section .panorama {
    max-height: 440px;
    aspect-ratio: 2.3/1;
  }
  .carens-design-section .panorama img {
    transform: scale(1.15);
    transform-origin: center center;
  }
  .carens-design-section .colorize.mt-lg {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .carens-design-section .style-exterior {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .carens-design-section .swatch-text {
    margin-bottom: 12px;
    font-size: 15px;
  }
  .carens-design-section ul.swatches.large {
    justify-content: center;
    gap: 14px;
  }

  @media (max-width:640px){
    h3.h5{font-size:32px;}
    .top-row{flex-direction:column;}
    .style-interior{text-align:left;}
    .colorize.mt-lg{flex-direction:column;}
    .style-interior ul.swatches.large{justify-content:flex-start;}
    .interior-pano{aspect-ratio:1.4/1;}
    .carens-interior-container{aspect-ratio:1.4/1;min-height:250px;}
    .panorama img{transform:scale(1.55);}
  }

/* Compact spacing for EV6 and EV9 360 VR design sections */
.ev6-design-section .wrap,
.ev9-design-section .wrap {
  padding-top: 16px;
  padding-bottom: 24px;
}

.ev6-design-section .rotate-area,
.ev9-design-section .rotate-area {
  margin-top: -10px;
}

.ev6-design-section .panorama,
.ev9-design-section .panorama {
  margin-top: -20px;
  margin-bottom: -15px;
  max-height: 420px;
}

.ev6-design-section .panorama img,
.ev9-design-section .panorama img {
  transform: scale(1.35);
  transform-origin: center center;
}

.ev6-design-section .colorize.mt-lg,
.ev9-design-section .colorize.mt-lg {
  margin-top: 0px;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    left: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.35));
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.12);
    filter: drop-shadow(0 6px 18px rgba(37, 211, 102, 0.55));
}

.floating-whatsapp img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        left: 16px;
        bottom: 16px;
        width: 50px;
        height: 50px;
    }
}

/* =========================================================
   Vehicle Features Section Styles (EV6, EV9, Carnival, Carens Clavis EV, Carens Clavis, Carens, Syros EV, Syros, Sonet, Seltos, Sorento)
   ========================================================= */
.carnival-features-section,
.carens-clavis-features-section,
.carens-features-section,
.sorento-features-section,
.seltos-features-section,
.syros-features-section,
.sonet-features-section,
.syros-ev-features-section,
.carens-clavis-ev-features-section,
.clavis-ev-features-section,
.ev6-features-section,
.ev9-features-section {
    padding: 80px 0;
    background-color: var(--color-bg-dark, #070708);
    position: relative;
    overflow: hidden;
}

.carnival-features-section::before,
.carens-clavis-features-section::before,
.carens-features-section::before,
.sorento-features-section::before,
.seltos-features-section::before,
.syros-features-section::before,
.sonet-features-section::before,
.syros-ev-features-section::before,
.carens-clavis-ev-features-section::before,
.clavis-ev-features-section::before,
.ev6-features-section::before,
.ev9-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(234, 24, 41, 0.4), transparent);
}

.features-header {
    margin-bottom: 50px;
    text-align: center;
}

.features-eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-kia-red, #ea1829);
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.features-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-gray, #a1a1aa);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #111116;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(234, 24, 41, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(234, 24, 41, 0.15);
}

.feature-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #1a1a20;
}

.feature-img-wrap img,
.feature-img-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover .feature-img-wrap img {
    transform: scale(1.08);
}

.feature-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 17, 22, 0.8) 0%, transparent 60%);
    pointer-events: none;
}

.feature-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.feature-number {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-kia-red, #ea1829);
    letter-spacing: 1px;
    margin-bottom: 6px;
    opacity: 0.9;
}

.feature-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.45;
    margin: 0;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-card-title {
    color: #ffffff;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .features-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .ev9-features-section {
        padding: 60px 0;
    }
    .features-title {
        font-size: 1.75rem;
    }
    .feature-content {
        padding: 20px;
    }
}

/* =========================================================
   360 VIEWER NO-CLIP & SPACING FIX (DESKTOP & MOBILE)
   ========================================================= */

/* Ensure 360 containers allow full visibility without clipping */
.rotate-area,
.experience360VrimgArea,
.experiencePanoramaBox {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    position: relative !important;
    overflow: visible !important;
}

/* Ensure .panorama container fits responsive dimensions smoothly */
.panorama,
.experience360VrimgArea .panorama,
.ev6-design-section .panorama,
.ev9-design-section .panorama {
    width: 100% !important;
    max-width: 1000px !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 2.3 / 1 !important;
    position: relative !important;
    overflow: visible !important;
    margin: 0 auto !important;
}

/* Prevent image scaling clipping across desktop & mobile screens */
.panorama img,
.experience360VrimgArea .panorama img,
.ev6-design-section .panorama img,
.ev9-design-section .panorama img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    transform: scale(1) !important;
    pointer-events: none !important;
}

/* For absolutely positioned 360 viewer images */
.experience360VrimgArea .panorama img {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) scale(1) !important;
}

/* Responsive aspect ratio adjustments */
@media (max-width: 768px) {
    .panorama,
    .experience360VrimgArea .panorama,
    .ev6-design-section .panorama,
    .ev9-design-section .panorama {
        aspect-ratio: 2.0 / 1 !important;
        max-height: none !important;
    }
}

@media (max-width: 480px) {
    .panorama,
    .experience360VrimgArea .panorama,
    .ev6-design-section .panorama,
    .ev9-design-section .panorama {
        aspect-ratio: 1.8 / 1 !important;
        max-height: none !important;
    }
}

/* Fix 360 Icon & Text (.panoLoadingStart / .rotate-label) Spacing & Placement */
.panoLoadingStart {
    margin-top: 24px !important;
    margin-bottom: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #111827 !important;
    position: relative !important;
    z-index: 10 !important;
    clear: both !important;
    width: 100% !important;
    text-align: center !important;
}

.rotate-label {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 6px 18px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 24px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.rotate-icon {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain !important;
    display: inline-block !important;
}

@media (max-width: 768px) {
    .panoLoadingStart {
        margin-top: 18px !important;
        margin-bottom: 18px !important;
        font-size: 14px !important;
    }
    .rotate-label {
        padding: 5px 14px !important;
    }
}

/* Insurance FAQ Section */
.insurance-faq-section {
    padding: 4.5rem 0;
    background-color: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.insurance-faq-header,
.faq-header-intro {
    margin-bottom: 2rem;
    text-align: center;
}

.insurance-faq-header .about-eyebrow,
.faq-header-intro .about-eyebrow {
    margin-bottom: 0.5rem;
}

.faq-section-title,
.faq-main-title {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #0f172a;
    margin-top: 0.35rem;
    letter-spacing: -0.02em;
}

.faq-accordion {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.25s ease-in-out;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-item[open] {
    border-color: #0f172a;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.faq-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    user-select: none;
    list-style: none;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-question-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
    line-height: 1.45;
    padding-right: 1rem;
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.25s ease, color 0.25s ease;
    color: #64748b;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
    color: #ea1829;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.65;
    border-top: 1px solid transparent;
}

.faq-item[open] .faq-answer {
    border-top-color: #f1f5f9;
    padding-top: 1.1rem;
}

.faq-answer p {
    margin-bottom: 0.85rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul, .faq-answer ol {
    margin: 0.5rem 0 1rem 1.25rem;
    padding: 0;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    line-height: 1.55;
}

.faq-answer li strong {
    color: #0f172a;
}

.faq-important-note {
    max-width: 920px;
    margin: 3.5rem auto 0 auto;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border: 1px solid #fecaca;
    border-left: 5px solid #ea1829;
    border-radius: 12px;
    padding: 1.75rem 2rem;
    box-shadow: 0 4px 16px rgba(234, 24, 41, 0.06);
}

.faq-note-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.faq-note-badge {
    background: #ea1829;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.65rem;
    border-radius: 4px;
}

.faq-note-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #991b1b;
    margin: 0;
}

.faq-note-content {
    color: #374151;
    font-size: 0.94rem;
    line-height: 1.7;
}

.faq-note-content p {
    margin-bottom: 0.85rem;
}

.faq-note-content p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .faq-important-note {
        padding: 1.25rem 1.25rem;
    }

    .faq-note-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* ===========================================================================
   FAQ PAGE STYLES - CRYSTAL KIA
   =========================================================================== */

.faq-page {
    background-color: #f8fafc;
    color: #0f172a;
    min-height: 100vh;
}

/* FAQ Intro & Search Section */
.faq-intro-section {
    padding: 3rem 0 1.5rem;
    background: #f8fafc;
}

.faq-intro-wrapper {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.faq-eyebrow {
    display: inline-block;
    color: #ea1829;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    padding: 0.25rem 0.85rem;
    background: rgba(234, 24, 41, 0.08);
    border: 1px solid rgba(234, 24, 41, 0.2);
    border-radius: 50px;
}

.faq-hero-desc {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Search Box */
.faq-search-box {
    max-width: 680px;
    margin: 0 auto;
}

.faq-search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 50px;
    padding: 0.4rem 0.6rem 0.4rem 1.4rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.faq-search-input-wrapper:focus-within {
    border-color: #ea1829;
    box-shadow: 0 10px 30px rgba(234, 24, 41, 0.18);
}

.faq-search-icon {
    color: #64748b;
    flex-shrink: 0;
    margin-right: 0.8rem;
}

#faqSearchInput {
    width: 100%;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 1rem;
    color: #0f172a;
    background: transparent;
    padding: 0.6rem 0;
}

#faqSearchInput::placeholder {
    color: #94a3b8;
}

.faq-clear-btn {
    background: #f1f5f9;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.faq-clear-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.faq-search-status {
    margin-top: 0.85rem;
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.faq-search-status #faqMatchCount {
    color: #0f172a;
    font-weight: 700;
}

/* FAQ Main Section */
.faq-main-section {
    padding: 3.5rem 0 5rem;
}

/* Toolbar & Tabs Header */
.faq-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: var(--header-height);
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 900;
    padding-top: 1rem;
}

.faq-tabs-wrapper {
    flex: 1;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.faq-tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.faq-tabs {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 0.6rem;
    white-space: nowrap;
}

.faq-tab {
    flex: 1;
    justify-content: center;
    min-width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.faq-tab:hover {
    border-color: #cbd5e1;
    color: #0f172a;
    transform: translateY(-1px);
}

.faq-tab.active {
    background: #0f172a;
    border-color: #0f172a;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.15rem 0.5rem;
    font-size: 0.74rem;
    font-weight: 700;
    border-radius: 20px;
    background: #f1f5f9;
    color: #64748b;
    transition: all 0.25s ease;
}

.faq-tab.active .faq-badge {
    background: #ea1829;
    color: #ffffff;
}

.faq-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.faq-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 0.95rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.82rem;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
}

.faq-action-btn:hover {
    background: #f1f5f9;
    color: #0f172a;
    border-color: #cbd5e1;
}

/* Category Groups */
.faq-category-group {
    margin-bottom: 3rem;
}

.faq-category-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.25rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.faq-cat-name {
    position: relative;
}

.faq-cat-name::after {
    content: '';
    position: absolute;
    bottom: -0.6rem;
    left: 0;
    width: 40px;
    height: 3px;
    background: #ea1829;
    border-radius: 2px;
}

.faq-cat-count {
    font-size: 0.82rem;
    font-weight: 600;
    color: #64748b;
    background: #f1f5f9;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

/* Empty State */
.faq-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: #ffffff;
    border-radius: 16px;
    border: 1px dashed #cbd5e1;
    max-width: 560px;
    margin: 2rem auto;
}

.faq-empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.faq-empty-state h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.faq-empty-state p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.faq-reset-btn {
    padding: 0.75rem 1.5rem;
    background: #0f172a;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease;
}

.faq-reset-btn:hover {
    background: #ea1829;
}

/* CTA Section */
.faq-cta-section {
    padding: 0 0 5rem;
}

.faq-cta-card {
    background: linear-gradient(135deg, #070708 0%, #1e293b 100%);
    border-radius: 20px;
    padding: 3.5rem 3rem;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.faq-cta-card::after {
    content: '';
    position: absolute;
    right: -100px;
    bottom: -100px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(234, 24, 41, 0.25), transparent 70%);
    pointer-events: none;
}

.faq-cta-content {
    max-width: 720px;
    position: relative;
    z-index: 2;
}

.faq-cta-tag {
    display: inline-block;
    color: #ea1829;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
}

.faq-cta-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;

}

.faq-cta-content p {
    color: #94a3b8;
    font-size: 1.02rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.faq-cta-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.faq-btn-primary {
    padding: 0.9rem 1.8rem;
    background: #ea1829;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.92rem;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(234, 24, 41, 0.35);
}

.faq-btn-primary:hover {
    background: #d01020;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(234, 24, 41, 0.45);
}

.faq-btn-secondary {
    padding: 0.9rem 1.8rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.25s ease;
}

.faq-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .faq-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .faq-actions {
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    .faq-hero {
        padding: 5.5rem 0 3rem;
    }

    .faq-search-input-wrapper {
        padding: 0.3rem 0.5rem 0.3rem 1rem;
    }

    #faqSearchInput {
        font-size: 0.92rem;
    }

    .faq-cta-card {
        padding: 2.2rem 1.5rem;
    }

    .faq-header {
        padding: 1rem 1.15rem;
    }

    .faq-question-text {
        font-size: 0.96rem;
    }

    .faq-answer-inner {
        padding: 1rem 1.15rem 1.25rem;
        font-size: 0.92rem;
    }
}





