/* ===== Variables ===== */
:root {
    --primary: #c1121f;
    --primary-dark: #9b0d17;
    --secondary: #1a1a1a;
    --dark: #111111;
    --light: #f5f5f5;
    --white: #ffffff;
    --gray-100: #f8f8f8;
    --gray-200: #eeeeee;
    --gray-300: #dddddd;
    --gray-500: #888888;
    --gray-700: #555555;
    --green: #2a9d8f;
    --gold: #ffd700;
    --silver: #c0c0c0;
    --bronze: #cd7f32;
    --radius: 8px;
    --radius-lg: 16px;
    --shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--secondary);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== PHONE BAR ===== */
.phone-bar {
    background-color: black;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: 44px;
}

.phone-bar .container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.phone-desktop {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.phone-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.phone-item .location {
    color: var(--primary);
    font-weight: 700;
    font-size: 16px;
}

.phone-item .phone-number {
    color: var(--primary);
    font-size: 16px;
    transition: var(--transition);
}

.phone-item .phone-number:hover {
    color: #ff6666;
}

/* Mobile Call Us Button */
.phone-mobile {
    display: none;
    position: relative;
}

.call-us-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.call-us-btn:hover {
    background: var(--primary-dark);
}

.call-us-btn i {
    font-size: 14px;
}

.call-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    margin-top: 10px;
    overflow: hidden;
    min-width: 200px;
    z-index: 1002;
}

.call-options.active {
    display: block;
}

.call-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    color: var(--secondary);
    transition: var(--transition);
    border-bottom: 1px solid var(--gray-200);
}

.call-option:last-child {
    border-bottom: none;
}

.call-option:hover {
    background: var(--gray-100);
}

.call-option .location {
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    min-width: fit-content;
    white-space: nowrap;
}

.call-option span:last-child {
    font-weight: 600;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    top: 44px;
    background: var(--white);
    padding: 12px 0;
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.navbar.scrolled .logo {
    color: var(--secondary);
}

.nav-menu {
    display: flex;
    gap: 24px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    opacity: 0.9;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    opacity: 1;
    color: var(--primary);
}

.navbar.scrolled .nav-link {
    color: var(--secondary);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Language Toggle */
.lang-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    padding: 4px;
}

.navbar.scrolled .lang-toggle {
    background: var(--gray-100);
}

.lang-btn {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border: none;
    background: transparent;
    color: var(--white);
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
}

.navbar.scrolled .lang-btn {
    color: var(--gray-500);
}

.lang-btn.active {
    background: var(--primary);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.navbar.scrolled .hamburger span {
    background: var(--secondary);
}

/* ===== NEWS HERO SECTION ===== */
.news-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.news-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.news-slide.active {
    opacity: 1;
    visibility: visible;
}

.news-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 6s ease;
}

.news-slide.active .news-slide-bg {
    transform: scale(1.05);
}

.news-slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
}

.news-slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
}

.news-slide-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    color: var(--white);
    max-width: 700px;
    margin-left: 10%;
}

.news-label {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.news-date {
    display: block;
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 20px;
    font-weight: 500;
}

.news-slide-inner h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.news-slide-inner p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 550px;
}

/* News Hero Controls */
.news-hero-controls {
    position: absolute;
    bottom: 120px;
    left: 10%;
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.news-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.4);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.news-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.news-dots {
    display: flex;
    gap: 12px;
}

.news-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.news-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* News Hero Link */
.news-hero-link {
    position: absolute;
    bottom: 120px;
    right: 10%;
    z-index: 10;
}

.news-hero-link a {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    opacity: 0.8;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-hero-link a:hover {
    opacity: 1;
    color: var(--primary);
}

/* Scroll Down Indicator */
.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: var(--white);
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-down span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.scroll-down i {
    font-size: 18px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

/* ===== Disclaimer Banner ===== */
.disclaimer-banner {
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 0;
}

.disclaimer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    text-align: center;
}

.disclaimer-content i {
    color: var(--primary);
    font-size: 24px;
}

.disclaimer-content p {
    font-size: 14px;
    color: var(--gray-700);
}

.disclaimer-content a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-header.light .section-label {
    color: rgba(255,255,255,0.7);
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: -0.5px;
}

.section-header.light h2 {
    color: var(--white);
}

.section-header p {
    color: var(--gray-500);
    margin-top: 12px;
}

/* ===== Tracks ===== */
.tracks {
    padding: 100px 0;
    background: var(--gray-100);
}

.tracks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.track-card {
    display: block;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.track-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.track-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.track-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.track-card:hover .track-image img {
    transform: scale(1.05);
}

.track-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
}

.track-badge.green {
    background: var(--green);
}

.track-info {
    padding: 24px;
}

.track-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.track-info p {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 16px;
}

.track-link {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

/* ===== About ===== */
.about {
    padding: 100px 0;
}

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

.about-text p {
    color: var(--gray-700);
    margin-bottom: 32px;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--gray-100);
    border-radius: var(--radius);
}

.feature i {
    color: var(--primary);
    font-size: 18px;
}

.feature span {
    font-size: 14px;
    font-weight: 500;
}

.about-image img {
    border-radius: var(--radius-lg);
}

/* ===== Karts ===== */
.karts {
    padding: 100px 0;
    background: var(--secondary);
}

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

.kart-image img {
    border-radius: var(--radius-lg);
}

.kart-info {
    color: var(--white);
}

.kart-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.kart-info > p {
    opacity: 0.8;
    margin-bottom: 32px;
    line-height: 1.8;
}

.kart-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.kart-specs .spec {
    background: rgba(255,255,255,0.1);
    padding: 16px;
    border-radius: var(--radius);
}

.kart-specs .spec strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
}

.kart-specs .spec span {
    font-size: 12px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.equipment-included {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(193, 18, 31, 0.2);
    padding: 16px;
    border-radius: var(--radius);
}

.equipment-included i {
    color: var(--primary);
    font-size: 18px;
}

.equipment-included span {
    font-size: 14px;
}

/* ===== Opening Hours ===== */
.hours {
    padding: 100px 0;
    background: var(--gray-100);
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.hours-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
}

.hours-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-200);
}

.hours-card-header h3 {
    font-size: 24px;
    font-weight: 700;
}

.hours-status {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.hours-status.open {
    background: rgba(42, 157, 143, 0.1);
    color: var(--green);
}

.hours-status.closed {
    background: rgba(193, 18, 31, 0.1);
    color: var(--primary);
}

.hours-table {
    margin-bottom: 24px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span:first-child {
    color: var(--gray-700);
}

.hours-row span:last-child {
    font-weight: 600;
    color: var(--secondary);
}

.hours-contact {
    margin-bottom: 24px;
    padding: 16px;
    background: var(--gray-100);
    border-radius: var(--radius);
}

.hours-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-700);
    font-size: 14px;
    margin-bottom: 8px;
}

.hours-contact p:last-child {
    margin-bottom: 0;
}

.hours-contact i {
    color: var(--primary);
    width: 18px;
}

.hours-note {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hours-note i {
    color: var(--primary);
    font-size: 20px;
}

.hours-note p {
    color: var(--gray-700);
    font-size: 14px;
}

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    cursor: pointer;
}

.faq-question span {
    font-size: 16px;
    font-weight: 600;
}

.faq-question i {
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: var(--gray-700);
    line-height: 1.8;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 48px 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    display: inline-block;
    margin-bottom: 24px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 14px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
}

.footer-phones {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-phones span {
    font-size: 14px;
    opacity: 0.7;
}

.footer-content > p {
    font-size: 14px;
    opacity: 0.5;
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
}

/* ===== Page Header ===== */
.page-header {
    background: var(--secondary);
    padding: 140px 0 60px;
    color: var(--white);
}

.page-header .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 24px;
    transition: var(--transition);
}

.page-header .back-link:hover {
    opacity: 1;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
}

.page-header > .container > p {
    font-size: 18px;
    opacity: 0.8;
}

/* ===== NEWS PAGE ===== */
.news-page-content {
    padding: 80px 0;
}

.news-article {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--gray-200);
    scroll-margin-top: 100px;
}

.news-article:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.news-article-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.news-article-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.news-article-content {
    padding: 16px 0;
}

.news-article-date {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.news-article-content h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

.news-article-content p {
    color: var(--gray-700);
    line-height: 1.8;
}

/* ===== Track Page Styles ===== */
.track-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
}

.track-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.track-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
}

.track-hero-content {
    position: relative;
    z-index: 2;
    padding: 48px;
    color: var(--white);
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.track-hero-content .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 16px;
    transition: var(--transition);
}

.track-hero-content .back-link:hover {
    opacity: 1;
}

.track-hero-content .track-badge {
    position: static;
    display: inline-block;
    margin-bottom: 12px;
}

.track-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 8px;
}

.track-hero-content > p {
    font-size: 18px;
    opacity: 0.8;
}

/* Track Details */
.track-details {
    padding: 80px 0;
}

.detail-section {
    margin-bottom: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--gray-200);
}

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

.detail-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
}

.detail-section > p {
    color: var(--gray-700);
    line-height: 1.8;
    max-width: 800px;
}

/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.spec-card {
    background: var(--gray-100);
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
}

.spec-card i {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 12px;
}

.spec-card strong {
    display: block;
    font-size: 20px;
    margin-bottom: 4px;
}

.spec-card span {
    font-size: 12px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Facilities Grid */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.facility {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--gray-100);
    border-radius: var(--radius);
}

.facility i {
    color: var(--green);
}

/* Pricing */
.pricing-section h2 {
    margin-bottom: 32px;
}

.price-category {
    margin-bottom: 48px;
}

.price-category h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.price-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.price-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.price-card .price-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.price-card .price-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.price-card .price-desc {
    font-size: 12px;
    color: var(--gray-500);
}

.price-table {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid var(--gray-200);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row:nth-child(even) {
    background: var(--gray-100);
}

.price-row .price-name {
    font-size: 14px;
    color: var(--gray-700);
}

.price-row .price-amount {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
}

/* Location Grid */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 32px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--gray-700);
}

.contact-info i {
    color: var(--primary);
    width: 20px;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
}

.map-placeholder {
    background: var(--gray-100);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius);
}

/* Records Page */
.records-section {
    padding: 80px 0;
}

.records-block {
    margin-bottom: 60px;
}

.records-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--secondary);
}

.records-header h2 {
    font-size: 28px;
    font-weight: 700;
}

.track-length {
    background: var(--gray-100);
    padding: 8px 16px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

.records-table {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.records-table-header {
    display: grid;
    grid-template-columns: 100px 1fr 150px 150px;
    padding: 16px 24px;
    background: var(--secondary);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.record-row {
    display: grid;
    grid-template-columns: 100px 1fr 150px 150px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--gray-200);
    align-items: center;
}

.record-row:last-child {
    border-bottom: none;
}

.record-row .position {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.record-row.gold .position i {
    color: var(--gold);
}

.record-row.silver .position i {
    color: var(--silver);
}

.record-row.bronze .position i {
    color: var(--bronze);
}

.record-row .name {
    font-weight: 500;
}

.record-row .time {
    font-weight: 700;
    color: var(--primary);
    font-size: 18px;
}

.record-row .date {
    color: var(--gray-500);
    font-size: 14px;
}

.record-row.gold {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1), transparent);
}

.record-row.silver {
    background: linear-gradient(90deg, rgba(192, 192, 192, 0.1), transparent);
}

.record-row.bronze {
    background: linear-gradient(90deg, rgba(205, 127, 50, 0.1), transparent);
}

.records-note {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--gray-100);
    padding: 24px;
    border-radius: var(--radius);
    margin-top: 40px;
}

.records-note i {
    color: var(--primary);
    font-size: 24px;
}

.records-note p {
    color: var(--gray-700);
}

/* Rules Page */
.rules-section {
    padding: 80px 0;
}

.rules-notice {
    display: flex;
    gap: 20px;
    background: #fff3cd;
    border: 1px solid #ffc107;
    padding: 24px;
    border-radius: var(--radius-lg);
    margin-bottom: 48px;
}

.rules-notice i {
    color: #856404;
    font-size: 28px;
    flex-shrink: 0;
}

.rules-notice h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #856404;
}

.rules-notice p {
    color: #856404;
    line-height: 1.7;
}

.rules-block {
    margin-bottom: 48px;
}

.rules-block h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

.rules-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}

.rules-list li:last-child {
    border-bottom: none;
}

.rules-list li i {
    color: var(--green);
    margin-top: 4px;
}

.rules-list li span {
    color: var(--gray-700);
    line-height: 1.7;
}

.flags-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.flag-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--gray-100);
    padding: 20px;
    border-radius: var(--radius);
}

.flag-color {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    flex-shrink: 0;
}

.flag-color.green {
    background: #28a745;
}

.flag-color.yellow {
    background: #ffc107;
}

.flag-color.red {
    background: #dc3545;
}

.flag-color.checkered {
    background: repeating-conic-gradient(#000 0% 25%, #fff 0% 50%) 50% / 16px 16px;
}

.flag-info strong {
    display: block;
    margin-bottom: 4px;
}

.flag-info p {
    font-size: 14px;
    color: var(--gray-500);
}

.prohibited-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.prohibited-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    padding: 20px;
    border-radius: var(--radius);
}

.prohibited-item i {
    color: #721c24;
    font-size: 20px;
}

.prohibited-item span {
    color: #721c24;
}

.liability-text {
    background: var(--gray-100);
    padding: 32px;
    border-radius: var(--radius-lg);
}

.liability-text p {
    color: var(--gray-700);
    line-height: 1.8;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 32px;
        gap: 20px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-link {
        color: var(--secondary);
        font-size: 15px;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .news-slide-inner {
        margin-left: 5%;
        max-width: 90%;
    }

    .news-slide-inner h1 {
        font-size: 36px;
    }

    .news-hero-controls {
        left: 5%;
    }

    .news-hero-link {
        display: none;
    }

    .about-content,
    .kart-content,
    .tracks-grid,
    .hours-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .specs-grid,
    .price-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .news-article {
        grid-template-columns: 1fr;
    }

    .news-article-image img {
        height: 250px;
    }

    .flags-grid,
    .prohibited-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .phone-desktop {
        display: none;
    }

    .phone-mobile {
        display: block;
    }
    
    .phone-bar {
        height: 56px;
        padding: 12px 0;
    }   

    .navbar {
        top: 56px;
    }

    .navbar.scrolled {
        top: 56px;
    }

    .news-slide-inner h1 {
        font-size: 28px;
    }

    .news-slide-inner p {
        font-size: 16px;
    }

    .news-hero-controls {
        bottom: 80px;
    }

    .scroll-down {
        bottom: 20px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 120px 0 48px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .track-hero-content h1 {
        font-size: 36px;
    }

    .track-hero-content {
        padding: 32px 24px;
    }

    .facilities-grid {
        grid-template-columns: 1fr;
    }

    .records-table-header,
    .record-row {
        grid-template-columns: 60px 1fr 100px;
    }

    .records-table-header span:last-child,
    .record-row .date {
        display: none;
    }

    .disclaimer-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .phone-bar {
        height: 52px;
        padding: 10px 0;
    }

    .navbar {
        top: 52px;
    }

    .navbar.scrolled {
        top: 52px;
    }

    .call-us-btn {
        padding: 10px 24px;
        font-size: 14px;
    }

    .news-slide-inner h1 {
        font-size: 24px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .specs-grid,
    .price-grid,
    .kart-specs {
        grid-template-columns: 1fr;
    }

    .news-hero-controls {
        gap: 12px;
        left: 50%;
        transform: translateX(-50%);
    }

    .news-arrow {
        width: 40px;
        height: 40px;
    }
}