/* --- Root Variables & Reset --- */
:root {
    --bg-dark: #121413;
    --bg-card: #1c1f1d;
    --primary: #52796f; /* Tactical Sage Green */
    --accent: #d92323;  /* High-Visibility Racing Red to match logo */
    --text-light: #f4f4f9;
    --text-muted: #a3b19b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
}

h1, h2, h3 {
    font-family: 'Bangers', cursive;
    letter-spacing: 1px;
}

h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
    text-transform: uppercase;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent);
    margin: 10px auto 0 auto;
}

/* --- Mobile Quick Call Button --- */
.mobile-call-tap {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 2000;
    background-color: rgba(217, 35, 35, 0.9); /* Translucent Matching Red */
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 10px 16px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.mobile-call-tap:active {
    transform: scale(0.95);
    background-color: var(--accent);
}

.phone-icon {
    font-size: 1.1rem;
}

/* --- Hero Section & Parallax Background --- */
.hero-section {
    height: 100vh;
    background: url('background.webp') no-repeat center center; /* OPTIMIZED: points to background.webp */
    background-size: cover;
    background-attachment: fixed; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg, 
        rgba(18, 20, 19, 0.85) 0%, 
        rgba(18, 20, 19, 0.70) 50%, 
        rgba(18, 20, 19, 0.85) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5; 
    max-width: 800px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

.logo-container {
    margin-bottom: 20px;
}

.hero-logo {
    width: 180px;
    height: 180px;
    max-width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary);
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    line-height: 1;
}

.hero-content .highlight {
    color: var(--accent);
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-muted);
}

/* --- Buttons Layout & Styling --- */
.hero-buttons {
    display: block;
    text-align: center;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--text-light);
    padding: 12px 36px;
    font-size: 1.4rem;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    border-bottom: 4px solid #354f49;
    transition: all 0.2s ease;
    margin: 10px 0;
}

.btn:hover {
    background-color: var(--accent);
    border-bottom: 4px solid #941313;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--text-light);
    border-bottom: 4px solid #b5b5ba;
    color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
    border-color: var(--text-light);
    border-bottom: 4px solid #b5b5ba;
    transform: translateY(-2px);
}

/* --- About Section --- */
.about-section {
    background-color: var(--bg-card);
}

.about-grid {
    display: flex;
    justify-content: center;
    text-align: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--text-light);
}

.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-item {
    background: var(--bg-dark);
    padding: 20px 40px;
    border-left: 4px solid var(--primary);
    font-size: 1.2rem;
    text-transform: uppercase;
}

.feature-item strong {
    color: var(--accent);
    display: block;
    font-size: 1.8rem;
    font-family: 'Bangers', sans-serif;
}

/* --- Events Section --- */
.events-section {
    background-color: var(--bg-dark);
    text-align: center;
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.events-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.event-card {
    background-color: var(--bg-card);
    border: 2px solid #2d3330;
    border-radius: 6px;
    padding: 30px 20px;
    width: 230px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.event-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.event-card h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--text-light);
}

/* --- Pricing Section --- */
.pricing-section {
    background-color: var(--bg-card);
    text-align: center;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.price-box {
    background-color: var(--bg-dark);
    border: 3px solid var(--primary);
    border-radius: 8px;
    padding: 40px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.price-box h3 {
    font-size: 1.8rem;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 20px;
    border-left: 4px solid var(--accent);
    padding-left: 10px;
    line-height: 1.2;
}

.price-list {
    list-style: none;
    margin-bottom: 20px;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
    padding: 10px 0;
    border-bottom: 1px dashed #2d3330;
}

.price-list li:last-child {
    border-bottom: none;
}

.item-name {
    font-weight: 600;
    color: var(--text-light);
}

.item-cost {
    font-family: 'Bangers', cursive;
    font-size: 1.8rem;
    color: var(--accent);
    letter-spacing: 1px;
}

.price-box hr {
    border: 0;
    height: 1px;
    background: #2d3330;
    margin: 25px 0;
}

.discount-box {
    border-color: var(--accent);
}

.discount-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.discount-icon {
    font-size: 2rem;
    line-height: 1;
    margin-top: 3px;
}

.discount-text-wrapper h4 {
    font-size: 1.3rem;
    text-transform: uppercase;
    color: var(--text-light);
}

.discount-text-wrapper p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.price-note {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    text-align: center;
}

.btn-pricing {
    width: 100%;
    margin: auto 0 0 0;
}

/* --- Location Section --- */
.location-section {
    background-color: var(--bg-dark);
}

.address-text {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.map-container {
    border: 4px solid var(--primary);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

/* --- Contact Section & Socials --- */
.contact-section {
    background-color: var(--bg-card);
    text-align: center;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.contact-card {
    background: var(--bg-dark);
    border: 2px solid #2d3330;
    border-radius: 8px;
    padding: 40px;
    width: 320px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.contact-card.highlight-card {
    border: 2px solid var(--accent);
    box-shadow: 0 0 15px rgba(217, 35, 35, 0.2);
}

.contact-card.highlight-card:hover {
    background-color: rgba(217, 35, 35, 0.05);
}

.contact-card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: var(--text-light);
}

.contact-card.highlight-card h3 {
    color: var(--accent);
}

.contact-card p {
    font-size: 1.4rem;
    font-weight: bold;
}

.social-container {
    background-color: var(--bg-dark);
    border-radius: 6px;
    padding: 30px;
    max-width: 670px;
    margin: 0 auto;
    border: 1px solid #2d3330;
}

.social-container h3 {
    font-size: 1.8rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    background-color: #242424;
    color: var(--text-light);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    border: 1px solid #3a3a3a;
    transition: all 0.2s ease;
}

.social-btn:hover {
    background-color: #3b5998; 
    border-color: #3b5998;
    color: #fff;
}

/* CSS Scroll Animation Engine Base Setup */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Footer --- */
footer {
    background-color: var(--bg-dark);
    border-top: 1px solid #2d3330;
    text-align: center;
    padding: 30px 0;
    color: var(--text-muted);
    font-size: 1rem;
}

.domain-text {
    font-weight: 700;
    color: var(--primary);
    margin-top: 5px;
    letter-spacing: 1px;
}

/* --- Responsive Media Queries --- */
@media (min-width: 580px) {
    .mobile-call-tap {
        display: none;
    }
    .hero-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
    }
    .btn {
        margin: 0;
    }
}

/* Disable fixed parallax on iOS/Mobile platforms to prevent scrolling glitches */
@media (max-width: 1024px) {
    .hero-section {
        background-attachment: scroll;
    }
}

@media (max-width: 579px) {
    .phone-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 3.5rem; }
    .hero-content p { font-size: 1.4rem; }
    .hero-logo { 
        width: 130px; 
        height: 130px; 
    }
    h2 { font-size: 2.3rem; }
}