/* 
    Toyota Bara Windsor - Premium Design System V2 
    Corporate CI Color: #EC5628
*/

:root {
    --bara-ci: #EC5628;
    --bara-dark: #01040a; /* Neutralized Dark */
    --bara-slate: #94a3b8;
}

/* Global Transitions */
a, button { transition: all 0.3s ease; }

/* ---------------------------------------------------------
   FULL-WIDTH & ULTRA-WIDE LAYOUT SYSTEM
--------------------------------------------------------- */
.container {
    max-width: 1400px !important;
}

@media (min-width: 1600px) {
    .container {
        max-width: 1550px !important;
    }
}

/* ---------------------------------------------------------
   PRO FOOTER - Signature Masterpiece Edition
--------------------------------------------------------- */
.pro-footer {
    background: #EC5628;
    background-image: 
        radial-gradient(circle at 10% 20%, #ff763b 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, #d1431a 0%, transparent 40%),
        linear-gradient(180deg, #EC5628 0%, #c2410c 100%);
    color: #ffffff;
    font-family: 'Outfit', 'Kanit', sans-serif;
    padding-top: 100px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}



.pro-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 5;
}

.pro-footer-logo-case {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(245,245,245,0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 20px 45px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 45px rgba(0,0,0,0.3), inset 0 2px 0 rgba(255,255,255,1);
    margin-bottom: 35px;
    position: relative;
}

.pro-footer-logo-case::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 50%;
    transform: translateX(-50%);
    width: 65%; height: 3px;
    background: linear-gradient(90deg, transparent, #EC5628, transparent);
    box-shadow: 0 0 10px rgba(236, 86, 40, 0.5);
    opacity: 0.9;
}

.pro-footer-logo {
    max-width: 220px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.pro-slogan {
    font-size: 1.05rem;
    color: #ffffff;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

.pro-social-list {
    display: flex;
    justify-content: center;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.pro-social-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.25rem;
    transition: all 0.3s;
}

.pro-social-item a:hover {
    background: #ffffff;
    color: #EC5628;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.pro-footer-heading {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.pro-footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ffffff;
}

.pro-footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pro-footer-nav li {
    margin-bottom: 12px;
}

.pro-footer-nav a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 400;
}

.pro-footer-nav a i {
    font-size: 0.7rem;
    margin-left: 8px;
    transition: all 0.3s ease;
}

.pro-footer-nav a:hover {
    color: #ffffff;
    padding-left: 10px;
}

.pro-footer-nav a:hover i {
    transform: translateX(5px);
}

.pro-contact-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.pro-contact-icon {
    min-width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-right: 15px;
}

.pro-contact-text, .pro-contact-text a {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-decoration: none;
    transition: all 0.3s;
    opacity: 0.9;
}

.pro-contact-text a:hover {
    opacity: 1;
    text-decoration: underline !important;
}

.pro-footer-copy {
    background: #000000;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 4px solid #EC5628; /* Bottom Signature Accent */
}

.pro-footer-copy small {
    font-size: 0.85rem;
    color: #64748b;
    letter-spacing: 1px;
}

/* ---------------------------------------------------------
   ABOUT US PAGE
--------------------------------------------------------- */
.premium-about-page {
    background: #fdfdfd;
    min-height: 100vh;
    font-family: var(--font-primary);
    color: #4a5568;
    overflow-x: hidden;
}

.about-hero {
    background: #01040a;
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #EC5628; /* CI Signature Accent */
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(236, 86, 40, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 1;
}

.about-hero-logo-box {
    display: inline-block;
    background: #ffffff;
    padding: 15px 35px;
    border-radius: 4px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.3);
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.about-hero-logo-box::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 50%;
    transform: translateX(-50%);
    width: 60%; height: 3px;
    background: #EC5628;
    box-shadow: 0 0 10px rgba(236, 86, 40, 0.4);
}

.about-hero-logo {
    height: 35px;
    width: auto;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

.about-hero-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.about-hero-title span {
    color: #EC5628;
}

.about-quote-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    border-top: 4px solid #EC5628;
}

.story-row::before {
    background: linear-gradient(180deg, #EC5628 0%, transparent 100%);
}

.story-dot {
    background: #ffffff;
    border: 4px solid #EC5628;
    box-shadow: 0 0 15px rgba(236, 86, 40, 0.4);
}

.highlight-red {
    color: #EC5628;
    font-weight: 600;
}

.customer-first-banner {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f172a 100%);
    border-left: 4px solid #EC5628;
}

.customer-first-banner i {
    color: #EC5628;
}

/* ---------------------------------------------------------
   NEWS & ACTIVITIES (LIST VIEW)
--------------------------------------------------------- */
.premium-news-page {
    background: #f8f9fa;
    min-height: 100vh;
    font-family: var(--font-primary);
}

.news-page-header {
    background: #01040a;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #EC5628; /* CI Signature Accent */
}

.news-page-header::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(236, 86, 40, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 1;
}

.news-page-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.news-page-title span {
    color: #EC5628;
}

.premium-news-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    text-decoration: none !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}

.premium-news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(236, 86, 40, 0.12);
}

.p-news-img-wrapper {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.p-news-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.premium-news-card:hover .p-news-img {
    transform: scale(1.1);
}

.p-news-date-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 8px 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #1a1a2e;
    z-index: 2;
}

.p-news-date-badge .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #EC5628;
    line-height: 1;
}

.p-news-date-badge .month {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 2px;
}

.p-news-content {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.p-news-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.premium-news-card:hover .p-news-title {
    color: #EC5628;
}

.p-news-footer {
    margin-top: auto;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 15px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.premium-news-card:hover .p-news-footer {
    color: #EC5628;
}

.premium-pagination-wrapper {
    margin-top: 50px;
    margin-bottom: 50px;
}

.premium-pagination-wrapper .pagination {
    gap: 5px;
}

.premium-pagination-wrapper .page-item .page-link {
    border-radius: 8px;
    border: none;
    color: #1a1a2e;
    font-weight: 600;
    padding: 10px 18px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.premium-pagination-wrapper .page-item.active .page-link,
.premium-pagination-wrapper .page-item .page-link:hover {
    background: #EC5628;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(236, 86, 40, 0.3);
}

.news-page-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.25rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 10px auto 0;
}

/* ---------------------------------------------------------
   NEWS VIEW (DETAIL PAGE)
--------------------------------------------------------- */
.fw-news-page {
    background: #ffffff;
    font-family: var(--font-primary);
}

.fw-hero-header {
    position: relative;
    width: 100vw;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.fw-hero-header.no-img {
    background: linear-gradient(135deg, #1a1a2e 0%, #293451 100%);
    height: 50vh;
}

.fw-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(15,23,42,0.95) 100%);
    z-index: 1;
}

.fw-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    padding: 0 30px 60px;
    text-align: center;
}

.fw-category-badge {
    display: inline-block;
    background: #EC5628;
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(236, 86, 40, 0.3);
}

.fw-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.fw-meta i {
    color: #EC5628;
    margin-right: 8px;
}

.fw-article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 15px;
    font-size: 1.25rem;
    line-height: 1.9;
    color: #334155;
}

.fw-article-container img {
    max-width: 100vw !important;
    width: 100vw !important;
    height: auto !important;
    margin: 60px 0 60px -50vw;
    position: relative;
    left: 50%;
}

@media (min-width: 768px) {
    .fw-article-container img {
        width: 1000px !important;
        margin: 60px 0 60px -100px;
        left: 0;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
}

.fw-article-container a {
    color: #EC5628;
}

.fw-latest-news-section,
.fw-latest-promos-section {
    background: #f8f9fa;
    padding: 100px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.fw-section-heading {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.fw-section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #EC5628;
    margin: 20px auto 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(236, 86, 40, 0.3);
}

.btn-bara-premium {
    display: inline-block;
    background: #1a1a2e;
    color: #ffffff !important;
    padding: 15px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 25px rgba(26, 26, 46, 0.2);
    border: 2px solid transparent;
}

.btn-bara-premium:hover {
    transform: scale(1.05) translateY(-5px);
    background: #EC5628;
    box-shadow: 0 15px 35px rgba(236, 86, 40, 0.3);
}

.fw-latest-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 30px;
    max-width: 1550px;
    margin: 0 auto;
}

.fw-latest-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
}

.fw-latest-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(236, 86, 40, 0.12);
    border-color: rgba(236, 86, 40, 0.2);
}

.fw-latest-img-wrapper {
    position: relative;
    padding-top: 65%;
    overflow: hidden;
}

.fw-latest-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fw-latest-card:hover .fw-latest-img {
    transform: scale(1.1);
}

.fw-latest-info {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.fw-latest-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.fw-latest-card:hover .fw-latest-title {
    color: #EC5628;
}

.fw-latest-footer {
    margin-top: auto;
    font-size: 0.9rem;
    font-weight: 700;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.fw-latest-footer i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.fw-latest-card:hover .fw-latest-footer {
    color: #EC5628;
}

.fw-latest-card:hover .fw-latest-footer i {
    transform: translateX(5px);
}

@media (max-width: 1400px) {
    .fw-latest-grid { grid-template-columns: repeat(2, 1fr); max-width: 900px; }
}

@media (max-width: 768px) {
    .fw-latest-grid { grid-template-columns: 1fr; padding: 0 20px; }
    .fw-section-heading { font-size: 1.8rem; }
}


/* ---------------------------------------------------------
   PROMOTIONS (LIST VIEW)
--------------------------------------------------------- */
.premium-promos-page {
    background: #f8f9fa;
    min-height: 100vh;
    font-family: var(--font-primary);
}

.promos-page-header {
    background: #01040a;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #EC5628; /* CI Signature Accent */
}

.promos-page-header::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(236, 86, 40, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 1;
}

.promos-page-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
    letter-spacing: 2px;
}

.premium-promo-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    text-decoration: none !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.5s ease;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}

.premium-promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(236, 86, 40, 0.15);
}

.p-promo-img-wrapper {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.p-promo-img {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.premium-promo-card:hover .p-promo-img {
    transform: scale(1.1);
}

.p-promo-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, #1a1a2e, #0f172a);
    color: #ffffff;
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 2;
    text-transform: uppercase;
}

.p-promo-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    border-top: 3px solid #EC5628;
}

.p-promo-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.premium-promo-card:hover .p-promo-title {
    color: #EC5628;
}

.p-promo-footer {
    margin-top: auto;
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.premium-promo-card:hover .p-promo-footer {
    color: #EC5628;
}

.premium-promo-card:hover .p-promo-footer i {
    transform: translateX(5px);
}

.promos-page-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.25rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 10px auto 0;
}

/* ---------------------------------------------------------
   PROMOTION VIEW (DETAIL PAGE)
--------------------------------------------------------- */
.fw-promo-page {
    background: #ffffff;
    font-family: var(--font-primary);
}

.fw-hero-header {
    position: relative;
    width: 100vw;
    height: 70vh;
    min-height: 500px;
    max-height: 800px;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.fw-hero-header.no-img {
    background: linear-gradient(135deg, #EC5628 0%, #780000 100%);
    height: 50vh;
}

.fw-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(15,23,42,0.95) 100%);
    z-index: 1;
}

.fw-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    padding: 0 30px 60px;
    text-align: center;
}

.fw-category-badge {
    display: inline-block;
    background: #EC5628;
    color: white;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(236, 86, 40, 0.3);
}

.fw-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.fw-meta i {
    color: #EC5628;
    margin-right: 8px;
}

.fw-article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 15px;
    font-size: 1.25rem;
    line-height: 1.9;
    color: #334155;
}

.fw-article-container img {
    max-width: 100vw !important;
    width: 100vw !important;
    height: auto !important;
    margin: 60px 0 60px -50vw;
    position: relative;
    left: 50%;
}

@media (min-width: 768px) {
    .fw-article-container img {
        width: 1000px !important;
        margin: 60px 0 60px -100px;
        left: 0;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
}

.fw-article-container a {
    color: #EC5628;
}

.fw-latest-promos-section {
    background: #f8f9fa;
    padding: 80px 0;
    margin-top: 60px;
}

.fw-section-heading::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: #EC5628;
    margin: 15px auto 0;
}

.fw-latest-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(236, 86, 40, 0.1);
}

.fw-latest-info {
    border-top: 3px solid #EC5628;
}

.fw-latest-card:hover .fw-latest-title {
    color: #EC5628;
}

.fw-latest-footer {
    color: #EC5628;
}


/* ---------------------------------------------------------
   CAREERS
--------------------------------------------------------- */
.premium-career-page {
    background: #f8f9fa;
    min-height: 100vh;
    font-family: var(--font-primary);
}

.career-hero {
    background: #01040a;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #EC5628; /* CI Signature Accent */
}

.career-hero::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(236, 86, 40, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.career-hero-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.career-hero-title span {
    color: #EC5628;
}

.career-hero-desc {
    color: #cbd5e1;
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

.job-board-container {
    max-width: 900px;
    margin: -40px auto 60px;
    position: relative;
    z-index: 10;
    padding: 0 15px;
}

.job-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.job-header {
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    position: relative;
}

.job-info-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.job-icon {
    width: 50px;
    height: 50px;
    background: rgba(236, 86, 40, 0.1);
    color: #EC5628;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.job-title-block h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 5px;
}

.job-meta {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.job-meta span i {
    color: #EC5628;
    margin-right: 5px;
}

.btn-apply-sm {
    background: #EC5628;
    color: white !important;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.btn-apply-sm:hover {
    background: #d32f2f;
}

.toggle-icon {
    font-size: 1.2rem;
    color: #94a3b8;
    transition: transform 0.3s ease;
}

.job-header[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

.job-details-body {
    padding: 0 30px 30px 90px;
    color: #475569;
    font-size: 1rem;
    line-height: 1.7;
    border-top: 1px solid rgba(0,0,0,0.03);
    margin-top: 10px;
    padding-top: 25px;
}

.job-details-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
    margin-top: 20px;
}

.job-details-body h4:first-child { margin-top: 0; }

.hr-contact-section {
    background: #01040a;
    background-image: radial-gradient(circle at 100% 100%, rgba(236, 86, 40, 0.08) 0%, transparent 60%);
    padding: 100px 0;
    color: #fff;
    margin-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 5px solid #EC5628; /* CI Signature Divider */
}

.contact-box {
    background: rgba(255,255,255,0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 40px;
    border-radius: 4px; /* Minimalist style */
    height: 100%;
    transition: all 0.3s;
}

.contact-box:hover {
    border-color: #EC5628;
    background: rgba(255,255,255,0.04);
}

.contact-box h4 {
    color: #EC5628;
}

/* ---------------------------------------------------------
   PRIVACY POLICY
--------------------------------------------------------- */
.legal-hero-title span { 
    color: #EC5628; 
}

.legal-text-content a {
    color: #EC5628;
}

/* ---------------------------------------------------------
   HOME PAGE (MODERN REDESIGN)
--------------------------------------------------------- */
:root {
    --primary-bara: #EC5628;
    --primary-bara-hover: #c2410c;
    --dark-bg: #1a1a2e;
    --light-bg: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);
    --shadow-primary: 0 8px 25px rgba(236, 86, 40, 0.4);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-smooth: all 0.3s ease;
}

.modern-home-wrapper {
    background-color: #fafbfc;
}

.modern-home-wrapper h1, .modern-home-wrapper h2, .modern-home-wrapper h3, .modern-home-wrapper h4 {
    font-family: var(--font-primary) !important;
    font-weight: 600 !important;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .space-top-custom { padding-top: 10px; }
}

.bg-gradient-premium {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f0f2f5 100%);
    border-top: 1px solid #e1e4e8;
    border-bottom: 1px solid #e1e4e8;
    padding: 40px 0;
}

.section-overlay-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0.04;
    pointer-events: none;
    background-image: radial-gradient(#000 1px, transparent 1px);
    background-size: 24px 24px;
}

.section-bg-dark-glass {
    position: relative;
    background: linear-gradient(to right, #ffffff, #f7f9fa);
    padding: 50px 0;
    border-radius: 30px;
    margin: 0 20px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.8), 0 20px 50px rgba(0,0,0,0.04);
}

.modern-home-wrapper .u-shadow-v19 {
    box-shadow: var(--shadow-soft) !important;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.7);
    transition: var(--transition-bounce);
    overflow: hidden;
}

.modern-home-wrapper .u-shadow-v19:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hover) !important;
}

.modern-home-wrapper .car-image-wrapper {
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.08));
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
}

.modern-home-wrapper figure:hover .car-image-wrapper {
    transform: scale(1.1) translateY(-8px);
    filter: drop-shadow(0 25px 25px rgba(0,0,0,0.18));
}

.modern-home-wrapper .btn-bara {
    border-radius: 50px !important;
    background: linear-gradient(135deg, var(--primary-bara), #ff763b) !important;
    border: none !important;
    font-weight: 600 !important;
    color: #fff !important;
    box-shadow: var(--shadow-primary) !important;
    transition: var(--transition-smooth) !important;
}

.modern-home-wrapper .btn-bara:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 14px 30px rgba(236, 86, 40, 0.5) !important;
}

.premium-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.08), transparent);
    margin: 40px 0;
}

.premium-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s cubic-bezier(0.5, 0, 0, 1), transform 0.9s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

.premium-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.15s; }

.modern-home-wrapper .g-bg-primary {
    background: linear-gradient(90deg, var(--primary-bara), transparent) !important;
    height: 4px !important;
}


/* ---------------------------------------------------------
   SINGLE PRODUCT PAGE
--------------------------------------------------------- */
.premium-single-product {
    background: #f8f9fa;
    min-height: 100vh;
    font-family: var(--font-primary);
    color: #334155;
}

.product-hero {
    background: #01040a;
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    border-top: 3px solid #EC5628; /* CI Signature Accent */
}

.product-hero::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(236, 86, 40, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 1;
}

.product-presentation-wrapper {
    position: relative;
    z-index: 5;
}

.product-colors legend span {
    font-weight: 700;
    color: #ffffff;
}

.product-colors label {
    display: inline-block;
    width: 45px; height: 45px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.2) !important;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.product-colors input[type="radio"]:checked + label {
    border-color: #ffffff !important;
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(236, 86, 40, 0.6);
}

.model-main-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.social-share a {
    color: #ffffff;
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    margin-right: 10px;
    transition: all 0.3s;
}

.social-share a:hover { 
    background: #EC5628; 
    transform: translateY(-3px); 
    text-decoration: none !important; 
}

.submodel-list {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 15px;
    margin-bottom: 30px;
}

.submodel-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.submodel-name { font-size: 1.1rem; color: #ffffff; font-weight: 500; }
.submodel-price { font-size: 1.25rem; color: #EC5628; font-weight: 700; }
.submodel-price span { font-size: 0.9rem; color: rgba(255,255,255,0.6); font-weight: 400; }

.premium-action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.btn-premium {
    text-align: center;
    padding: 15px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    text-decoration: none !important;
}

.btn-premium-red {
    background: #EC5628;
    color: #ffffff !important;
    border: none;
    box-shadow: 0 10px 20px rgba(236, 86, 40, 0.3);
}

.btn-premium-red:hover { 
    background: #c2410c; 
    transform: translateY(-3px); 
}

.btn-premium-outline {
    background: rgba(255,255,255,0.05);
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
}

.btn-premium-outline:hover { 
    background: rgba(255,255,255,1); 
    color: #1a1a2e !important; 
    transform: translateY(-3px); 
}

.shortcut-section {
    position: relative;
    z-index: 100;
    margin-top: -60px;
}

.shortcut-card {
    background: linear-gradient(145deg, #ffffff 0%, #fffaf9 100%);
    border-radius: 24px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 15px 45px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    text-decoration: none !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(236, 86, 40, 0.05);
    position: relative;
    overflow: hidden;
}

.shortcut-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 5px;
    background: linear-gradient(90deg, #EC5628, #ff8e6e);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.shortcut-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(236, 86, 40, 0.15);
    border-color: rgba(236, 86, 40, 0.15);
}

.shortcut-card:hover::after {
    transform: scaleX(1);
}

.shortcut-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, rgba(236, 86, 40, 0.1) 0%, rgba(236, 86, 40, 0.05) 100%);
    color: #EC5628;
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: all 0.4s;
    border: 1px solid rgba(236, 86, 40, 0.1);
}

.shortcut-card:hover .shortcut-icon {
    background: linear-gradient(135deg, #EC5628 0%, #ff8e6e 100%);
    color: #ffffff;
    transform: rotateY(360deg);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(236, 86, 40, 0.3);
}

.shortcut-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.shortcut-card:hover .shortcut-title {
    color: #EC5628;
}

.premium-logo-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(240,240,240,0.85) 100%);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.6);
    padding: 10px 30px;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2), inset 0 2px 0 rgba(255,255,255,1);
    margin-bottom: 25px;
    position: relative;
}

.premium-logo-badge::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 50%;
    transform: translateX(-50%);
    width: 60%; height: 2px;
    background: linear-gradient(90deg, transparent, #EC5628, transparent);
    opacity: 0.8;
}

/* ---------------------------------------------------------
   CORE NAVIGATION & HEADER (ULTRA-PREMIUM)
--------------------------------------------------------- */
:root {
    --nav-height: 85px;
    --nav-bg: rgba(255, 255, 255, 0.92);
    --nav-text: #111827;
    --nav-accent: #EC5628;
}

.pro-topbar {
    background: #01040a;
    padding: 10px 0;
    font-family: var(--font-primary);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    border-top: 3px solid #EC5628; /* Corporate CI Accent Line */
}

.pro-topbar-slogan {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
}

.pro-topbar-slogan::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #EC5628;
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 10px rgba(236, 86, 40, 0.6);
}

.pro-topbar-contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.pro-topbar-socials {
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pro-topbar-phone {
    color: #ffffff !important;
    font-weight: 600;
    transition: color 0.3s;
    text-decoration: none !important;
}

.pro-topbar-phone i {
    color: #EC5628;
    margin-right: 8px;
    filter: drop-shadow(0 0 5px rgba(236, 86, 40, 0.3));
}

.pro-topbar-phone:hover {
    color: var(--nav-accent) !important;
}

.pro-topbar-icon {
    width: 28px;
    height: 28px;
    background: rgba(236, 86, 40, 0.1);
    border: 1px solid rgba(236, 86, 40, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #EC5628 !important;
    font-size: 0.8rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pro-topbar-icon:hover {
    background: #EC5628;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(236, 86, 40, 0.4);
}

.pro-navbar-wrapper {
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.pro-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}

.pro-brand img {
    height: 52px;
    transition: transform 0.3s;
}

.pro-nav-links {
    display: flex;
    height: 100%;
    align-items: center;
    gap: 35px;
    list-style: none;
    margin: 0;
}

.pro-nav-link {
    color: var(--nav-text) !important;
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    padding: 10px 0;
    text-decoration: none !important;
}

.pro-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--nav-accent);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.pro-nav-link:hover::after, .pro-nav-item.active .pro-nav-link::after {
    width: 100%;
}

.pro-nav-item:hover .pro-nav-link {
    color: var(--nav-accent) !important;
}

.pro-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 260px;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid var(--nav-accent);
}

.pro-nav-item:hover .pro-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pro-dropdown-link {
    display: block;
    padding: 12px 30px;
    color: #4b5563 !important;
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none !important;
}

.pro-dropdown-link:hover {
    background: #f9fafb;
    color: var(--nav-accent) !important;
    padding-left: 35px;
}

.pro-mega-wrapper {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 95vw;
    max-width: 1200px;
    background: #fff;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    padding: 45px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid var(--nav-accent);
}

.pro-nav-item.mega { position: static; }

.pro-nav-item.mega:hover .pro-mega-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.pro-mega-tabs .nav-link {
    color: #6b7280 !important;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 12px 35px !important;
    border: none !important;
    border-bottom: 3px solid transparent !important;
}

.pro-mega-tabs .nav-link.active {
    color: var(--nav-text) !important;
    border-bottom-color: var(--nav-accent) !important;
    background: transparent !important;
}

.pro-mega-card {
    display: block;
    text-align: center;
    text-decoration: none !important;
    padding: 25px;
    border-radius: 20px;
    transition: all 0.4s;
}

.pro-mega-card:hover {
    background: #f9fafb;
    transform: translateY(-8px);
}

.pro-mega-img-wrap {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.pro-mega-img-wrap img {
    max-height: 100%;
    max-width: 90%;
    object-fit: contain;
    transition: transform 0.4s;
}

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

.pro-mega-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--nav-text);
    margin-bottom: 5px;
}

.pro-mega-price {
    font-size: 0.9rem;
    color: #6b7280;
}

.pro-mega-price strong {
    color: var(--nav-accent);
    font-size: 1.1rem;
}

.pro-btn-outline {
    border: 2px solid var(--nav-text);
    color: var(--nav-text) !important;
    padding: 12px 40px;
    border-radius: 60px;
    font-weight: 700;
    text-decoration: none !important;
    transition: all 0.3s;
}

.pro-btn-outline:hover {
    background: var(--nav-text);
    color: #fff !important;
}

.search-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(1, 4, 10, 0.9);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    z-index: 9998;
}

.search-overlay.show {
    opacity: 1;
    visibility: visible;
}

.search-slide-panel {
    position: fixed;
    top: 0; right: -50%;
    width: 35%; height: 100vh;
    background: #ffffff;
    box-shadow: -30px 0 70px rgba(0,0,0,0.15);
    transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 9999;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.search-slide-panel.open { right: 0; }

.search-slide-panel .panel-header {
    padding: 50px 40px 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: linear-gradient(to bottom, #ffffff, rgba(255,255,255,0.8));
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 10;
}

.panel-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0;
    color: var(--nav-text);
    letter-spacing: -0.5px;
}

.panel-title span {
    display: block;
    font-size: 0.9rem;
    color: var(--nav-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
}

.panel-subtitle {
    color: #6b7280;
    font-size: 0.95rem;
    margin-top: 5px;
}

.panel-close-btn {
    background: #f3f4f6;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #4b5563;
    cursor: pointer;
    transition: all 0.3s;
}

.panel-close-btn:hover {
    background: var(--nav-accent);
    color: #fff;
    transform: rotate(90deg);
}

.search-box-wrapper {
    padding: 0 40px 40px;
}

.search-input-group {
    position: relative;
    margin-bottom: 12px;
}

.search-premium-input {
    width: 100%;
    height: 70px;
    background: #f9fafb;
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    padding: 20px 70px 20px 30px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--nav-text);
    outline: none;
    transition: all 0.3s;
}

.search-premium-input:focus {
    background: #ffffff;
    border-color: var(--nav-accent);
    box-shadow: 0 15px 30px rgba(236, 86, 40, 0.1);
}

.search-submit-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #94a3b8;
    cursor: pointer;
}

.search-hint {
    font-size: 0.85rem;
    color: #94a3b8;
    padding-left: 5px;
}

.search-suggestions-section {
    padding: 0 40px;
}

.suggestion-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #94a3b8;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.suggestion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.suggestion-tag {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #4b5563;
    text-decoration: none !important;
    transition: all 0.3s;
}

.suggestion-tag:hover {
    border-color: var(--nav-accent);
    color: var(--nav-accent);
    background: rgba(236, 86, 40, 0.04);
}

.search-results-area {
    padding: 20px 40px;
    flex-grow: 1;
    overflow-y: auto;
}

@media (max-width: 1400px) {
    .search-slide-panel { width: 45%; }
}

@media (max-width: 1024px) {
    .search-slide-panel { width: 100%; right: -100%; }
    .panel-header { padding: 40px 30px 20px; }
    .search-box-wrapper, .search-suggestions-section, .search-results-area { padding: 0 30px 30px; }
}

/* Premium Search Results Display */
.search-results-area {
    padding: 20px 40px 80px;
}

.search-header {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--nav-accent);
    letter-spacing: 1.5px;
    margin: 30px 0 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
}

.search-header:first-child {
    margin-top: 10px;
}

.search-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    margin-bottom: 8px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    font-weight: 600;
    color: var(--nav-text);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.search-item::after {
    content: '\f105'; /* FontAwesome Chevron Right */
    font-family: 'FontAwesome';
    font-size: 1rem;
    color: #94a3b8;
    transition: all 0.3s;
}

.search-item:hover {
    background: #f9fafb;
    border-color: var(--nav-accent);
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}

.search-item:hover::after {
    color: var(--nav-accent);
    margin-right: -5px;
}

.search-no-result {
    text-align: center;
    padding: 60px 20px;
    color: #94a3b8;
}

.search-no-result i {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
    opacity: 0.3;
}

.search-no-result p {
    font-size: 1.1rem;
    font-weight: 500;
}

.pro-search-btn {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--nav-text);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pro-search-btn:hover, .pro-mobile-toggle:hover {
    background: #ffffff;
    border-color: var(--nav-accent);
    color: var(--nav-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(236, 86, 40, 0.1);
}

.pro-mobile-toggle {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--nav-text);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pro-nav-actions {
    display: flex;
    align-items: center;
}

.pro-nav-actions > * {
    margin-left: 20px;
}

@media (max-width: 768px) {
    .pro-nav-actions > * {
        margin-left: 15px;
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

@media (max-width: 1024px) {
    .pro-navbar { height: 70px; }
    .pro-brand img { height: 42px; }
    .pro-nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        padding: 50px 25px;
        box-shadow: -20px 0 60px rgba(0,0,0,0.15);
        transition: right 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        gap: 12px;
        overflow-y: auto;
    }
    .pro-nav-links.show { right: 0; }
    .pro-nav-item { width: 100%; border: none; margin-bottom: 4px; }

    .pro-nav-link { 
        width: 100%; 
        padding: 18px 20px; 
        font-size: 1.15rem;
        font-weight: 600;
        color: var(--nav-text) !important;
        background: #f9fafb;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border: 1px solid #f1f5f9;
        text-decoration: none !important;
    }

    .pro-nav-item.active .pro-nav-link, .pro-nav-link:hover {
        background: #ffffff;
        border-color: var(--nav-accent);
        color: var(--nav-accent) !important;
        box-shadow: 0 10px 20px rgba(236, 86, 40, 0.08);
        transform: translateY(-2px);
    }
    
    .pro-nav-link i {
        font-size: 0.85rem;
        color: #94a3b8;
        transition: transform 0.3s;
    }
    
    .pro-nav-item.active-mobile .pro-nav-link i {
        transform: rotate(180deg);
        color: var(--nav-accent);
    }
    .pro-mega-wrapper, .pro-dropdown {
        position: static;
        width: 100%;
        transform: none !important;
        box-shadow: none;
        border: none;
        padding: 0 0 20px 20px;
        display: none;
        opacity: 1;
        visibility: visible;
        background: #f9fafb;
    }
    .pro-nav-item.active-mobile .pro-mega-wrapper,
    .pro-nav-item.active-mobile .pro-dropdown {
        display: block;
    }

    /* Simplified Mega Menu for Mobile */
    .pro-mega-wrapper { padding: 15px 20px; }
    .pro-mega-tabs { display: none !important; } /* Hide tabs on mobile, just show all or simple group */
    .pro-mega-img-wrap, .pro-mega-price { display: none !important; }
    .pro-mega-card { 
        padding: 12px 0; 
        text-align: left; 
        border-bottom: 1px solid #f1f5f9; 
    }
    .pro-mega-title { font-size: 1rem; margin: 0; }
    .pro-mega-wrapper .row > div { margin-bottom: 0 !important; }
    
    /* Promotions Simplified */
    .pro-mega-wrapper img { display: none !important; }
    .pro-mega-wrapper .col-lg-5 { border: none !important; padding: 0 !important; }
    .pro-mega-wrapper .pl-lg-5 { padding: 0 !important; }
    .pro-mega-wrapper .media { padding: 12px 0; border-bottom: 1px solid #f1f5f9; }
    .pro-mega-wrapper .text-right { text-align: left !important; margin-top: 15px; }
    .search-slide-panel { width: 100%; right: -100%; }

    main.g-pt-120 {
        padding-top: 70px !important;
    }
}

/* ---------------------------------------------------------
   CONTACT US PAGE - REFINED EDITION
--------------------------------------------------------- */
.premium-contact-page {
    background: #f8fafc;
    min-height: 100vh;
    font-family: var(--font-primary);
    color: #1e293b;
}

.contact-hero {
    background: #01040a;
    padding: 180px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #EC5628;
    width: 100%;
}

.contact-hero::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(236, 86, 40, 0.12) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.contact-hero-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.contact-hero-subtitle {
    color: #cbd5e1;
    font-size: 1.25rem;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.quick-contact-wrapper {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.c-info-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.c-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(236, 86, 40, 0.15);
}

.c-icon-box {
    width: 65px; height: 65px;
    background: rgba(236, 86, 40, 0.1);
    color: #EC5628;
    border-radius: 50%;
    display: flex;
    align-items: center; justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.c-info-card:hover .c-icon-box {
    background: #EC5628;
    color: #fff;
}

.c-info-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.c-info-desc {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    font-weight: 400;
}

.contact-ad-banner {
    border-radius: 24px;
    overflow: hidden;
    margin: 80px auto;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.contact-ad-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-ad-banner:hover {
    transform: scale(1.02);
}

.section-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 70px;
    position: relative;
}

.section-heading::after {
    content: '';
    display: block;
    width: 60px;
    height: 5px;
    background: #EC5628;
    margin: 20px auto 0;
    border-radius: 3px;
}

.p-branch-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none !important;
}

.p-branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(236, 86, 40, 0.12);
    border-color: rgba(236, 86, 40, 0.2);
}

.p-branch-header {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
}

.p-branch-img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.p-branch-name-badge {
    position: absolute;
    bottom: -22px; left: 25px;
    background: #1a1a2e;
    color: #fff;
    padding: 12px 28px;
    border-radius: 40px;
    font-size: 1.15rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    border: 2px solid #fff;
    z-index: 5;
}

.p-branch-body {
    padding: 45px 30px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.p-branch-map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    height: 180px;
    border: 1px solid rgba(0,0,0,0.04);
}

.p-branch-info-list {
    margin: 0; padding: 0;
    list-style: none;
    font-size: 1rem;
    color: #475569;
}

.p-branch-info-list li {
    display: flex; align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.p-branch-info-list li i {
    color: #EC5628;
    margin-top: 5px;
    font-size: 1.2rem;
}

.p-branch-details {
    background: #f8fafc;
    padding: 20px;
    border-radius: 16px;
    margin-top: auto;
    border: 1px solid #f1f5f9;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
    border-bottom: 1px dashed rgba(0,0,0,0.08);
    padding-bottom: 10px;
}

.detail-row:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.detail-label { font-weight: 600; color: #1e293b; }
.detail-value { font-weight: 700; color: #EC5628; text-align: right; }

.cta-career-section {
    background: linear-gradient(135deg, #EC5628 0%, #da461a 100%);
    padding: 100px 0;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.cta-career-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-career-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta-career-section p {
    font-size: 1.2rem;
    color: #ffffff !important;
    opacity: 0.95;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.btn-white-solid {
    background: #ffffff;
    color: #EC5628 !important;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
    text-decoration: none !important;
}

.btn-white-solid:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.3);
    background: #f8fafc;
}

@media (max-width: 991px) {
    .contact-hero { padding: 150px 0 100px; }
    .contact-hero-title { font-size: 2.8rem; }
    .section-heading { font-size: 2.1rem; }
    .p-branch-card { margin-bottom: 40px; }
}

@media (max-width: 768px) {
    .contact-hero-title { font-size: 2.2rem; }
    .quick-contact-wrapper { margin-top: -40px; }
    .c-info-card { padding: 25px 20px; }
}

/* ---------------------------------------------------------
   ABOUT US PAGE (PREMIUM NARRATIVE)
--------------------------------------------------------- */
.premium-about-page {
    background: #ffffff;
    font-family: var(--font-primary);
    color: #334155;
}

.about-hero {
    background: linear-gradient(135deg, #01040a 0%, #0f172a 100%);
    padding: 160px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(236, 86, 40, 0.12) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    pointer-events: none;
}

.about-hero-logo-box {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .about-hero-logo-box {
        margin-bottom: 20px;
        padding: 12px 25px;
    }
}

.about-hero-logo {
    height: 80px;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.2));
    transition: all 0.3s ease;
}

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

.about-hero-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.about-hero-title span {
    color: #EC5628;
}

.about-quote-wrapper {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding: 0 15px;
}

.about-quote-card {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid #EC5628;
}

.about-quote-text {
    font-size: 1.4rem;
    color: #1a1a2e;
    font-weight: 500;
    line-height: 1.8;
    margin: 0;
    font-style: italic;
}

.about-story-section {
    padding: 100px 15px;
}

.story-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 50px;
}

.story-container::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(236, 86, 40, 0.3), transparent);
    z-index: 1;
}

.story-row {
    position: relative;
    padding-left: 120px;
    margin-bottom: 100px;
}

.story-dot {
    position: absolute;
    left: 0;
    top: 10px;
    width: 24px;
    height: 24px;
    background: #EC5628;
    border-radius: 50%;
    box-shadow: 0 0 0 10px rgba(236, 86, 40, 0.1);
    z-index: 2;
}

.story-bg-number {
    position: absolute;
    left: -20px;
    top: -20px;
    font-size: 10rem;
    font-weight: 900;
    color: rgba(236, 86, 40, 0.04);
    line-height: 1;
    user-select: none;
}

.story-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 25px;
    position: relative;
}

.story-content h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: #EC5628;
    margin-top: 10px;
}

.story-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #4b5563;
}

.highlight-red {
    color: #EC5628;
    font-weight: 700;
}

.customer-first-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #01040a;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.customer-first-banner i {
    color: #EC5628;
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .about-story-section { padding: 60px 15px; }
    .story-row { padding-left: 80px; margin-bottom: 60px; }
    .story-content h2 { font-size: 1.8rem; }
}

@media (max-width: 768px) {
    .about-hero { padding: 120px 0 80px; }
    .about-hero-title { font-size: 2rem; letter-spacing: 1px; }
    
    .about-quote-wrapper { margin-top: -40px; }
    .about-quote-card { padding: 35px 25px; border-radius: 20px; }
    .about-quote-text { font-size: 1.1rem; line-height: 1.6; }
    
    .story-row { padding-left: 50px; margin-bottom: 50px; }
    .story-container::before { left: 9px; }
    .story-dot { width: 20px; height: 20px; top: 5px; }
    .story-bg-number { font-size: 6rem; left: -10px; top: -10px; opacity: 0.08; }
    
    .story-content h2 { font-size: 1.5rem; margin-bottom: 15px; }
    .story-content p { font-size: 1.05rem; line-height: 1.7; }
    
    .customer-first-banner { padding: 12px 25px; font-size: 0.95rem; width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .about-hero-title { font-size: 1.7rem; }
    .story-row { padding-left: 40px; }
    .story-dot { width: 16px; height: 16px; box-shadow: 0 0 0 6px rgba(236, 86, 40, 0.1); }
    .story-container::before { left: 7px; }
}

/* ---------------------------------------------------------
   MODEL DETAIL (SINGLE PRODUCT) PAGE
--------------------------------------------------------- */
.premium-single-product {
    background: #f8fafc;
    min-height: 100vh;
    font-family: var(--font-primary);
    color: #1e293b;
    overflow-x: hidden;
}

.product-hero {
    background: #01040a;
    background-image: 
        radial-gradient(circle at 50% 45%, rgba(236, 86, 40, 0.2) 0%, transparent 75%),
        linear-gradient(180deg, #0a111a 0%, #01040a 100%);
    padding: 180px 0 120px;
    position: relative;
    overflow: hidden;
    border-top: 5px solid #EC5628;
    width: 100%;
}

.product-hero::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(236, 86, 40, 0.1) 0%, transparent 100%);
    z-index: 1;
}

.product-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at bottom, rgba(236, 86, 40, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

@keyframes silverShimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes pulseGlow {
    from { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1.2); }
}

.product-presentation-wrapper {
    position: relative;
    z-index: 10;
}

.sticky-product-view {
    position: sticky;
    top: 140px;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100% - 120px);
}

.model-main-title {
    color: #ffffff;
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    padding-left: 20px;
    border-left: 5px solid #EC5628;
    background: linear-gradient(to bottom, #ffffff 60%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-colors {
    border: none;
    padding: 0;
    margin: 25px 0;
}

.product-colors legend {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    border: none;
    width: auto;
}

.product-colors legend span {
    color: #ffffff;
    margin-left: 5px;
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.product-colors input[type="radio"] {
    display: none;
}

.product-colors label {
    width: 34px; height: 34px;
    border-radius: 50%;
    margin: 0 10px 15px;
    cursor: pointer;
    border: 3px solid #ffffff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.product-colors label:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 25px rgba(0,0,0,0.5);
}

.product-colors input[type="radio"]:checked + label {
    border-color: #EC5628;
    transform: scale(1.2);
    box-shadow: 0 0 0 2px rgba(236, 86, 40, 0.3), 0 10px 30px rgba(236, 86, 40, 0.5);
}

.product-colors input[type="radio"]:checked + label::after {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 0.8rem;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.submodel-list {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(236, 86, 40, 0.1);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.submodel-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.submodel-item:last-child { border-bottom: none; }

.submodel-name {
    color: #f1f5f9;
    font-weight: 600;
    font-size: 1.15rem;
}

.submodel-price {
    color: #EC5628;
    font-weight: 800;
    font-size: 1.4rem;
    text-shadow: 0 0 15px rgba(236, 86, 40, 0.2);
}

.submodel-price span {
    font-size: 0.85rem;
    color: #cbd5e1;
    margin-left: 5px;
    font-weight: 400;
}

.premium-action-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-premium {
    display: flex;
    align-items: center; justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    transition: all 0.3s;
    text-decoration: none !important;
}

.btn-premium-outline {
    border: 2px solid rgba(255,255,255,0.2);
    color: #ffffff !important;
}

.btn-premium-outline:hover {
    background: #ffffff;
    color: #1a1a2e !important;
}

.btn-premium-red {
    background: #EC5628;
    color: #ffffff !important;
}

.btn-premium-red:hover {
    background: #da461a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(236, 86, 40, 0.4);
}

.btn-premium-full {
    width: 100%;
    background: rgba(255,255,255,0.08);
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.1);
}

.btn-premium-full:hover {
    background: #ffffff;
    color: #1a1a2e !important;
}

.btn-premium-full i {
    color: #EC5628 !important;
}

@media (max-width: 991px) {
    .model-main-title { font-size: 2.5rem; }
    .premium-action-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .product-hero { padding: 150px 0 80px; }
    .model-main-title { font-size: 2rem; }
}

/* ---------------------------------------------------------
   SHOWROOM & SERVICE PAGE
--------------------------------------------------------- */
.premium-showroom-page {
    background: #f8fafc;
    min-height: 100vh;
    font-family: var(--font-primary);
    color: #334155;
}

.sr-hero {
    background: #01040a;
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #EC5628;
}

.sr-hero::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(236, 86, 40, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.sr-hero-logo {
    width: 180px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    filter: brightness(1.2);
}

.sr-hero-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.sr-hero-subtitle {
    color: #cbd5e1;
    font-size: 1.15rem;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.showrooms-section {
    padding: 80px 0 20px;
}

.p-branch-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-decoration: none !important;
}

.p-branch-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(236, 86, 40, 0.15);
    border-color: rgba(236, 86, 40, 0.3);
}

.p-branch-img-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    background: #f1f5f9;
}

.p-branch-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.p-branch-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.p-branch-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.p-branch-address {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.p-branch-address i {
    color: #EC5628;
    margin-top: 3px;
    font-size: 1.1rem;
}

.p-branch-tel-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 25px;
    margin-top: auto;
}

.tel-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    padding: 10px 15px;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
    font-size: 0.85rem;
}

.tel-item-label { color: #334155; font-weight: 600; }
.tel-item-value { color: #EC5628; font-weight: 700; }

.p-branch-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #EC5628;
    font-weight: 700;
    font-size: 0.95rem;
    border-top: 1px dashed rgba(0,0,0,0.1);
    padding-top: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.p-branch-card:hover .p-branch-action { 
    color: #1a1a2e; 
}

.master-map-container {
    background: #ffffff;
    padding: 10px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.02);
}

#map {
    width: 100%;
    height: 500px;
    border-radius: 16px;
}

.section-heading-sm {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 50px;
}

.section-heading-sm::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: #EC5628;
    margin: 15px auto 0;
    border-radius: 2px;
}

.p-promo-card-sm {
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    display: block;
    text-decoration: none !important;
    height: 100%;
}

.p-promo-img-sm {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.p-promo-title-sm {
    padding: 20px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.5;
    margin: 0;
}

.btn-outline-red {
    display: inline-block;
    padding: 12px 35px;
    border: 2px solid #EC5628;
    color: #EC5628;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-outline-red:hover {
    background: #EC5628;
    color: #ffffff;
}

.premium-map-label {
    background: #1a1a2e;
    color: #ffffff;
    border: 2px solid #EC5628;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 6px 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.premium-map-label::before {
    border-top-color: #EC5628 !important;
}

@media (max-width: 768px) {
    .sr-hero { padding: 130px 0 80px; }
    .sr-hero-title { font-size: 2.2rem; }
    .p-branch-card { margin-bottom: 30px; }
    #map { height: 400px; }
}

/* ---------------------------------------------------------
   SHOWROOM DETAIL PAGE (INDIVIDUAL BRANCH)
--------------------------------------------------------- */
.premium-showroom {
    font-family: var(--font-primary);
    color: #334155;
    background: #f8fafc;
    min-height: 100vh;
}

.showroom-hero {
    position: relative;
    padding: 180px 0 120px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    overflow: hidden;
    border-top: 3px solid #EC5628;
}

.showroom-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(1, 4, 10, 0.7) 0%, rgba(1, 4, 10, 0.3) 50%, rgba(1, 4, 10, 0.5) 100%);
    z-index: 1;
}

.showroom-hero-content {
    position: relative;
    z-index: 2;
}

.showroom-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.showroom-tel-main {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.08);
    padding: 10px 40px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    text-decoration: none !important;
    transition: all 0.3s;
}

.showroom-tel-main i { color: #EC5628; }

.showroom-tel-main:hover {
    background: #EC5628;
    border-color: #EC5628;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(236, 86, 40, 0.4);
}

.showroom-tel-main:hover i { color: #ffffff; }

.showroom-content-section {
    padding: 80px 0 100px;
}

.contact-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.02);
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(236, 86, 40, 0.12);
    border-color: rgba(236, 86, 40, 0.2);
}

.contact-icon {
    width: 65px; height: 65px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: #EC5628;
    flex-shrink: 0;
    transition: all 0.3s;
}

.contact-card:hover .contact-icon { 
    background: #EC5628; 
    color: #ffffff; 
}

.contact-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #EC5628;
    margin-top: 8px;
    display: block;
}

.premium-map-wrapper {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.03);
    height: 100%;
    min-height: 600px;
    position: relative;
}

.premium-map-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
}

@media (max-width: 991px) {
    .showroom-hero { padding: 140px 0 80px; }
    .showroom-title { font-size: 2.2rem; }
    .showroom-tel-main { font-size: 1.3rem; padding: 10px 25px; }
    .premium-map-wrapper { min-height: 400px; margin-top: 30px; }
    .contact-card { padding: 20px; flex-direction: column; align-items: center; text-align: center; }
}

/* ---------------------------------------------------------
   MODEL LIST (CAR SHOWROOM) PAGE
--------------------------------------------------------- */
.premium-product-page {
    background: #f8fafc;
    min-height: 100vh;
    font-family: var(--font-primary);
    color: #334155;
}

.product-page-header {
    background: #01040a;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 3px solid #EC5628;
}

.product-page-header::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(236, 86, 40, 0.12) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 1;
}

.product-page-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.product-page-title span {
    color: #EC5628;
}

.product-page-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.25rem;
    font-weight: 300;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.category-header {
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
}

.category-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a2e;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 4px;
    background: #EC5628;
    border-radius: 2px;
}

.car-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(236, 86, 40, 0.15);
    border-color: rgba(236, 86, 40, 0.2);
}

.car-img-wrapper {
    position: relative;
    padding-top: 65%;
    background: #f8f9fa;
}

.car-img {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    max-width: 95%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.car-card:hover .car-img {
    transform: translate(-50%, -50%) scale(1.06);
}

.car-info {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.car-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.car-card:hover .car-name {
    color: #EC5628;
}

.car-pricing-grid {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(0,0,0,0.05);
    padding-top: 15px;
    margin-top: auto;
}

.pricing-block {
    flex: 1;
}

.pricing-block.left {
    border-right: 1px solid rgba(0,0,0,0.05);
    padding-right: 10px;
}

.pricing-block.right {
    padding-left: 10px;
}

.pricing-label {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 5px;
}

.pricing-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: #EC5628;
}

.pricing-value span.currency {
    font-size: 0.8rem;
    color: #1a1a2e;
    font-weight: 500;
    margin-left: 2px;
}

.badge-installments {
    background: #1a1a2e;
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .product-page-header { padding: 120px 0 60px; }
    .product-page-title { font-size: 2.2rem; }
    .category-title { font-size: 1.8rem; }
    .car-info { padding: 15px; }
    .car-name { font-size: 1.2rem; margin-bottom: 15px; }
    .pricing-value { font-size: 1rem; }
    .badge-installments { font-size: 0.85rem; }
}

/* ---------------------------------------------------------
   TEST DRIVE FORM PAGE (SPLIT LAYOUT)
--------------------------------------------------------- */
.td-fullscreen-wrapper {
    font-family: var(--font-primary);
    overflow-x: hidden;
}

.td-hero-panel {
    background: linear-gradient(135deg, #01040a 0%, #0f172a 100%);
    min-height: 100vh;
    height: 100%;
    position: relative;
    padding: 120px 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    overflow: hidden;
    border-top: 4px solid #EC5628;
}

.td-hero-content-sticky {
    position: sticky;
    top: 140px;
    width: 100%;
    z-index: 5;
    padding: 20px 0;
}

.td-hero-panel::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(236, 86, 40, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.td-hero-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.td-hero-img {
    max-width: 100%;
    width: auto;
    max-height: 45vh;
    object-fit: contain;
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
    filter: drop-shadow(0 25px 45px rgba(0,0,0,0.5));
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.td-hero-panel:hover .td-hero-img {
    transform: scale(1.05) translateY(-15px);
}

.td-price-wrapper {
    display: flex;
    gap: 25px;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
    justify-content: center;
}

.td-price-glass-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px 35px;
    min-width: 240px;
    transition: all 0.3s;
}

.td-price-glass-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(236, 86, 40, 0.3);
}

.td-price-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.td-price-value {
    font-size: 2rem;
    font-weight: 800;
    color: #EC5628;
}

.td-price-value span {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    font-weight: 400;
    margin-left: 5px;
}

.td-form-panel {
    background: #ffffff;
    min-height: 100vh;
    padding: 100px 6vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.td-form-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #01040a;
    margin-bottom: 15px;
}

.td-form-desc {
    font-size: 1.15rem;
    color: #64748b;
    margin-bottom: 50px;
    line-height: 1.7;
}

.td-input-group label {
    font-weight: 700;
    color: #1e293b;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.td-input-group label span {
    color: #EC5628;
}

.td-input, .td-select {
    background: #f8fafc;
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 18px 20px;
    width: 100%;
    font-size: 1rem;
    color: #01040a;
    transition: all 0.3s ease;
}

.td-input:focus, .td-select:focus {
    background: #ffffff;
    border-color: #EC5628;
    box-shadow: 0 10px 25px rgba(236, 86, 40, 0.1);
    outline: none;
}

.td-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23EC5628' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 18px;
}

.td-time-pills {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.td-time-pill {
    flex: 1;
    min-width: 140px;
    position: relative;
}

.td-time-pill input {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    z-index: 2;
}

.td-time-pill-btn {
    display: block;
    text-align: center;
    background: #f8fafc;
    border: 2px solid #f1f5f9;
    border-radius: 15px;
    padding: 18px 10px;
    font-weight: 700;
    color: #64748b;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.td-time-pill input:checked ~ .td-time-pill-btn {
    background: #01040a;
    color: #ffffff;
    border-color: #01040a;
    box-shadow: 0 10px 25px rgba(26,26,46,0.25);
    transform: translateY(-4px);
}

.td-consent-box {
    background: #f8fafc;
    border-radius: 15px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.td-consent-box input[type="checkbox"] {
    width: 24px;
    height: 24px;
    accent-color: #EC5628;
}

.td-consent-text a {
    color: #01040a;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid rgba(236, 86, 40, 0.3);
}

.td-btn-submit {
    background: linear-gradient(135deg, #EC5628 0%, #da461a 100%);
    color: #ffffff;
    border: none;
    border-radius: 60px;
    padding: 22px 40px;
    font-size: 1.3rem;
    font-weight: 800;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 15px 35px rgba(236, 86, 40, 0.3);
    margin-top: 35px;
}

.td-btn-submit:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(236, 86, 40, 0.45);
}

@media (max-width: 991px) {
    .td-hero-panel { min-height: 40vh; padding: 60px 40px; border-top: none; border-bottom: 4px solid #EC5628; }
    .td-hero-title { font-size: 2.5rem; }
    .td-form-panel { padding: 60px 30px; }
}

/* ---------------------------------------------------------
   PREMIUM SHOWROOM SECTION
--------------------------------------------------------- */
.premium-showroom-section {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.showroom-header {
    text-align: center;
    margin-bottom: 70px;
}

.showroom-subtitle {
    display: block;
    color: #EC5628;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.showroom-title {
    font-size: 3rem;
    font-weight: 800;
    color: #01040a;
    letter-spacing: -1px;
}

.showroom-title span {
    color: #EC5628;
    position: relative;
    margin-left: 10px;
}

.branch-card {
    display: block;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 400px;
    text-decoration: none !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #01040a;
}

.branch-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 80px rgba(236, 86, 40, 0.15);
}

.branch-img-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.branch-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0.85;
}

.branch-card:hover .branch-img {
    transform: scale(1.15);
    opacity: 0.6;
}

.branch-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(1, 4, 10, 0) 0%, rgba(1, 4, 10, 0.9) 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.5s ease;
}

.branch-info-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: scale(0.8) rotate(-45deg);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.branch-card:hover .branch-info-badge {
    transform: scale(1) rotate(0);
    opacity: 1;
}

.branch-name {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    transition: transform 0.5s ease;
}

.branch-tel {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 25px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.1s;
}

.tel-icon-circle {
    width: 32px;
    height: 32px;
    background: #EC5628;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(236, 86, 40, 0.4);
}

.branch-cta-hint {
    color: #EC5628;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s ease 0.2s;
}

.branch-card:hover .branch-name {
    transform: translateY(-10px);
}

.branch-card:hover .branch-tel,
.branch-card:hover .branch-cta-hint {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 991px) {
    .premium-showroom-section { padding: 80px 0; }
    .showroom-title { font-size: 2.2rem; }
    .branch-card { height: 350px; }
}

/* ---------------------------------------------------------
   PREMIUM SERVICES SECTION (Bento Grid)
--------------------------------------------------------- */
.premium-service-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.service-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(236, 86, 40, 0.05) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

/* Hiring Banner Modernized */
.hiring-banner-wrapper {
    display: flex;
    background: #01040a;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.05);
}

.hiring-banner-wrapper:hover {
    transform: translateY(-8px);
}

.hiring-banner-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    background: linear-gradient(90deg, #01040a 60%, transparent 100%);
}


.hiring-tag::before {
    content: "";
    width: 30px;
    height: 2px;
    background: #EC5628;
}

.hiring-title {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.hiring-title span { color: #EC5628; }

.hiring-desc {
    color: #94a3b8;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.hiring-btn {
    align-self: flex-start;
    background: #EC5628;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.hiring-banner-wrapper:hover .hiring-btn {
    padding-right: 40px;
    box-shadow: 0 0 20px rgba(236, 86, 40, 0.4);
}

.hiring-banner-visual {
    position: absolute;
    top: 0; right: 0; width: 50%; height: 100%;
    z-index: 1;
}

.hiring-banner-img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1s ease;
}

.hiring-banner-wrapper:hover .hiring-banner-img {
    transform: scale(1.05);
}

.banner-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #01040a 0%, transparent 100%);
}

.banner-pulse-icon {
    position: absolute;
    top: 30px; right: 30px;
    width: 60px; height: 60px;
    background: rgba(236, 86, 40, 0.2);
    border: 2px solid #EC5628;
    color: #EC5628;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 5;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(236, 86, 40, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(236, 86, 40, 0); }
    100% { box-shadow: 0 0 0 0 rgba(236, 86, 40, 0); }
}

/* Section Header */
.service-subtitle {
    color: #EC5628;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
}

.service-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #01040a;
    margin-bottom: 20px;
}

.service-title span { color: #EC5628; }

.service-title-line {
    width: 80px;
    height: 4px;
    background: #EC5628;
    margin: 0 auto;
    border-radius: 2px;
}

/* Bento Grid System */
.service-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 280px;
    gap: 25px;
}

.service-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #f8fafc;
    text-decoration: none !important;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(0,0,0,0.05);
}

.card-large { grid-row: span 2; }
.card-wide { grid-column: span 2; }

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px -12px rgba(0,0,0,0.15);
    border-color: rgba(236, 86, 40, 0.3);
}

.service-img-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.service-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .service-bg-img {
    transform: scale(1.1);
}

.card-overlay-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1, 4, 10, 0.6) 0%, transparent 40%);
    z-index: 2;
    transition: all 0.5s ease;
}

.service-card:hover .card-overlay-shade {
    background: linear-gradient(to top, rgba(236, 86, 40, 0.4) 0%, transparent 60%);
}

.service-content-box {
    position: absolute;
    inset: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 3;
    background: transparent;
}

.service-content-box.min-style {
    padding: 30px;
}

.service-icon-wrap {
    width: 50px;
    height: 50px;
    background: #EC5628;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.service-label {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.card-large .service-label { font-size: 2rem; }

.service-short-desc {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.service-card:hover .service-short-desc {
    opacity: 1;
    transform: translateY(0);
}

.service-link {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-link i {
    color: #EC5628;
    transition: transform 0.3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* Responsive Bento */
@media (max-width: 1200px) {
    .hiring-banner-content { padding: 40px; }
    .hiring-title { font-size: 1.8rem; }
    .service-bento-grid { grid-auto-rows: 240px; }
}

@media (max-width: 991px) {
    .service-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .card-wide { grid-column: span 1; }
    .card-large { grid-row: span 1; }
    .hiring-banner-visual { display: none; }
    .hiring-banner-content { background: #01040a; padding: 40px; text-align: center; align-items: center; }
    .hiring-btn { align-self: center; }
}

@media (max-width: 767px) {
    .premium-service-section { padding: 60px 0; }
    .service-title { font-size: 2rem; }
    .service-bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .service-card { height: 250px; }
    .hiring-title { font-size: 1.5rem; }
    .hiring-desc { font-size: 1rem; }
}


/* Full Edge Mode Adjustments - Refined with Breathing Room */
.premium-service-section .container-fluid {
    padding-left: 20px !important;
    padding-right: 20px !important;
    max-width: 100% !important;
}

@media (min-width: 768px) {
    .premium-service-section .container-fluid {
        padding-left: 40px !important;
        padding-right: 40px !important;
    }
}

@media (min-width: 1200px) {
    .premium-service-section .container-fluid {
        padding-left: 80px !important;
        padding-right: 80px !important;
    }
}

@media (min-width: 1600px) {
    .premium-service-section .container-fluid {
        padding-left: 100px !important;
        padding-right: 100px !important;
    }
    .service-bento-grid {
        grid-auto-rows: 350px;
    }
}

.edge-to-edge {
    border-radius: 12px !important; /* Keep slight rounding for elegance */
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: none !important;
    display: flex !important;
}

/* Showroom Grid Spacing Reform */
.showroom-grid {
    padding: 0 15px;
    gap: 0; /* Keeping it seamless but adding inner card padding */
}

.edge-card {
    border-radius: 24px !important;
    height: 500px !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.branch-card:hover.edge-card {
    border-color: #EC5628 !important;
    box-shadow: 0 20px 45px rgba(236, 86, 40, 0.15);
}

.branch-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1, 4, 10, 0.6) 0%, transparent 50%);
    z-index: 2;
    transition: all 0.5s ease;
}

.branch-card:hover .branch-overlay-gradient {
    background: linear-gradient(to top, rgba(236, 86, 40, 0.5) 0%, transparent 70%);
}

.branch-meta {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 5;
    text-align: left;
}

.branch-tag {
    display: inline-block;
    background: #EC5628;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease;
}

.branch-card:hover .branch-tag {
    transform: translateY(0);
    opacity: 1;
}

.branch-details {
    margin-top: 15px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s ease 0.1s;
}

.branch-card:hover .branch-details {
    transform: translateY(0);
    opacity: 1;
}

/* Responsive Showroom Edge Cards */
@media (max-width: 1200px) {
    .edge-card { height: 400px !important; }
    .branch-meta { bottom: 30px; left: 30px; }
}

@media (max-width: 767px) {
    .edge-card { height: 320px !important; }
    .branch-meta { bottom: 20px; left: 20px; }
    .branch-name { font-size: 1.5rem; }
}

/* Restore Showroom Enhancements */
.showroom-title-line {
    width: 80px;
    height: 4px;
    background: #EC5628;
    margin: 0 auto;
    border-radius: 2px;
}

/* Professional Image Clarity & CI Polish */
.service-card:hover .service-bg-img,
.branch-card:hover .branch-img {
    filter: brightness(1.1) contrast(1.05);
}

.service-label, .branch-name {
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.branch-tag {
    box-shadow: 0 5px 15px rgba(236, 86, 40, 0.3);
}

/* ---------------------------------------------------------
   ULTIMATE PRO ADD-ONS (Ultra-Premium Design)
--------------------------------------------------------- */
.ultra-pro-card {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.ultra-pro-card:hover {
    transform: translateY(-15px) scale(1.02) rotateX(2deg) rotateY(2deg);
    box-shadow: 0 40px 80px -15px rgba(236, 86, 40, 0.2) !important;
}

.shimmer-effect {
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: none;
    z-index: 4;
    pointer-events: none;
}

.ultra-pro-card:hover .shimmer-effect {
    animation: proShimmer 1s forwards;
}

@keyframes proShimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.glass-badge {
    background: rgba(1, 4, 10, 0.4);
    backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 10px 20px;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.pro-icon-glow {
    position: relative;
    z-index: 1;
}

.pro-icon-glow::after {
    content: " \;
 position: absolute;
 inset: -10px;
 background: radial-gradient(circle, rgba(236, 86, 40, 0.3) 0%, transparent 70%);
 z-index: -1;
 opacity: 0;
 transition: opacity 0.4s ease;
}

.ultra-pro-card:hover .pro-icon-glow::after {
 opacity: 1;
 animation: glowRotate 4s linear infinite;
}

@keyframes glowRotate {
 0% { transform: scale(1) rotate(0deg); }
 50% { transform: scale(1.2) rotate(180deg); }
 100% { transform: scale(1) rotate(360deg); }
}

/* Final Pro Touches */
.service-header, .showroom-header {
    position: relative;
    z-index: 2;
}

.service-title span, .showroom-title span {
    position: relative;
    display: inline-block;
    animation: proTitleFloat 3s ease-in-out infinite alternate;
}

@keyframes proTitleFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-5px) rotate(1deg); }
}

/* SMILEPLUS App Card Pro Design */
.smileplus-app-card {
    background: #01040a !important;
    overflow: hidden !important;
}

.app-mockup-container {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%) rotate(5deg);
    width: 280px;
    z-index: 3;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.smileplus-app-card:hover .app-mockup-container {
    transform: translateY(-55%) rotate(0deg) scale(1.1);
    right: 8%;
}

.app-mockup-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
}

.smileplus-tag {
    color: #EC5628;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.smileplus-app-card .service-content-box {
    padding-right: 40% !important; /* Make room for the phone */
}

@media (max-width: 991px) {
    .app-mockup-container {
        width: 180px;
        right: 2%;
    }
    .smileplus-app-card .service-content-box {
        padding-right: 30% !important;
    }
}

/* SMILEPLUS Small Card Adjustments */
.min-mockup {
    width: 130px !important;
    right: -10px !important;
    transform: translateY(-50%) rotate(10deg) !important;
}

.smileplus-app-card:hover .min-mockup {
    transform: translateY(-55%) rotate(5deg) scale(1.15) !important;
    right: 5px !important;
}

/* Home Showroom Pro Data Grid */
.branch-address-sm {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    font-weight: 300;
    transition: all 0.4s ease;
}

.home-branch-tel-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s ease 0.1s;
}

.branch-card:hover .home-branch-tel-grid {
    opacity: 1;
    transform: translateY(0);
}

.h-tel-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(5px);
}

.h-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    color: #EC5628;
    font-weight: 800;
    margin-bottom: 2px;
}

.h-value {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
}

.pro-btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: rgba(236, 86, 40, 0.1);
    border: 1px solid #EC5628;
    color: #ffffff !important;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pro-btn-outline:hover {
    background: #EC5628;
    box-shadow: 0 10px 20px rgba(236, 86, 40, 0.3);
}

/* ---------------------------------------------------------
   WORLD-CLASS MINIMALIST DESIGN - CUSTOM BENTO VERSION
--------------------------------------------------------- */
.v2-world-class {
    letter-spacing: -0.02em;
    line-height: 1.2;
    overflow: hidden;
}

.wc-section-header {
    padding: 80px 20px 40px;
    text-align: center;
}

.wc-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    color: #01040a;
    letter-spacing: -2px;
    margin-bottom: 0;
    text-transform: uppercase;
}

.wc-title span { color: #EC5628; }

.wc-subtitle {
    font-size: 0.85rem;
    font-weight: 600;
    color: #EC5628;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
    display: block;
}

.wc-bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    padding: 0 20px;
    max-width: 1600px;
    margin: 0 auto;
}

.wc-card {
    position: relative;
    overflow: hidden;
    background: #01040a;
    border-radius: 20px;
    height: 320px;
    grid-column: span 12; /* Mobile default */
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none !important;
}

@media (min-width: 992px) {
    .wc-card.span-4 { grid-column: span 4; }
    .wc-card.span-6 { grid-column: span 6; }
    .wc-card.span-8 { grid-column: span 8; }
    .wc-card.tall-2 { 
        height: 660px; /* Two rows + gap (320*2 + 20) */
        grid-row: span 2; 
    }
}

.wc-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    filter: brightness(0.85);
}

.wc-card:hover .wc-card-img {
    transform: scale(1.05);
    filter: brightness(1);
}

.wc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(1, 4, 10, 0.8) 0%, transparent 60%);
    z-index: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

@media (min-width: 992px) {
    .wc-overlay { padding: 40px; }
}

.wc-label {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.1;
}

.wc-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

/* SMILEPLUS Specific */
.wc-smileplus-visual {
    position: absolute;
    right: -10%;
    bottom: -5%;
    width: 70%;
    height: auto;
    pointer-events: none;
}
.wc-smileplus-mockup { width: 100%; transform: rotate(-5deg); transition: transform 0.8s ease; }
.wc-card:hover .wc-smileplus-mockup { transform: rotate(0) scale(1.05); }

/* Showroom World-Class Responsive Fixes */
@media (max-width: 991px) {
    #showroom .wc-card { height: 450px !important; }
    #showroom .wc-label { font-size: 2rem !important; }
    #showroom .branch-id { font-size: 3rem !important; top: 20px !important; right: 20px !important; }
}

.wc-card.span-12 { flex: 1 1 100% !important; }

.branch-id-wc {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255,255,255,0.08);
    position: absolute;
    top: 20px;
    right: 30px;
    letter-spacing: -2px;
    transition: all 0.6s ease;
}

.wc-card:hover .branch-id-wc {
    color: rgba(236, 86, 40, 0.15);
    transform: scale(1.1);
}
