/* BYD AUTO Himeji LP Stylesheet */

/* ==========================================
   Variables & Base Setup
   ========================================== */
:root {
    --primary-color: #E60012; /* BYD Signature Red */
    --primary-hover: #C5000F;
    --text-color: #111111;
    --text-light: #666666;
    --text-muted: #999999;
    --bg-white: #ffffff;
    --bg-light: #F5F5F7;
    --bg-dark: #0A0A0B;
    --bg-dark-accent: #161617;
    --border-color: #E5E5E7;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Font families */
    --font-jp: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-en: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

/* Common Utilities */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.align-center {
    text-align: center;
}

.section-subtitle {
    font-family: var(--font-en);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--primary-color);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-color);
}

.section-desc {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 20px auto 0;
}

.font-outfit {
    font-family: var(--font-en);
}

/* ==========================================
   Header Style
   ========================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header.scrolled {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    padding: 14px 24px;
}

.logo-link {
    display: flex;
    align-items: center;
    color: #ffffff; /* Default hero header is white color */
}

.main-header.scrolled .logo-link {
    color: #686D71;
}

.byd-logo-svg {
    height: 24px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-item {
    font-family: var(--font-en);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 6px 0;
}

.main-header.scrolled .nav-item {
    color: var(--text-color);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-item:hover {
    color: #ffffff;
}

.main-header.scrolled .nav-item:hover {
    color: var(--primary-color);
}

.nav-item:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-cta-header {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.btn-cta-header:hover {
    background-color: var(--primary-hover);
    transform: translateY(-1px);
}

/* Hamburger Menu Button */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu span {
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transition: var(--transition-smooth);
}

.main-header.scrolled .hamburger-menu span {
    background-color: var(--text-color);
}

.hamburger-menu.active span {
    background-color: var(--text-color);
}

.hamburger-menu.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: zoomOutHero 10s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    z-index: 1;
}

@keyframes zoomOutHero {
    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    width: 100%;
    padding: 120px 24px 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    justify-content: space-between;
}

.hero-sub {
    font-family: var(--font-en);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    opacity: 0;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.05em;
    margin-top: auto;
    margin-bottom: auto;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.hero-title span {
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.hero-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.dealer-badge {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 4px 12px;
    border-radius: 2px;
}

.hero-dealer-name {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.open-date-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: var(--primary-color);
    padding: 10px 24px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(230,0,18,0.3);
}

.open-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-right: 1px solid rgba(255,255,255,0.3);
    padding-right: 16px;
}

.open-date {
    font-family: var(--font-en);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.open-date span {
    font-style: italic;
    font-weight: 500;
    font-size: 1.1rem;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1.5s ease 1.5s forwards;
}

.scroll-text {
    font-family: var(--font-en);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.6);
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background-color: rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    animation: scrollAnim 2s infinite cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scrollAnim {
    0% {
        transform: translateY(-100%);
    }
    50% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100%);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ==========================================
   Showroom Section
   ========================================== */
.showroom-section {
    background-color: var(--bg-white);
}

.showroom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.showroom-text-block h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.4;
}

.showroom-text-block p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.features-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-weight: 500;
    font-size: 0.95rem;
}

.feature-icon {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.showroom-visual-block .image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.showroom-visual-block img {
    width: 100%;
    transition: var(--transition-smooth);
}

.showroom-visual-block .image-wrapper:hover img {
    transform: scale(1.03);
}

/* ==========================================
   Lineup Section
   ========================================== */
.lineup-section {
    background-color: var(--bg-light);
}

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

.vehicle-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.vehicle-img-holder {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: #f0f0f0;
}

.vehicle-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.vehicle-card:hover .vehicle-img-holder img {
    transform: scale(1.03);
}

.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 2px;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.badge-new {
    background-color: var(--primary-color);
    box-shadow: 0 4px 10px rgba(230,0,18,0.2);
}

.vehicle-info {
    padding: 30px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vehicle-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.tag-powertrain {
    font-family: var(--font-en);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 2px;
    letter-spacing: 0.05em;
}

.tag-ev {
    background-color: #E2F0FD;
    color: #0066CC;
}

.tag-phev {
    background-color: #E2F9EE;
    color: #009955;
}

.vehicle-category {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
}

.vehicle-name {
    font-family: var(--font-en);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}

.vehicle-tagline {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 20px;
    min-height: 42px;
}

.vehicle-price {
    font-size: 0.85rem;
    color: var(--text-color);
    font-weight: 500;
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
    margin-top: auto;
    margin-bottom: 20px;
}

.vehicle-price span {
    font-family: var(--font-en);
    font-size: 1.15rem;
    font-weight: 700;
}

.vehicle-action {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-vehicle-detail, .btn-vehicle-reserve {
    padding: 12px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.btn-vehicle-detail {
    background-color: transparent;
    color: var(--text-color);
    border: 1px solid var(--text-color);
}

.btn-vehicle-detail:hover {
    background-color: var(--text-color);
    color: #ffffff;
}

.btn-vehicle-reserve {
    background-color: var(--primary-color);
    color: #ffffff;
    border: 1px solid var(--primary-color);
}

.btn-vehicle-reserve:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

/* ==========================================
   Access Section
   ========================================== */
.access-section {
    background-color: var(--bg-white);
}

.access-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.dealer-title-group {
    margin-bottom: 30px;
}

.dealer-sub {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 4px;
}

.dealer-name {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.info-table {
    border-top: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.info-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

.info-label {
    font-weight: 600;
    color: var(--text-color);
}

.info-val {
    color: var(--text-light);
}

.info-val a {
    font-weight: 600;
}

.info-val p {
    margin-bottom: 4px;
}

.info-val p:last-child {
    margin-bottom: 0;
}

.btn-primary-cta {
    display: inline-block;
    background-color: var(--text-color);
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.btn-primary-cta:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(230,0,18,0.25);
}

.map-block {
    height: 500px;
}

.map-wrapper {
    height: 100%;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

/* ==========================================
   Disclaimer Section
   ========================================== */
.disclaimer-section {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.disclaimer-section .section-container {
    padding: 40px 24px;
}

.disclaimer-text {
    font-size: 0.72rem;
    color: var(--text-light);
    line-height: 1.7;
}

.disclaimer-text p {
    margin-bottom: 6px;
}

.disclaimer-text p:last-child {
    margin-bottom: 0;
}

/* ==========================================
   Footer Style
   ========================================== */
.main-footer {
    background-color: var(--bg-dark);
    color: #ffffff;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    color: #ffffff;
}

.footer-links {
    display: flex;
    gap: 40px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

/* Sticky Mobile Footer CTA */
.sticky-footer-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    grid-template-columns: 1fr 1.2fr;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.btn-sticky-call, .btn-sticky-reserve {
    text-align: center;
    padding: 18px 10px;
    font-size: 0.85rem;
    font-weight: 700;
}

.btn-sticky-call {
    background-color: #ffffff;
    color: var(--text-color);
}

.btn-sticky-reserve {
    background-color: var(--primary-color);
    color: #ffffff;
}

/* ==========================================
   Responsive Settings
   ========================================== */
@media (max-width: 1024px) {
    .showroom-grid {
        gap: 40px;
    }
    
    .lineup-grid {
        gap: 20px;
    }
    
    .access-grid {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
}

/* ==========================================
   Opening Fair Section
   ========================================== */
.fair-section {
    background-color: var(--bg-dark);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.fair-section .section-title {
    color: #ffffff;
}

.fair-period {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-top: 15px;
    letter-spacing: 0.05em;
    text-align: center;
}

.fair-content-box {
    max-width: 800px;
    margin: 0 auto;
}

.fair-gift-card {
    background-color: var(--bg-dark-accent);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 50px 40px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gift-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: #ffffff;
    font-family: var(--font-en);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    letter-spacing: 0.1em;
}

.gift-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 0.05em;
}

.gift-content-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
}

.gift-image-wrapper {
    flex: 0 0 280px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gift-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gift-image-wrapper:hover img {
    transform: scale(1.04);
}

.gift-details {
    flex: 1;
}

.gift-details h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    border-left: 3px solid var(--primary-color);
    padding-left: 12px;
}

.gift-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 15px;
}

.gift-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.special-business-day {
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 6px;
    display: inline-block;
}

/* Announcement Bar */
.announcement-bar {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 10px 16px;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.announcement-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.announcement-tag {
    background-color: #ffffff;
    color: var(--primary-color);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 2px;
    letter-spacing: 0.05em;
}

.announcement-text {
    letter-spacing: 0.03em;
    margin: 0;
}

.announcement-text strong {
    font-weight: 700;
    border-bottom: 1px solid #ffffff;
}

/* Scrolled Header Announcement collapse */
.main-header.scrolled .announcement-bar {
    height: 0;
    padding: 0;
    overflow: hidden;
    border-bottom: none;
}

/* Hero RACCO Badge */
.hero-racco-debut-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 30px;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: pulseGlow 3s infinite alternate;
}

.racco-tag {
    background-color: var(--primary-color);
    color: #ffffff;
    font-family: var(--font-en);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 2px;
    letter-spacing: 0.1em;
}

.racco-text {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin: 0;
}

.racco-text strong {
    color: #ffffff;
    font-weight: 700;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-color: rgba(255, 255, 255, 0.2);
    }
    100% {
        box-shadow: 0 10px 30px rgba(230, 0, 18, 0.25);
        border-color: rgba(230, 0, 18, 0.4);
    }
}

/* Featured Vehicle Card (RACCO) */
.vehicle-card.featured-card {
    border: 2px solid var(--primary-color);
    box-shadow: 0 15px 35px rgba(230, 0, 18, 0.1);
    transform: scale(1.02);
    position: relative;
    z-index: 2;
}

.vehicle-card.featured-card::before {
    content: 'RECOMMENDED';
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: var(--primary-color);
    color: #ffffff;
    font-family: var(--font-en);
    font-size: 0.6rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 2px;
    z-index: 10;
    letter-spacing: 0.1em;
    box-shadow: 0 4px 10px rgba(230, 0, 18, 0.2);
}

.badge-featured {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 2px;
    letter-spacing: 0.05em;
    color: #ffffff;
    background-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(230, 0, 18, 0.3);
    animation: pulseBadge 1.5s infinite alternate;
}

@keyframes pulseBadge {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.05);
    }
}

/* Special Business Callout Box */
.special-business-box {
    margin-top: 12px;
    background-color: rgba(230, 0, 18, 0.04);
    border: 1px solid rgba(230, 0, 18, 0.15);
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.box-badge {
    background-color: var(--primary-color);
    color: #ffffff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 2px;
    align-self: flex-start;
    letter-spacing: 0.05em;
}

.box-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-color) !important;
    margin: 0 !important;
}

.box-desc strong {
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    /* Base settings */
    body {
        padding-bottom: 58px; /* Offset for sticky mobile footer */
    }
    
    .section-container {
        padding: 60px 20px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    /* Header (Nav Menu becomes fullscreen/drawer) */
    .hamburger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-white);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: var(--transition-smooth);
        z-index: 1000;
        padding: 40px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-item {
        color: var(--text-color);
        font-size: 1.2rem;
        font-weight: 600;
    }
    
    .main-header.scrolled .nav-item {
        color: var(--text-color);
    }
    
    .nav-menu .btn-cta-header {
        width: 100%;
        text-align: center;
        padding: 16px;
        font-size: 1rem;
    }
    
    .logo-link {
        color: #ffffff;
    }
    
    .main-header.scrolled .logo-link {
        color: var(--text-color);
    }
    
    /* Hero */
    .hero-section {
        min-height: 550px;
        height: 80vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-dealer-name {
        font-size: 1.8rem;
    }
    
    .open-date-wrap {
        padding: 8px 16px;
    }
    
    .open-date {
        font-size: 1.1rem;
    }
    
    .open-date span {
        font-size: 0.95rem;
    }
    
    /* Showroom Grid */
    .showroom-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .showroom-text-block h3 {
        font-size: 1.3rem;
    }
    
    .showroom-visual-block {
        order: -1;
    }
    
    /* Lineup Grid */
    .lineup-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Access Grid */
    .access-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-block {
        height: 350px;
    }
    
    /* Footer */
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Sticky Mobile Footer display */
    .sticky-footer-cta {
        display: grid;
    }
    
    /* Fair Section Mobile */
    .fair-gift-card {
        padding: 40px 20px;
    }
    
    .gift-status-dummy {
        padding: 30px 15px;
    }
    
    .coming-soon-text {
        font-size: 1.5rem;
    }
    
    .fair-period {
        font-size: 1.4rem;
    }
    
    /* Announcement Bar Mobile */
    .announcement-bar {
        padding: 8px 10px;
    }
    
    .announcement-text {
        font-size: 0.72rem;
        line-height: 1.3;
    }
    
    .announcement-tag {
        font-size: 0.6rem;
        padding: 1px 6px;
    }

    /* Hero RACCO Badge Mobile */
    .hero-racco-debut-badge {
        padding: 6px 14px;
        border-radius: 20px;
        margin-top: 10px;
    }
    
    .racco-text {
        font-size: 0.75rem;
    }
    
    /* Featured Vehicle Card Mobile */
    .vehicle-card.featured-card {
        transform: scale(1);
        border: 2px solid var(--primary-color);
    }
    
    /* Gift Section Mobile */
    .gift-content-layout {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .gift-image-wrapper {
        flex: 0 0 auto;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .gift-details h4 {
        border-left: none;
        padding-left: 0;
        margin-bottom: 10px;
    }
}
