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

body {
    font-family: Arial, sans-serif;
    background: #f7fbff;
    color: #111;
}

.container {
    width: 80%;
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 20px;
}

a {
    color: inherit;
}

/* =========================
   BUTTONS
========================= */
.next-btn,
.btn-primary,
.btn-secondary {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    padding: 14px 24px;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: 0.25s ease;
}

.next-btn,
.btn-primary {
    background: #2454ff;
}

.next-btn:hover,
.btn-primary:hover {
    background: #1d46d8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(90deg, #ff3b30, #ff9500, #ffcc00, #34c759, #007aff, #af52de);
}

.btn-secondary:hover {
    transform: translateY(-2px);
}

/* =========================
   THEMES
========================= */
.student-theme {
    background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.pride-theme {
    background: linear-gradient(180deg, #fff7fb 0%, #ffffff 100%);
}

.pride-theme .next-btn,
.pride-theme .btn-primary {
    background: linear-gradient(90deg, #ff3b30, #ff9500, #ffcc00, #34c759, #007aff, #af52de);
    color: white;
}

.pride-theme .choice-card.selected,
.pride-theme .truck-card.selected,
.pride-theme .effect-card.selected {
    border-color: #af52de;
    background: #fff0fb;
}

.student-theme .choice-card.selected,
.student-theme .truck-card.selected,
.student-theme .effect-card.selected {
    border-color: #2454ff;
    background: #f0f4ff;
}

.pride-theme .info-hero h1,
.pride-theme .booking-step h2 {
    background: linear-gradient(90deg, #ff3b30, #ff9500, #ffcc00, #34c759, #007aff, #af52de);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.student-theme .info-hero h1,
.student-theme .booking-step h2 {
    color: #2454ff;
}

/* =========================
   SIDE NAV - MODERN
========================= */
.side-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 165px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border-right: 1px solid rgba(0,0,0,0.08);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 45px 16px;
    box-shadow: 18px 0 45px rgba(0,0,0,0.05);
}

.side-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #111;
    font-weight: 900;
    line-height: 0.95;
    margin-bottom: 70px;
}

.logo-star {
    font-size: 42px;
    background: linear-gradient(135deg, #2454ff, #ff3b8d, #ff9500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.side-logo small {
    font-size: 13px;
    letter-spacing: 1px;
}

.side-nav nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.side-nav nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #111;
    font-weight: 800;
    font-size: 14px;
    padding: 15px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,0.72);
    box-shadow: 0 14px 30px rgba(0,0,0,0.06);
    transition: 0.25s ease;
}

.side-nav nav a span {
    font-size: 20px;
}

.side-nav nav a:hover,
.side-nav nav a.active {
    background: #f0f4ff;
    color: #2454ff;
    transform: translateX(4px);
}

.booking-page,
.info-page,
.contact-page {
    margin-left: 165px;
}

/* =========================
   HOME PAGE - MODERN HERO
========================= */
.home-page {
    padding: 42px 42px 0;
}

.home-hero {
    min-height: 680px;
    position: relative;
    overflow: hidden;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: none;
    margin: 0;

    background-image:
        linear-gradient(rgba(0,0,0,0.42), rgba(0,0,0,0.52)),
        url("../images/heromove.jpg");

    background-size:
        100% 100%,
        cover;

    background-repeat:
        no-repeat,
        no-repeat;

    background-position:
        center center,
        center center;

    animation: heroDrive 10s ease-in-out infinite alternate;
}

.home-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 45%, rgba(255,255,255,0.08), transparent 34%),
        linear-gradient(90deg, rgba(0,0,0,0.18), transparent 28%, transparent 72%, rgba(0,0,0,0.25));
}

@keyframes heroDrive {
    from {
        background-position:
            center center,
            50% center;
    }

    to {
        background-position:
            center center,
            58% center;
    }
}

.home-hero-text {
    max-width: 850px;
    text-align: center;
    color: white;
    z-index: 2;
    padding: 0 24px;
}

.home-hero .eyebrow {
    color: white;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.home-hero-text h1 {
    font-size: 58px;
    line-height: 1.08;
    margin: 22px 0 24px;
    text-shadow: 0 5px 22px rgba(0,0,0,0.35);
}

.home-hero-text p {
    font-size: 20px;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto;
    text-shadow: 0 4px 18px rgba(0,0,0,0.4);
}

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.home-hero .hero-buttons {
    position: static;
    justify-content: center;
    margin-top: 34px;
}

.home-hero .btn-primary,
.home-hero .btn-secondary {
    min-width: 220px;
    padding: 17px 28px;
    border-radius: 14px;
    box-shadow: 0 14px 35px rgba(0,0,0,0.28);
}

.home-hero .btn-primary {
    background: #2454ff;
}

.home-hero .btn-secondary {
    background: linear-gradient(90deg, #ff3b30, #ff9500, #ffcc00, #34c759, #007aff, #af52de);
}

/* =========================
   INFO PAGES
========================= */
.info-page {
    padding-bottom: 80px;
}

.info-hero {
    max-width: 800px;
    margin: 90px auto 60px;
    text-align: center;
    padding: 0 20px;
}

.info-hero h1 {
    font-size: 64px;
    margin-bottom: 20px;
}

.info-hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #444;
}

.info-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.info-card,
.effect-info-card {
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 18px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
}

.info-card {
    text-align: center;
}

.info-card img,
.effect-info-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 18px;
}

.info-card h2 {
    font-size: 24px;
    margin-bottom: 8px;
}

.info-card > strong,
.effect-info-card > strong {
    display: block;
    margin-bottom: 12px;
}

.info-card p,
.effect-info-card p {
    color: #444;
    margin-bottom: 18px;
}

.info-card details {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 14px 0;
    margin-bottom: 18px;
}

.info-card summary {
    cursor: pointer;
    font-weight: 700;
}

.price-list {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 20px;
    margin-top: 14px;
}

.info-effects-section {
    margin-top: 80px;
}

.info-effects-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.info-effects-section > p {
    margin-bottom: 25px;
    color: #444;
}

.effects-info-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.effect-info-card h3 {
    margin-bottom: 8px;
}

.more-than-50 {
    max-width: 800px;
    margin: 70px auto 0;
    text-align: center;
    padding: 50px;
    border-radius: 18px;
    background: #f8f8f8;
}

.more-than-50 h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

.more-than-50 p {
    margin-bottom: 25px;
    color: #444;
}

.page-hero {
    height: 430px;
    margin-bottom: 80px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.student-page-hero {
    background-image: url("../images/studenthero.jpg");
}

.pride-page-hero {
    background-image: url("../images/pridehero.jpg");
}

.page-hero-overlay {
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.page-hero-overlay h1 {
    font-size: 72px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.page-hero-overlay p {
    font-size: 22px;
}

/* =========================
   BOOKING PAGE
========================= */
.booking-page {
    position: relative;
    background: #fff;
    min-height: 100vh;
    padding-bottom: 100px;
}

.price-box {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    background: white;
    padding: 18px 34px;
    border-radius: 18px;
    box-shadow: 0 16px 45px rgba(0,0,0,0.18);
    z-index: 1001;
    min-width: 420px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    font-weight: 800;
}

.price-box span {
    color: #2454ff;
}
.booking-step {
    display: none;
    padding: 90px 0;
    border-bottom: 1px solid #eee;
}

.booking-step.active {
    display: block;
}

.booking-step h2 {
    font-size: 46px;
    margin-bottom: 15px;
}

.booking-step p {
    font-size: 20px;
    margin-bottom: 35px;
    color: #555;
}

.booking-input {
    width: 100%;
    max-width: 500px;
    padding: 16px;
    margin-top: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 18px;
}

.contact-form {
    display: grid;
    gap: 20px;
    margin-top: 30px;
    max-width: 700px;
}

.contact-form.two-columns,
.two-columns {
    grid-template-columns: repeat(2, 1fr);
}

.booking-type-hero {
    display: none;
}

.booking-type-hero.active {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 560px;
    max-width: 1280px;
    margin: 50px auto 100px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,.18), 0 8px 25px rgba(0,0,0,.08);
}

.booking-type-panel {
    position: relative;
    border: none;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%);
    transition: 0.45s ease;
    overflow: hidden;
}

.booking-type-panel:hover,
.booking-type-panel.selected {
    filter: grayscale(0%);
    transform: scale(1.02);
    z-index: 2;
}

.student-panel {
    background-image: url("../images/studenthero.jpg");
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
}

.pride-panel {
    background-image: url("../images/pridehero.jpg");
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
    margin-left: -8%;
}

.panel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    transition: 0.45s ease;
}

.booking-type-panel:hover .panel-overlay,
.booking-type-panel.selected .panel-overlay {
    background: rgba(0, 0, 0, 0.18);
}

.panel-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 40px;
}

.panel-content h2 {
    font-size: 58px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.panel-content p {
    font-size: 20px;
    max-width: 420px;
}

.pride-customer-options {
    display: flex;
    gap: 24px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.pride-customer-card {
    width: 310px;
    min-height: 160px;
    padding: 28px;
    border-radius: 22px;
    border: 2px solid #e5e5e5;
    background: #fff;
    cursor: pointer;
    transition: 0.25s ease;
    text-align: left;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
}

.pride-customer-card:hover {
    transform: translateY(-5px);
    border-color: #ff5f00;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.pride-customer-card.selected {
    border-color: #ff5f00;
    background: linear-gradient(135deg, rgba(255, 95, 0, 0.08), rgba(175, 82, 222, 0.08));
}

.customer-icon {
    display: block;
    font-size: 34px;
    margin-bottom: 14px;
}

.pride-customer-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.pride-customer-card p {
    color: #555;
    line-height: 1.5;
}

.truck-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.truck-card {
    position: relative;
    background: white;
    border: 2px solid #ddd;
    border-radius: 14px;
    overflow: hidden;
    text-align: left;
    cursor: pointer;
    transition: 0.25s;
}

.truck-card:hover {
    transform: translateY(-6px);
    border-color: #2454ff;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.truck-card.selected {
    border-color: #2454ff;
    box-shadow: 0 18px 40px rgba(36,84,255,0.25);
}

.truck-card.disabled {
    opacity: 0.45;
    filter: grayscale(100%);
    cursor: not-allowed;
}

.truck-card.disabled:hover {
    transform: none;
    box-shadow: none;
}

.truck-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.truck-card-content {
    padding: 18px;
}

.disabled-badge {
    display: none;
    position: absolute;
    top: 16px;
    left: 16px;
    background: #fff3e6;
    color: #b94b00;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: bold;
    z-index: 2;
}

.truck-card.disabled .disabled-badge {
    display: block;
}

.pride-theme .truck-card::after,
.student-theme .truck-card::after {
    position: absolute;
    top: 14px;
    right: 16px;
    font-size: 34px;
    opacity: 0;
    transition: 0.3s ease;
}

.pride-theme .truck-card::after {
    content: "🌈";
    transform: scale(0.6) rotate(-15deg);
}

.student-theme .truck-card::after {
    content: "🎓";
    transform: translateY(-10px) rotate(-10deg);
}

.pride-theme .truck-card:hover::after,
.student-theme .truck-card:hover::after {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.inline-sound-options {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #ddd;
}

.inline-sound-title {
    font-weight: bold;
    margin-bottom: 12px;
}

.inline-sound-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    background: #fff;
    transition: 0.2s;
}

.inline-sound-row:hover,
.inline-sound-row.selected {
    border-color: #2454ff;
    background: #f0f4ff;
}

.inline-sound-row input {
    margin-top: 5px;
}

.inline-sound-row span {
    display: block;
    font-weight: bold;
    margin-top: 4px;
}

.inline-sound-row p {
    margin: 5px 0 0 0;
    font-size: 14px;
    color: #555;
}

.truck-card.too-small {
    opacity: 0.45;
    filter: grayscale(100%);
    border-color: #b91c1c;
}

.effects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.effect-card {
    background: white;
    border: 2px solid #ddd;
    border-radius: 14px;
    padding: 28px;
    text-align: left;
    cursor: pointer;
    transition: 0.25s;
    overflow: hidden;
}

.effect-card:hover {
    transform: translateY(-6px);
    border-color: #2454ff;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.effect-card.selected {
    border-color: #2454ff;
    background: #f0f4ff;
    box-shadow: 0 18px 40px rgba(36,84,255,0.22);
}

.effect-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.effect-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.effect-card strong {
    display: block;
    margin-bottom: 12px;
}

.effect-card p {
    color: #555;
    line-height: 1.5;
}

.summary-box {
    background: white;
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 30px;
    max-width: 800px;
    margin-top: 30px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.summary-box h3 {
    margin-top: 25px;
    margin-bottom: 10px;
}

.summary-row {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.summary-row strong {
    display: block;
    margin-bottom: 4px;
}

#step-thank-you.active {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
}

/* =========================
   CONTACT PAGE
========================= */
.contact-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact-hero {
    max-width: 1000px;
    margin: 0 auto 60px auto;
    text-align: center;
}

.contact-hero h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.contact-info {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-info .info-card {
    min-width: 250px;
    padding: 25px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 35px;
    max-width: 1100px;
    margin: 40px auto 60px;
}

.contact-form-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.contact-form-section p {
    margin-bottom: 20px;
    color: #666;
}

.contact-form-section .contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: none;
}

.contact-form-section input,
.contact-form-section textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.contact-form-section button {
    background: #2563eb;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    cursor: pointer;
}

.contact-side-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 250px;
}

.contact-side-card h2 {
    margin-bottom: 15px;
}

.contact-side-card p {
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-icon {
    display: block;
    font-size: 32px;
    margin-bottom: 15px;
}

.contact-help-list {
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
    text-align: left;
}

.contact-help-list li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.contact-help-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2454ff;
    font-weight: 800;
}

.contact-side-card .btn-primary {
    width: auto;
    min-width: 170px;
    margin-top: 20px;
}

.faq-section {
    max-width: 1200px;
    margin: 0 auto 60px;
}

.faq-grid {
    display: grid;
    gap: 20px;
}

.faq-item {
    background: white;
    padding: 25px;
    border-radius: 16px;
    margin-bottom: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* =========================
   THANK YOU PAGE
========================= */
body.thank-you-page {
    min-height: 100vh;
    margin: 0;
    background: #f7f7f7;
}

.thank-you-page-content {
    min-height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

body.thank-you-page .thank-you-box,
#step-thank-you .thank-you-box {
    max-width: 700px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.thank-you-page .thank-you-box h1,
#step-thank-you .thank-you-box h2 {
    margin-bottom: 20px;
    font-size: 34px;
}

.thank-you-page .thank-you-box p,
#step-thank-you .thank-you-box p {
    margin-bottom: 30px;
    font-size: 18px;
    color: #555;
}

/* =========================
   FOOTER
========================= */
.site-footer {
    background: #0b1f36;
    color: white;
    margin-top: 80px;
    margin-left: 145px;
}

.thank-you-page .site-footer {
    margin-left: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 0.9fr 1.1fr 0.9fr;
    gap: 24px;
    align-items: start;
    padding: 50px 5%;
}

.footer-text-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
    font-size: 22px;
    margin-bottom: 20px;
}

.footer-text-logo .logo-star {
    color: #ff3b8a;
    font-size: 34px;
}

.footer-column h3 {
    margin-bottom: 14px;
}

.footer-column p,
.footer-column a {
    display: block;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-column a:hover {
    color: white;
}

.footer-column form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column input,
.footer-column textarea {
    width: 200px;
    padding: 10px;
    border: none;
    border-radius: 9px;
    font-family: Arial, sans-serif;
}

.footer-column textarea {
    height: 55px;
    resize: vertical;
}

.footer-column button {
    width: 200px;
    background: #2454ff;
    color: white;
    border: none;
    border-radius: 9px;
    padding: 10px;
    cursor: pointer;
    font-weight: 600;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
}

/* =========================
   HOME SECTIONS
========================= */

.benefits-section,
.home-products,
.how-it-works,
.final-cta {
    max-width: 1500px;
    margin: 60px auto 80px;
    padding: 0 42px;
}

.benefits-section h2,
.home-products h2,
.how-it-works h2,
.final-cta h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 36px;
}

.benefit-grid,
.product-choice-grid,
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.benefit-card,
.step-card,
.home-product-card {
    background: white;
    border-radius: 24px;
    padding: 34px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    text-align: center;
}

.benefit-card span {
    font-size: 38px;
    display: block;
    margin-bottom: 14px;
}

.benefit-card h3,
.step-card h3,
.home-product-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.home-products .product-choice-grid {
    grid-template-columns: repeat(2, 1fr);
}

.home-product-card {
    text-align: left;
    overflow: hidden;
    padding: 0;
}

.home-product-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.home-product-card div {
    padding: 30px;
}

.step-card strong {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2454ff;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 22px;
}

.final-cta {
    background: white;
    border-radius: 28px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.final-cta .hero-buttons {
    justify-content: center;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1100px) {
    .effects-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1000px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .info-card-grid,
    .benefit-grid,
    .steps-grid,
    .product-choice-grid {
        grid-template-columns: 1fr;
    }

    .info-hero h1,
    .home-hero-text h1 {
        font-size: 44px;
    }
}

@media (max-width: 800px) {
    .side-nav {
        position: static;
        width: 100%;
        height: auto;
    }

    .booking-page,
    .info-page,
    .contact-page {
        margin-left: 0;
        max-width: 100%;
        padding: 0 18px 40px;
    }

    .container {
        width: 100%;
    }

    .home-hero {
        min-height: 620px;
        height: auto;
        padding: 60px 22px 120px;
        margin: 0;
        background-image:
            linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
            url("../images/heromove.jpg");
        background-size: 100% 100%, cover;
        background-repeat: no-repeat, no-repeat;
        background-position: center center, center center;
        animation: none;
    }

    .home-hero-text {
        max-width: 100%;
        padding: 0;
    }

    .home-hero-text h1 {
        font-size: 42px;
        line-height: 1.08;
        margin: 16px 0 20px;
    }

    .home-hero-text p {
        font-size: 16px;
        line-height: 1.6;
        max-width: 100%;
    }

    .home-hero .hero-buttons {
        position: static;
        margin-top: 28px;
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .home-hero .btn-primary,
    .home-hero .btn-secondary {
        width: 100%;
        max-width: 260px;
    }

    .page-hero,
    .student-page-hero,
    .pride-page-hero {
        height: 360px;
        margin: 0 -18px 40px;
        border-radius: 0;
    }

    .page-hero h1,
    .student-page-hero h1,
    .pride-page-hero h1 {
        font-size: 42px;
        line-height: 1;
        text-align: center;
    }

    .page-hero p,
    .student-page-hero p,
    .pride-page-hero p {
        font-size: 18px;
        text-align: center;
        padding: 0 20px;
    }

    .truck-grid,
    .effects-grid,
    .contact-info,
    .contact-form.two-columns,
    .two-columns {
        grid-template-columns: 1fr;
    }

    .truck-grid,
    .effects-grid,
    .contact-layout,
    .contact-info {
        display: grid;
        gap: 24px;
    }

    .truck-card,
    .effect-card,
    .info-card,
    .home-product-card {
        width: 100%;
        min-width: 0;
    }

    .truck-card img,
    .effect-card img,
    .home-product-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 16px;
    }

    .effect-card {
        padding: 18px;
        text-align: center;
    }

    .effect-card img {
        height: 180px;
    }

    .effect-card h3 {
        font-size: 22px;
    }

    .booking-type-hero.active {
        grid-template-columns: 1fr;
        height: auto;
        margin: 20px auto 50px;
        border-radius: 20px;
    }

    .booking-type-panel {
        height: 320px;
        clip-path: none !important;
        margin-left: 0 !important;
    }

    .panel-content h2 {
        font-size: 40px;
    }

    .panel-content p {
        font-size: 17px;
    }

    .price-box {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 14px;
    transform: none;
    width: auto;
    max-width: none;
    min-width: 0;
    margin: 0;
    padding: 14px 18px;
    font-size: 14px;
    gap: 14px;
}

    .site-footer {
        width: 100%;
        margin-left: 0;
        padding: 40px 20px 20px;
    }

    .footer-content {
        width: 100%;
        padding: 0;
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .footer-text-logo {
        justify-content: center;
    }

    .footer-column form {
        max-width: 320px;
        margin: 0 auto;
    }

    .thank-you-page-content {
        min-height: 100vh;
        padding: 40px 18px;
        align-items: center;
    }

    body.thank-you-page .thank-you-box {
        width: 100%;
        padding: 36px 22px;
        border-radius: 20px;
    }

    .thank-you-page .thank-you-box h1 {
        font-size: 34px;
        line-height: 1.15;
        margin-bottom: 18px;
    }

    .thank-you-page .thank-you-box p {
        font-size: 20px;
        line-height: 1.4;
        margin-bottom: 26px;
    }

    .thank-you-page .next-btn {
        width: 100%;
        max-width: 280px;
        font-size: 18px;
        padding: 16px 20px;
    }
}

@media (max-width: 650px) {
    .effects-info-grid {
        grid-template-columns: 1fr;
    }
}

.price-warning {
    margin-top: 18px;
    color: #b91c1c;
    font-weight: 700;
    line-height: 1.5;
}

#priceStudentCount {
    margin-top: 12px;
}

.price-box.compact-price-box {
    min-width: 260px;
    justify-content: center;
}

.price-box.private-pride {
    min-width: 220px;
    width: 220px;
}

.sound-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 18px;
    padding: 34px;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
    transition: 0.2s ease;
}

.sound-card:hover,
.sound-card.selected {
    border-color: #3b5cff;
    box-shadow: 0 15px 40px rgba(59, 92, 255, 0.25);
    transform: translateY(-4px);
}

.sound-card h3 {
    font-size: 26px;
    margin-bottom: 8px;
}

.sound-card strong {
    display: block;
    color: #2454ff;
    margin-bottom: 12px;
}

.truck-price {
    display: block;
    margin: 10px 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2454ff;
}

.sound-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #000;
    border-radius: 12px 12px 0 0;
}

.sound-card-content {
    padding: 1rem;
}

.sound-card strong {
    display: block;
    margin-bottom: 0.5rem;
}

.student-theme .sound-card.selected {
    border-color: #2454ff;
    background: #f0f4ff;
    box-shadow: 0 18px 40px rgba(36, 84, 255, 0.25);
}

.pride-theme .sound-card.selected {
    border-color: #af52de;
    background: #fff0fb;
    box-shadow: 0 18px 40px rgba(175, 82, 222, 0.25);
}

.sound-card.selected {
    transform: translateY(-4px);
}

.special-pride-card {
    min-height: 395px;
    max-width: 260px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #f8fbff, #ffffff);
    text-align: center;
}

.special-pride-card .special-icon {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #eef3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 28px;
}

.special-pride-card img {
    display: none;
}

.special-pride-card .truck-card-content {
    padding: 0;
}

.special-pride-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.special-pride-card .truck-price {
    display: block;
    color: #2563eb;
    font-size: 20px;
    margin-bottom: 18px;
}

.special-pride-card p {
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 800px) {
    .home-products .product-choice-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .home-product-card {
        width: 100%;
        max-width: 100%;
        border-radius: 28px;
        overflow: hidden;
    }

    .home-product-card img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        border-radius: 0;
    }

    .home-product-card div {
        padding: 26px 22px 30px;
    }

    .home-product-card h3 {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .home-product-card p {
        font-size: 18px;
        line-height: 1.45;
        margin-bottom: 22px;
    }

    .home-product-card .btn-primary,
    .home-product-card .btn-secondary {
        width: 100%;
        min-width: 0;
        border-radius: 14px;
        font-size: 17px;
        padding: 16px 20px;
    }

    .home-products {
        padding: 0 22px;
        margin-top: 50px;
    }

    .home-products h2 {
        font-size: 34px;
        margin-bottom: 28px;
    }

    .special-pride-card {
    max-width: 100%;
    margin: 0 auto;
}
}

.effects-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.effect-info-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 16px;
}

.effect-info-card strong {
    display: block;
    color: #2563eb;
    margin-bottom: 12px;
    font-size: 17px;
}

@media (max-width: 1000px) {
    .effects-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .effects-info-grid {
        grid-template-columns: 1fr;
    }
}

.callback-form {
    margin-top: 14px;
}

.callback-form button {
    background: linear-gradient(90deg, #ff3b30, #ff9500, #ffcc00, #34c759, #007aff, #af52de);
}

.callback-card form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
}

.callback-card input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.callback-card button {
    border: none;
    width: 100%;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    font-weight: 600;
    color: white;
    background: linear-gradient(
        90deg,
        #3b82f6,
        #2563eb
    );
}

.callback-card .contact-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-callback {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 280px;
}

.footer-callback h3 {
    color: white;
    margin-bottom: 10px;
}

.footer-callback form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-callback input {
    width: 180px;
    padding: 12px;
    border: none;
    border-radius: 8px;
}

.footer-callback button {
    width: 180px;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: white;
    font-weight: 600;
    background: linear-gradient(
        90deg,
        #3b82f6,
        #2563eb
    );
}

@media (max-width: 768px) {
    .site-footer {
        margin-left: 0;
        margin-top: 50px;
        padding: 40px 20px 20px;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0;
        text-align: center;
    }

    .footer-column,
    .footer-callback {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .footer-text-logo {
        justify-content: center;
    }

    .footer-column form,
    .footer-callback form {
        width: 100%;
        align-items: center;
    }

    .footer-column input,
    .footer-column textarea,
    .footer-column button,
    .footer-callback input,
    .footer-callback button {
        width: 100%;
        max-width: 280px;
    }

    .footer-column textarea {
        height: 80px;
    }

    .footer-bottom {
        margin-top: 25px;
        padding-top: 20px;
        text-align: center;
    }
}