/* ==========================================
   HERO SLIDER
   ========================================== */
.hero-slider {
    position: relative;
    height: 85vh;
    min-height: 550px;
    overflow: hidden;
    isolation: isolate;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: 80px;
    opacity: 0;
    transition: opacity 0.9s ease;
    pointer-events: none;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    will-change: opacity, transform;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    will-change: transform;
}

.hero-slide.active .hero-bg {
    animation: heroBgZoom 7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 0.95rem;
    margin-bottom: 35px;
    font-weight: 300;
    opacity: 0.9;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    align-self: flex-start;
}

.hero-nav {
    position: absolute;
    bottom: 40px;
    left: max(40px, calc((100vw - 1400px) / 2 + 40px));
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10;
}

.hero-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
}

.hero-nav-num {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.4s;
    min-width: 20px;
}

.hero-nav-num.active {
    color: rgba(255, 255, 255, 1);
}

.hero-nav-line {
    width: 80px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-nav-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: var(--white);
}

.hero-nav-line-fill.running {
    animation: heroProgress 6s linear forwards;
}

.hero-label-line {
    opacity: 0;
    animation: heroLabelIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

.hero-content h1.hero-animate {
    opacity: 0;
    animation: heroTitleIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.hero-content p.hero-animate {
    opacity: 0;
    animation: heroParaIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards;
}

.hero-btns.hero-animate {
    opacity: 0;
    animation: heroBtnsIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards;
}

/* ==========================================
   FEATURED SECTION
   ========================================== */
.featured-section {
    padding: 100px 40px;
    background: #fff;
}

.featured-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.featured-visual {
    flex: 1.2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-visual-link {
    display: block;
    position: relative;
}

.featured-watermark {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 0.85;
    pointer-events: none;
    user-select: none;
}

.featured-watermark span {
    font-size: clamp(120px, 18vw, 220px);
    font-weight: 900;
    color: rgba(0, 0, 0, 0.05);
    letter-spacing: -4px;
    text-transform: uppercase;
    display: block;
}

.featured-visual img {
    width: 100%;
    max-width: 930px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
    transition: transform 0.35s ease;
}

.featured-visual-link:hover img {
    transform: scale(1.02);
}

.featured-content {
    flex: 1;
}

.featured-label {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.featured-content h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.featured-content > p {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 36px;
}

.featured-card-link {
    display: block;
}

.featured-card {
    background: #f7f7f7;
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-card-link:hover .featured-card {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.featured-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.featured-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
}

.featured-price small {
    font-size: 0.8rem;
    font-weight: 400;
    color: #aaa;
    display: block;
    margin-top: 2px;
}

.featured-badge {
    background: var(--primary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 4px;
}

.featured-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 14px;
}

.featured-specs {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e8e8e8;
}

.featured-spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #666;
}

.featured-spec i {
    color: var(--primary);
    font-size: 0.85rem;
}

.featured-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.featured-card-bottom p {
    font-size: 0.8rem;
    color: #aaa;
    margin: 0;
}

.featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 2px solid #1a1a1a;
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
}

.featured-btn:hover {
    color: var(--primary);
    border-color: var(--primary);
}

/* ==========================================
   STOCK SECTION
   ========================================== */
.stock-section {
    padding: 100px 40px;
    background-color: var(--bg-stock);
    text-align: center;
}

.stock-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
    text-align: left;
}

.stock-header span {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.stock-header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a1a;
}

.btn-view-all {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 4px;
    white-space: nowrap;
    padding-bottom: 4px;
    transition: opacity 0.3s;
}

.btn-view-all:hover {
    opacity: 0.5;
}

.stock-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.stock-card {
    position: relative;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stock-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stock-card-link {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
}

.monthly-payment {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #111;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 5px 11px;
    border-radius: 4px;
    z-index: 4;
}

.monthly-payment em {
    font-style: normal;
    color: #aaa;
    font-weight: 400;
}

.stock-image-box {
    padding: 40px 20px 10px 20px;
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.stock-image-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.discount-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: max-content;
    white-space: nowrap;
    padding: 4px 10px;
    font-weight: 700;
    font-size: 0.8rem;
    line-height: 1;
    border-radius: 4px;
    z-index: 4;
}

.stock-details {
    padding: 20px 25px;
    position: relative;
    z-index: 1;
}

.stock-details h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.stock-specs {
    font-size: 0.8rem;
    color: var(--text-sub);
    margin-bottom: 25px;
    min-height: 2.4em;
}

.stock-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px dotted #e0e0e0;
    padding-top: 15px;
    position: relative;
    z-index: 1;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.old-price {
    font-size: 0.8rem;
    text-decoration: line-through;
    color: #bbbbbb;
}

.new-price {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.vat-note {
    font-size: 0.68rem;
    color: #aaa;
    font-weight: 400;
    letter-spacing: 0.3px;
    margin-top: 2px;
}

.card-arrow {
    width: 38px;
    height: 38px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.25s;
    flex-shrink: 0;
    position: relative;
    z-index: 4;
    pointer-events: none;
}

.stock-card:hover .card-arrow {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translate(2px, -2px);
}

.card-arrow svg {
    width: 14px;
    height: 14px;
}

/* ==========================================
   SERVICES SECTION / SLIDER
   ========================================== */
.services-section {
    padding: 100px 0;
    background: #f7f7f7;
    overflow: hidden;
}

.services-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
    padding: 0 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.services-head-left span {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.services-head-left h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.services-head-left p {
    font-size: 0.9rem;
    color: #888;
    font-weight: 400;
    max-width: 500px;
}

.services-head-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.services-all-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 4px;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.services-all-link:hover {
    opacity: 0.5;
}

.services-track-outer {
    padding-left: max(40px, calc((100vw - 1400px) / 2 + 40px));
}

.services-track-wrap {
    overflow: visible;
}

.services-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.45, 0, 0.55, 1);
}

.service-card {
    position: relative;
    flex: 0 0 calc(32% - 14px);
    min-width: 0;
    background: #fff;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
}

.service-card-img-wrap,
.service-card-body {
    position: relative;
    z-index: 1;
}

.service-card-img-wrap {
    overflow: hidden;
    height: 260px;
    line-height: 0;
}

.service-card-img-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    transition: transform 0.6s ease;
}

.service-card:hover .service-card-img-wrap img {
    transform: scale(1.04);
}

.service-card-num,
.service-card-link {
    position: relative;
    z-index: 3;
}

.service-card-num {
    position: absolute;
    top: 16px;
    left: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

.service-card-body {
    padding: 28px 30px 32px;
    border-top: none;
}

.service-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.service-card-body p {
    font-size: 0.825rem;
    color: #888;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-card-link {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s;
}

.service-card:hover .service-card-link {
    color: var(--primary);
}

.services-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    padding: 30px max(40px, calc((100vw - 1400px) / 2 + 40px)) 0;
}

.services-arrow {
    width: 44px;
    height: 44px;
    border: 1px solid #ccc;
    background: transparent;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: #333;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.services-arrow:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

/* ==========================================
   SPLIT SECTION
   ========================================== */
.split-section {
    display: flex;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    gap: 100px;
}

.split-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-label {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 16px;
}

.split-text h2 {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.split-accent {
    width: 40px;
    height: 3px;
    background: var(--primary);
    margin-bottom: 28px;
}

.split-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 18px;
    line-height: 1.5;
}

.split-text p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.8;
    margin-bottom: 40px;
}

.split-btns {
    display: flex;
    gap: 16px;
}

.split-btn-dark {
    padding: 14px 32px;
    border-radius: 32px;
    font-size: 13px;
    font-weight: 600;
    background: #1a1a1a;
    color: #fff;
    border: 1px solid #1a1a1a;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.split-btn-dark:hover {
    background: #000;
    transform: translateY(-2px);
}

.split-btn-outline {
    padding: 14px 32px;
    border-radius: 32px;
    font-size: 13px;
    font-weight: 600;
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.split-btn-outline:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.split-image {
    flex: 1.1;
    border-radius: 4px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.split-image:hover img {
    transform: scale(1.03);
}

/* ==========================================
   CTA SERVICE SECTION
   ========================================== */
.cta-service-section {
    position: relative;
    padding: 150px 40px;
    color: var(--white);
    text-align: center;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.7) 100%), url('https://www.byd.com/material/byd-site/europe-public/test-drive-v2/test-drive-banner-pc-2880.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
}

.cta-service-section .container {
    position: relative;
    z-index: 2;
}

.cta-service-subtitle {
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.cta-service-title {
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.cta-service-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.scroll-arrow-cta {
    position: absolute;
    bottom: 30px;
    right: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 3;
}

.scroll-arrow-cta:hover {
    transform: scale(1.1);
}

/* ==========================================
   CONTACT
   ========================================== */
.contact-wrapper {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 0 40px 0;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 0;
}

.contact-header-left span {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.contact-header-left h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contact-header-left p {
    font-size: 0.9rem;
    color: #999;
    font-weight: 400;
    margin: 0;
}

.contact-header-right a {
    font-size: 0.85rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: underline;
    text-underline-offset: 4px;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.contact-header-right a:hover {
    opacity: 0.5;
}

.contact-section {
    display: flex;
    background-color: var(--bg-gray);
    min-height: 600px;
}

.contact-form-side {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-side h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--black);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-bottom: 8px;
}

.contact-input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1px solid #d0d0d0;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    color: var(--black);
    outline: none;
    transition: border-color 0.3s;
}

.contact-input:focus {
    border-bottom-color: var(--black);
}

.contact-input::placeholder {
    color: #bbb;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.phone-input-wrap {
    display: flex;
    gap: 10px;
}

.country-code {
    width: 80px;
    background: var(--white);
    border: 1px solid var(--border-color);
    padding: 15px;
    font-size: 0.9rem;
}

.checkbox-group {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    align-items: flex-start;
}

.checkbox-group input {
    margin-top: 5px;
    cursor: pointer;
}

.checkbox-text {
    font-size: 0.75rem;
    color: var(--text-dim);
    line-height: 1.5;
}

.checkbox-text a {
    text-decoration: underline;
    color: var(--black);
}

.btn-submit {
    margin-top: 40px;
    background: var(--black);
    color: var(--white);
    padding: 15px 50px;
    border: none;
    border-radius: 35px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    width: fit-content;
    transition: opacity 0.3s;
}

.btn-submit:hover {
    opacity: 0.8;
}

.contact-image-side {
    flex: 1;
    background: url('https://codeupp.com/storage/app/media/byd-contact.jpg') center/cover no-repeat;
    position: relative;
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 0 40px 0;
}

.footer-description {
    font-size: 0.9rem;
    color: #bbb;
    margin-bottom: 40px;
    max-width: 800px;
    line-height: 1.6;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-left {
    flex: 1;
    min-width: 300px;
}

.footer-right {
    flex: 2;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.footer-slogan {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #bbb;
    margin-bottom: 30px;
}

.footer-info-block {
    font-size: 0.85rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-info-block i {
    margin-right: 10px;
    color: var(--primary);
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.footer-title span {
    color: var(--primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.85rem;
    color: #ccc;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    font-size: 0.85rem;
    color: #ccc;
}

.hours-grid .day {
    color: #fff;
}

.hours-grid .time {
    text-align: right;
}

.hours-grid .closed {
    color: #666;
    text-align: right;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #666;
}

.footer-bottom a:hover {
    color: var(--white);
}

.footer-bottom-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* ==========================================
   FORM ENHANCEMENTS
   ========================================== */
.ts-wrapper,
.ts-wrapper.single,
.td-form-group {
    width: 100%;
}

.td-form-row {
    display: flex;
    gap: 16px;
}

.td-form-row .td-form-group {
    flex: 1;
    min-width: 0;
}

.ts-wrapper.single .ts-control,
.flatpickr-input,
.flatpickr-alt-input,
.td-form-input,
.td-form-select {
    width: 100%;
    min-height: 52px;
    padding: 0 14px;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    box-shadow: none;
    background: #fff;
    font-size: 0.95rem;
    color: #333;
    box-sizing: border-box;
    transition: border-color .25s ease, box-shadow .25s ease;
}

.ts-wrapper.single .ts-control {
    display: flex;
    align-items: center;
}

.ts-wrapper.single .ts-control:hover,
.flatpickr-input:hover,
.flatpickr-alt-input:hover,
.td-form-input:hover {
    border-color: #cfcfcf;
}

.ts-wrapper.single.focus .ts-control,
.ts-wrapper.single .ts-control:focus,
.flatpickr-input:focus,
.flatpickr-alt-input:focus,
.td-form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(237, 28, 36, 0.08);
}

.ts-wrapper.single .ts-control input {
    font-size: 0.95rem;
}

.ts-wrapper .ts-dropdown {
    width: 100%;
    border: 1px solid #ececec;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    margin-top: 8px;
    z-index: 30;
}

.ts-wrapper .option,
.ts-wrapper .item {
    font-size: 0.95rem;
}

.ts-wrapper .option {
    padding: 12px 14px;
}

.ts-wrapper .option.active {
    background: rgba(237, 28, 36, 0.06);
    color: #111;
}

input.flatpickr-input[readonly],
.flatpickr-alt-input {
    width: 100%;
}

.flatpickr-calendar {
    border: 1px solid #ececec;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    overflow: hidden;
}

.flatpickr-months .flatpickr-month {
    background: #fff;
    color: #111;
}

.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year {
    font-weight: 700;
    color: #111;
}

.flatpickr-weekday {
    color: #888;
    font-weight: 600;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.flatpickr-day.today {
    border-color: var(--primary);
    color: var(--primary);
}

.flatpickr-day.today:hover {
    background: rgba(237, 28, 36, 0.08);
    color: #111;
}

/* ==========================================
   CARS LIST PARTIAL
   ========================================== */
.card-img-wrapper {
    height: 120px;
    transition: height 0.3s ease;
}

.mobile-nowrap {
    white-space: nowrap;
}

/* ==========================================
   CAROUSEL / TRACK
   ========================================== */
.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.45, 0, 0.55, 1);
    gap: 20px;
}

.car-card {
    flex: 0 0 calc(33.33% - 13.33px);
    background-color: var(--white);
    border-radius: 8px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.card-body {
    padding: 40px;
}

.card-img {
    height: 220px;
    margin: 10px 0 30px 0;
    background: url('https://byd.hsplus.sk/storage/app/resources/resize/900_0_0_0_crop/img_994898829048f8b5b13e908c21677035.webp') center/contain no-repeat;
}