/* --- Variables & Reset --- */
:root {
    --primary-red: #e63946;
    --deep-black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --text-white: #ffffff;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--deep-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .btn, .nav-cta, .logo {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

/* --- Navbar --- */

/* --- Navigation --- */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.98);
    z-index: 1000;
    border-bottom: 3px solid var(--primary-red);
}

.logo {
    font-size: 1.2rem;
    font-weight: 900;
    white-space: nowrap;
}

.logo span { 
    color: var(--primary-red); 
    text-shadow: 0 0 10px rgba(230, 57, 70, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--primary-red);
}

.nav-cta {
    background-color: var(--primary-red);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 0.75rem;
    border-radius: 2px;
    font-weight: 700;
    transition: var(--transition);
    white-space: nowrap;
}

/* Offset for Smooth Scroll (so navbar doesn't hide titles) */
section { 
    scroll-margin-top: 80px; 
}

/* --- Mobile Navigation Adjustments --- */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hides links on mobile to keep UI clean, common for simple landing pages */
    }
    
    nav {
        padding: 15px 20px;
    }

    .logo {
        font-size: 1rem;
    }

    .nav-cta {
        padding: 8px 12px;
        font-size: 0.7rem;
    }
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.98);
    z-index: 1000;
    border-bottom: 3px solid var(--primary-red);
}

.logo {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.logo span { 
    color: var(--primary-red); 
    text-shadow: 0 0 10px rgba(230, 57, 70, 0.5);
}

.nav-cta {
    background-color: var(--primary-red);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 0.75rem;
    border-radius: 2px;
    font-weight: 700;
    transition: var(--transition);
}

.nav-cta:hover {
    background-color: #fff;
    color: var(--primary-red);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), 
                url('https://images.unsplash.com/photo-1540497077202-7c8a3999166f?auto=format&fit=crop&q=80') center/cover;
    padding: 20px;
}

.hero h1 {
    font-size: clamp(2.5rem, 10vw, 5.5rem);
    line-height: 0.9;
    margin-bottom: 15px;
}

.hero h1 span { color: var(--primary-red); }

.hero p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    max-width: 550px;
    color: #ddd;
}

/* --- Shared Components --- */
.btn {
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 2px;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-red);
    color: white;
}

.btn-primary:hover {
    background-color: #c12e3a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    margin-left: 10px;
}

.btn-outline:hover {
    background: white;
    color: black;
}

section { padding: 80px 5%; max-width: 1200px; margin: 0 auto; }

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.section-title span { color: var(--primary-red); }

.bg-alt { background-color: #0f0f0f; max-width: 100%; }

/* --- Pricing --- */
.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.plan-card {
    background: var(--dark-gray);
    padding: 50px 30px;
    border-radius: 4px;
    text-align: center;
    border-top: 4px solid transparent;
    transition: var(--transition);
}

.plan-card.featured { border-top-color: var(--primary-red); background: #1f1f1f; }

.plan-card:hover { transform: scale(1.02); }

.plan-card h3 { margin-bottom: 20px; letter-spacing: 1px; }

.plan-card .price {
    font-size: 2.8rem;
    color: var(--primary-red);
    font-weight: 900;
    margin-bottom: 25px;
}

.plan-card ul { list-style: none; margin-bottom: 30px; }
.plan-card ul li { padding: 10px 0; border-bottom: 1px solid #333; color: #aaa; }

/* --- Form --- */
.contact-box {
    background: var(--dark-gray);
    padding: 50px;
    border-radius: 4px;
    max-width: 550px;
    margin: 0 auto;
    border: 1px solid #222;
}

.form-group { margin-bottom: 25px; }

label { display: block; margin-bottom: 10px; font-size: 0.9rem; color: #888; }

input {
    width: 100%;
    padding: 16px;
    background: #000;
    border: 1px solid #333;
    color: white;
    font-size: 1rem;
}

input:focus {
    outline: none;
    border-color: var(--primary-red);
}

.full-width { width: 100%; }

footer {
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid #1a1a1a;
    font-size: 0.8rem;
    color: #444;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    nav { padding: 15px 20px; }
    .logo { font-size: 1.1rem; }
    .btn { width: 100%; margin-left: 0; margin-bottom: 15px; text-align: center; }
    .hero { height: auto; padding: 160px 20px 100px; }
    .contact-box { padding: 30px 20px; }
}
/* --- Home Page Redesign --- */

/* Enhanced Hero */
.hero-main {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.9)), 
                url('https://images.pexels.com/photos/1552242/pexels-photo-1552242.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-tag {
    color: var(--primary-red);
    font-weight: 900;
    letter-spacing: 4px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 15px;
}

.hero-btns {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Feature Boxes */
.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-box {
    background: #111;
    padding: 50px 30px;
    border-radius: 4px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid #222;
}

.feature-box:hover {
    border-color: var(--primary-red);
    transform: translateY(-10px);
    background: #161616;
}

.feature-box i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 25px;
}

/* Image Break Section */
.image-break {
    height: 400px;
    background: linear-gradient(rgba(230, 57, 70, 0.2), rgba(0,0,0,0.8)), 
                url('https://images.pexels.com/photos/4164761/pexels-photo-4164761.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-text h2 {
    font-size: clamp(2rem, 6vw, 4rem);
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Testimonials */
.testimonial-slider {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.t-card {
    background: #111;
    padding: 40px;
    border-left: 5px solid var(--primary-red);
}

.t-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ccc;
}

.stars { color: #ffcc00; margin-top: 10px; }

/* Final CTA */
.final-cta {
    text-align: center;
    padding: 120px 20px;
    background: var(--deep-black);
}

.final-cta h2 { font-size: 3rem; margin-bottom: 20px; }
.final-cta p { margin-bottom: 40px; color: #888; }

/* Mobile */
@media (max-width: 768px) {
    .testimonial-slider { grid-template-columns: 1fr; }
    .hero-btns { flex-direction: column; }
    .image-break { height: 250px; }
}


/* ================================================================== */

/* ================================================================== */

/* ================================================================== */

/* ================================================================== */

/* ================================================================== */

/* About page edits */
/* --- About Page Specifics --- */

/* Hero for About Page */
.about-hero {
    height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), 
                url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?auto=format&fit=crop&q=80') center/cover;
    padding: 20px;
}

/* ================================ */
/* --- Expanded About Page Styling --- */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Header */
.about-header {
    height: 70vh;
    background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.4)), 
                url('https://images.unsplash.com/photo-1540497077202-7c8a3999166f?auto=format&fit=crop&q=80') center/cover;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.header-overlay h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    line-height: 1;
    margin-bottom: 10px;
}

.header-overlay p {
    color: var(--primary-red);
    font-weight: 700;
    letter-spacing: 5px;
}

/* Story Section */
.story-section { padding: 100px 0; }

.section-title-left {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.section-title-left span { color: var(--primary-red); }

.story-text .lead {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 500;
}

.story-text p {
    color: #aaa;
    margin-bottom: 20px;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    z-index: 2;
    position: relative;
}

.image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border-top: 5px solid var(--primary-red);
    border-left: 5px solid var(--primary-red);
}

.founder-quote {
    margin-top: 40px;
    padding-left: 20px;
    border-left: 4px solid var(--primary-red);
}

.founder-quote p {
    font-style: italic;
    font-size: 1.2rem;
    color: #fff;
}

.founder-quote span {
    display: block;
    margin-top: 10px;
    font-weight: 700;
    color: var(--primary-red);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: #111;
    padding: 40px 30px;
    border-bottom: 2px solid #222;
    transition: var(--transition);
}

.value-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.value-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(230, 57, 70, 0.1);
    margin-bottom: -20px;
}

.value-card h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.value-card p {
    color: #888;
    font-size: 0.9rem;
}

/* Feature Highlight */
.feature-highlight {
    text-align: center;
    padding: 100px 0;
}

.feature-highlight h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 20px;
}

.feature-highlight p {
    margin-bottom: 40px;
    color: #bbb;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .grid-2 { grid-template-columns: 1fr; }
    .story-image { order: 2; margin-top: 50px; }
    .about-header { text-align: center; justify-content: center; padding: 0 20px; }
    .header-overlay p { letter-spacing: 2px; }
}
/* ================================ */

.about-hero h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 10px;
}

/* Content Layout */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #ccc;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    border-left: 8px solid var(--primary-red);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* Statistics */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    text-align: center;
}

.stat-item h3 {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

/* Mission Section */
.mission-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mission-card {
    background: var(--dark-gray);
    padding: 40px;
    text-align: center;
    border-radius: 4px;
    transition: var(--transition);
}

.mission-card:hover {
    background: #222;
    transform: translateY(-5px);
}

.mission-card .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.mission-card h3 {
    margin-bottom: 15px;
    color: var(--primary-red);
}

/* Navbar Active State */
.nav-links a.active {
    color: var(--primary-red);
    border-bottom: 2px solid var(--primary-red);
}

/* --- Responsive About --- */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1; /* Puts image on top on mobile */
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}



/* ================================================================== */

/* ================================================================== */

/* ================================================================== */

/* ================================================================== */

/* ================================================================== */

/* Plans page edits */
/* --- Plan Page Specifics --- */

/* --- Plans Page Styling --- */

.plans-hero {
    padding: 150px 20px 80px;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&q=80') center/cover;
}

.plans-hero h1 { font-size: clamp(2.5rem, 7vw, 4.5rem); }

/* Tier Cards Layout */
.tiers-section { padding: 80px 5%; }

.tier-card {
    background: #111;
    border: 1px solid #222;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.tier-card.featured {
    border: 2px solid var(--primary-red);
    transform: scale(1.05);
    background: #161616;
    z-index: 5;
}

.featured-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-red);
    color: #fff;
    padding: 5px 20px;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.tier-header h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.tier-header .price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 30px;
}

.tier-header .price span {
    font-size: 1rem;
    color: #666;
    text-transform: lowercase;
}

.tier-features {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.tier-features li {
    padding: 12px 0;
    border-bottom: 1px solid #222;
    color: #ddd;
    font-size: 0.95rem;
}

.tier-features li.disabled {
    color: #444;
    text-decoration: line-through;
}

.btn-outline-red {
    border: 2px solid var(--primary-red);
    color: var(--primary-red);
}

.btn-outline-red:hover {
    background: var(--primary-red);
    color: #fff;
}

/* Activities Grid */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.activity-item {
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
    background-size: cover;
    background-position: center;
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: default;
}

.activity-item:hover {
    border-color: var(--primary-red);
}

.activity-item h3 { font-size: 2rem; margin-bottom: 10px; }
.activity-item h3 span { color: var(--primary-red); }
.activity-item p { font-size: 0.9rem; color: #eee; }

/* Mobile Fixes */
@media (max-width: 992px) {
    .tier-card.featured {
        transform: scale(1);
        margin: 40px 0;
    }
    .plans-container {
        gap: 0;
    }
}
/* --- Expanded Plans Styling --- */

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.small-container { max-width: 800px; }

.plans-header-expanded {
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?auto=format&fit=crop&q=80') center/cover;
}

.plans-header-expanded h1 { font-size: clamp(3rem, 8vw, 5rem); line-height: 1; }

/* Bundles Grid */
.bundles-section { padding: 100px 0; }
.bundles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.bundle-card {
    background: #111;
    padding: 60px 40px;
    border-radius: 4px;
    text-align: center;
    position: relative;
    border: 1px solid #222;
    transition: var(--transition);
}

.bundle-card:hover { border-color: var(--primary-red); transform: translateY(-10px); }

.featured-bundle {
    border: 2px solid var(--primary-red);
    background: #161616;
}

.bundle-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 0.65rem;
    font-weight: 900;
    color: var(--primary-red);
    letter-spacing: 2px;
}

.bundle-card h3 { font-size: 1.8rem; margin-bottom: 10px; }
.bundle-price { font-size: 3.5rem; font-weight: 900; color: #fff; line-height: 1; }
.bundle-price span { font-size: 1.2rem; color: var(--primary-red); }
.savings { color: #00ff88; font-weight: 700; font-size: 0.9rem; margin-bottom: 30px; }

.bundle-list { list-style: none; margin-bottom: 40px; text-align: left; }
.bundle-list li { padding: 12px 0; border-bottom: 1px solid #222; color: #aaa; font-size: 0.95rem; }
.bundle-list li strong { color: #fff; }

/* Experience Rows */
.exp-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.exp-row.reverse { direction: rtl; }
.exp-row.reverse .exp-text { direction: ltr; }

.exp-image img {
    width: 100%;
    border-radius: 4px;
    filter: grayscale(40%);
    transition: 0.5s;
}

.exp-image img:hover { filter: grayscale(0%); }

.exp-text h3 { font-size: 2.2rem; margin-bottom: 20px; color: var(--primary-red); }
.exp-text p { color: #ccc; font-size: 1.1rem; }

/* FAQ Section */
.faq-section { padding: 100px 0; border-top: 1px solid #1a1a1a; }
.faq-item { margin-bottom: 40px; }
.faq-item h4 { font-size: 1.2rem; margin-bottom: 10px; color: #fff; }
.faq-item p { color: #888; }

/* Mobile */
@media (max-width: 992px) {
    .exp-row { grid-template-columns: 1fr; gap: 30px; }
    .exp-row.reverse { direction: ltr; }
    .bundles-grid { gap: 20px; }
}



/* ================================================================== */

/* ================================================================== */

/* ================================================================== */

/* ================================================================== */

/* ================================================================== */

/* Contact page edits */
/* --- Contact Page Specifics --- */

/* --- Contact Page Styling --- */

/* --- Contact Page Specifics --- */

.contact-hero {
    padding: 180px 0 80px;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('https://images.pexels.com/photos/1552242/pexels-photo-1552242.jpeg');
    background-size: cover;
}

.contact-main { padding: 80px 0; }

.contact-desc { color: #888; margin-bottom: 40px; }

/* Info Items */
.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
    width: 40px;
}

.info-item h4 { font-size: 0.9rem; color: #fff; margin-bottom: 5px; }
.info-item p { color: #aaa; font-size: 0.9rem; }

/* Hours Card */
.hours-card {
    background: #111;
    padding: 30px;
    border-radius: 4px;
    margin-top: 50px;
    border: 1px solid #222;
}

.hours-card h4 { margin-bottom: 20px; color: var(--primary-red); font-size: 1rem; }
.hours-card ul { list-style: none; }
.hours-card ul li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #222;
    font-size: 0.85rem;
    color: #ccc;
}

/* Form Styling Improvements */
.contact-form-wrapper {
    background: #111;
    padding: 40px;
    border-radius: 4px;
    border: 1px solid #222;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

select, textarea {
    width: 100%;
    padding: 16px;
    background: #000;
    border: 1px solid #333;
    color: white;
    font-family: inherit;
}

select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-red);
}

/* Map Section */
.map-section { padding: 0; }
.map-placeholder {
    height: 400px;
    background: #1a1a1a;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #444;
}

.map-placeholder i { font-size: 4rem; margin-bottom: 20px; }

/* Mobile */
@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 30px 20px; }
}


/* The sucess state in contat */
/* --- JS Feedback Styling --- */

/* Error Message */
.error-msg {
    color: var(--primary-red);
    font-size: 0.75rem;
    display: none; /* Hidden by default */
    margin-top: 8px;
    font-weight: 500;
}

/* Red Border for Invalid Input */
input.invalid {
    border-color: var(--primary-red) !important;
    background-color: rgba(230, 57, 70, 0.05);
}

/* Success Box */
.success-box {
    display: none; /* Hidden until JS triggers it */
    text-align: center;
    padding: 40px 20px;
}

.success-box i {
    font-size: 4rem;
    color: #00ff88;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.3));
}

.success-box h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.success-box p {
    color: #888;
    max-width: 300px;
    margin: 0 auto;
}

/* Small UI tweak for the select box */
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}