/* --- 1. Global Styles & Variables --- */
:root {
    --primary-red: #E60000;
    --accent-yellow: #FFD700;
    --dark-bg: #1A1A1A;
    --body-text: #333333;
    --light-grey-bg: #F8F8F8;
    --white: #FFFFFF;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Roboto', sans-serif;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--body-text);
    line-height: 1.7;
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}
.loader {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 215, 0, 0.2);
    border-top-color: var(--accent-yellow);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- 2. Reusable Components --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 100px 0; overflow: hidden; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { text-align: center; font-family: var(--font-heading); font-size: 3.5rem; letter-spacing: 3px; color: var(--dark-bg); margin-bottom: 10px; }
.section-header p { font-size: 1.1rem; max-width: 70ch; margin: 0 auto; color: #555; }
.btn {
    display: inline-block;
    padding: 16px 38px;
    font-family: var(--font-body);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.btn:hover::before {
    width: 300px;
    height: 300px;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent-yellow) 0%, #ffed4e 100%);
    color: var(--dark-bg);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}
.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}
.btn-primary:active {
    transform: translateY(-2px) scale(1);
}
.btn-secondary {
    background: linear-gradient(135deg, var(--primary-red) 0%, #ff1a1a 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(230, 0, 0, 0.3);
}
.btn-secondary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 35px rgba(230, 0, 0, 0.4);
}
.btn-secondary:active {
    transform: translateY(-2px) scale(1);
}

/* --- 3. Header & Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 22px 0;
    z-index: 1000;
    transition: all 0.4s var(--transition-smooth);
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
}
.header.scrolled {
    background-color: rgba(26, 26, 26, 0.85);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    padding: 16px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 55px;
    transition: all 0.4s var(--transition-smooth);
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
.header.scrolled .logo img {
    height: 42px;
}
.nav-links {
    list-style: none;
    display: flex;
}
.nav-links li {
    margin-left: 40px;
}
.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    position: relative;
    padding-bottom: 6px;
    letter-spacing: 1.2px;
    transition: color 0.3s ease;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-yellow), var(--primary-red));
    transition: width 0.4s var(--transition-smooth);
}
.nav-links a:hover {
    color: var(--accent-yellow);
}
.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 10px;
}
.hamburger .bar {
    display: block;
    width: 28px;
    height: 3px;
    margin: 6px auto;
    background-color: var(--white);
    transition: all 0.3s ease-in-out;
    border-radius: 2px;
}
.hamburger.is-active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.hamburger.is-active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger.is-active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(40, 40, 40, 0.98));
    backdrop-filter: blur(20px);
    z-index: 1050;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}
.mobile-nav.is-open {
    right: 0;
}
.mobile-nav .nav-links {
    flex-direction: column;
    text-align: center;
}
.mobile-nav .nav-links li {
    margin: 25px 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
}
.mobile-nav.is-open .nav-links li {
    opacity: 1;
    transform: translateX(0);
}
.mobile-nav.is-open .nav-links li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.is-open .nav-links li:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav.is-open .nav-links li:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav.is-open .nav-links li:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav.is-open .nav-links li:nth-child(5) { transition-delay: 0.5s; }
.mobile-nav .nav-links a {
    font-size: 1.6rem;
    letter-spacing: 2px;
}

/* --- 4. Hero Section --- */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 115%;
    background: url('images/Header_Global.jpg') no-repeat center center/cover;
    z-index: 0;
    animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
    z-index: 1;
}
.hero-content {
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 1.2s ease forwards 0.3s;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 9vw, 7.5rem);
    letter-spacing: 6px;
    margin-bottom: 15px;
    text-shadow: 0 6px 20px rgba(0,0,0,0.6);
    background: linear-gradient(90deg, #fff 0%, #ffd700 50%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
.hero-content p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 3px 12px rgba(0,0,0,0.6);
    font-weight: 300;
    line-height: 1.6;
}
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s ease forwards 1.5s;
}
@keyframes fadeIn {
    to { opacity: 1; }
}
.scroll-indicator .mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    position: relative;
    margin: 0 auto 8px;
}
.scroll-indicator .mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--accent-yellow);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}
@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}
.scroll-indicator p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* --- 5. Rides Section --- */
.rides-section {
    background: linear-gradient(180deg, var(--light-grey-bg) 0%, #fff 100%);
    position: relative;
}
.rides-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 45px;
}
.ride-card {
    background-color: var(--white);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    text-align: center;
    overflow: hidden;
    transition: all 0.5s var(--transition-smooth);
    border-radius: 12px;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}
.ride-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-yellow), var(--primary-red));
    transform: scaleX(0);
    transition: transform 0.5s var(--transition-smooth);
}
.ride-card:hover::before {
    transform: scaleX(1);
}
.ride-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.ride-card-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}
.ride-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
    transition: opacity 0.5s ease;
}
.ride-card:hover .ride-card-image::after {
    opacity: 0;
}
.ride-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--transition-smooth);
}
.ride-card:hover .ride-card-image img {
    transform: scale(1.1) rotate(1deg);
}
.ride-card-content {
    padding: 35px;
    position: relative;
}
.ride-card-content h3 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--dark-bg);
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.ride-card-content p {
    margin-bottom: 25px;
    min-height: 60px;
    color: #666;
    line-height: 1.8;
}
.ride-card .btn-secondary {
    margin-top: 10px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s var(--transition-bounce);
}
.ride-card:hover .btn-secondary {
    opacity: 1;
    transform: translateY(0);
}

/* --- 6. Story Section --- */
.story-section { background-color: var(--white); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; }
.story-text, .story-image { text-align: center; }
.story-text h2 { font-family: var(--font-heading); font-size: 2.8rem; letter-spacing: 2px; color: var(--dark-bg); margin-bottom: 20px; }
.story-text p { margin-bottom: 15px; max-width: 65ch; margin-left: auto; margin-right: auto; color: #555; }
.story-image img { width: 100%; height: auto; object-fit: cover; border-radius: 8px; }

/* --- 7. Impact Section --- */
.impact-section { background-color: var(--dark-bg); color: var(--white); text-align: center; position: relative; }
.impact-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.1; z-index: 1; }
.impact-content { position: relative; z-index: 2; }
.impact-figure { font-family: var(--font-heading); font-size: clamp(5rem, 15vw, 9rem); color: var(--primary-red); line-height: 1; letter-spacing: 4px; margin-bottom: 20px; }
.impact-section .section-header h2 { color: var(--white); }
.impact-section .section-header p { color: #ccc; }
.charity-logos { display: flex; justify-content: center; align-items: center; gap: 40px; margin-top: 40px; flex-wrap: wrap; }
.charity-logos img { height: 50px; filter: grayscale(100%) brightness(1.5); transition: all 0.4s ease; }
.charity-logos img:hover { filter: grayscale(0%) brightness(1); transform: scale(1.1); }

/* --- 8. News Section --- */
.news-section {
    background: linear-gradient(180deg, #fff 0%, var(--light-grey-bg) 100%);
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
}
.news-card {
    background: var(--white);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.5s var(--transition-smooth);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}
.news-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.news-card-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}
.news-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 0, 0, 0.3), rgba(255, 215, 0, 0.3));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}
.news-card:hover .news-card-image::before {
    opacity: 1;
}
.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--transition-smooth);
}
.news-card:hover .news-card-image img {
    transform: scale(1.15);
}
.news-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}
.news-card-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-red);
    background: rgba(230, 0, 0, 0.1);
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    display: inline-block;
    align-self: flex-start;
}
.news-card-content h3 {
    font-size: 1.9rem;
    line-height: 1.3;
    flex-grow: 1;
    text-align: left;
    margin-bottom: 20px;
    color: var(--dark-bg);
}
.read-more-link {
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: 700;
    align-self: flex-start;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s ease;
}
.read-more-link:hover {
    color: var(--primary-red);
}
.read-more-link i {
    margin-left: 8px;
    transition: transform 0.3s var(--transition-bounce);
}
.news-card:hover .read-more-link i {
    transform: translateX(8px);
}

/* --- 9. Contact Section --- */
.contact-section {
    background: linear-gradient(180deg, var(--light-grey-bg) 0%, #fff 100%);
}
.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.form-group {
    width: 100%;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: var(--white);
    transition: all 0.3s var(--transition-smooth);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 150px;
}
.contact-form .btn {
    align-self: flex-start;
    min-width: 200px;
}

/* --- 10. Footer & Utility --- */
.footer { background-color: #111; color: #a0a0a0; padding: 60px 0; text-align: center; }
.footer-logo img { height: 70px; filter: invert(1) opacity(0.8); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; justify-content: center; gap: 30px; margin-bottom: 30px; }
.footer-links a { color: #a0a0a0; text-decoration: none; transition: color 0.3s ease; font-weight: 700; }
.footer-links a:hover { color: var(--accent-yellow); }
.social-icons a { color: #a0a0a0; font-size: 1.5rem; margin: 0 15px; text-decoration: none; transition: color 0.3s ease; }
.social-icons a:hover { color: var(--accent-yellow); }
.footer-copy { margin-top: 30px; font-size: 0.8rem; border-top: 1px solid #333; padding-top: 30px; }

.back-to-top { position: fixed; bottom: 20px; right: 20px; background-color: var(--dark-bg); color: var(--white); border: none; border-radius: 50%; width: 50px; height: 50px; font-size: 1.5rem; cursor: pointer; z-index: 1000; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s, transform 0.3s; transform: translateY(20px); }
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background-color: var(--primary-red); }

.modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.8); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.4s, visibility 0.4s; }
.modal.is-open { opacity: 1; visibility: visible; }
.modal-content { background-color: var(--white); padding: 40px; border-radius: 8px; max-width: 700px; width: 90%; position: relative; transform: scale(0.95); transition: transform 0.4s; }
.modal.is-open .modal-content { transform: scale(1); }
.modal-close { position: absolute; top: 15px; right: 20px; background: none; border: none; font-size: 2rem; cursor: pointer; color: #aaa; }
.modal h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 15px; }
.modal p { margin-bottom: 10px; }

/* --- 9. Call to Action Section --- */
.cta-section {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.98) 0%, rgba(51, 51, 51, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(235, 88, 59, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 184, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: 3px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.cta-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-yellow));
    transform: scaleX(0);
    transition: transform 0.5s var(--transition-smooth);
}

.cta-card:hover::before {
    transform: scaleX(1);
}

.cta-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 184, 0, 0.3);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(255, 184, 0, 0.1);
}

.cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.4s var(--transition-smooth);
}

.cta-card:hover .cta-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(235, 88, 59, 0.4);
}

.cta-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-card p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    min-height: 60px;
}

.cta-card .btn {
    margin-top: auto;
}

/* --- 10. Responsive Design --- */

/* Tablet - 769px to 992px */
@media (max-width: 992px) and (min-width: 769px) {
    .rides-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Tablet and below - max 992px */
@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .story-image {
        order: -1;
        margin-bottom: 0;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Mobile - max 768px */
@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .section-header h2 { font-size: 2.5rem; }
    .section-header p { font-size: 1rem; }

    /* Navigation */
    .desktop-nav { display: none; }
    .hamburger { display: block; }

    /* Grids */
    .rides-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Ride Cards */
    .ride-card-content p {
        min-height: auto;
        margin-bottom: 25px;
    }
    .ride-card .btn-secondary {
        opacity: 1;
        transform: none;
    }

    /* Footer */
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    /* Hero */
    .hero-content h1 {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    /* Contact Form */
    .contact-form .btn {
        width: 100%;
    }

    /* CTA Section */
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .cta-title {
        font-size: 2.5rem;
    }
    .cta-subtitle {
        font-size: 1.1rem;
    }
    .cta-card {
        padding: 40px 25px;
    }
}
        
/* --- Animation Classes --- */
.reveal {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    transition: opacity 1s var(--transition-smooth), transform 1s var(--transition-smooth);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Floating Elements Animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Divider */
.section-divider {
    height: 2px;
    width: 100px;
    background: linear-gradient(90deg, var(--accent-yellow), var(--primary-red));
    margin: 0 auto 30px;
    border-radius: 2px;
}