body { height: auto !important; overflow: visible !important; } /* Fix scrolling */
body::before { background-image: none; }
body::after { background: none; }
.content { text-align: center; max-width: none; padding: 20px; align-self: center; }
.headline { font-size: 2.5em; color: #fff; }
.tagline { color: #888; }
.hero-video { margin-bottom: 30px; }
.hero-video iframe { width: 100%; max-width: 600px; height: 300px; border-radius: 10px; }
.reviews { margin: 30px 0; }
.reviews-carousel { display: flex; overflow-x: hidden; gap: 20px; justify-content: flex-start; scroll-behavior: smooth; max-width: 100%; }
.review { background: #111; padding: 20px; border-radius: 10px; min-width: 280px; color: #888; }
.stars { color: gold; font-size: 1.5em; }
.pt-section { margin: 30px 0; }
.pt-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.pt { background: #111; padding: 20px; border-radius: 10px; max-width: 300px; text-align: center; color: #888; }
.pt img { width: 150px; height: 150px; border-radius: 50%; margin-bottom: 10px; }
.pt h3 { color: #fff; font-size: 1.2em; }
.photos { margin: 30px 0; }
.photo-collage { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; position: relative; }
.photo-collage img { width: 200px; border-radius: 10px; box-shadow: 0 2px 4px rgba(0,0,0,0.5); }
.photo-collage img:nth-child(2) { transform: rotate(5deg); }
.photo-collage img:nth-child(3) { transform: rotate(-5deg); position: relative; top: -20px; }
@media (max-width: 599px) { .reviews-carousel { flex-direction: column; align-items: center; } .pt-grid { flex-direction: column; align-items: center; } }

/* Video wrapper for responsive aspect ratio */
.video-wrapper {
    position: relative;
    padding-top: 177.78%; /* Aspect ratio for 360x640 vertical video (640/360 * 100) */
    width: 100%;
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .main-flex {
        flex-direction: column !important;
        align-items: center !important;
    }
    .video-container {
        width: 100% !important;
        padding-right: 0 !important;
        border-right: none !important;
        margin-bottom: 20px;
    }
    .details-container {
        width: 100% !important;
        padding-left: 0 !important;
    }
    .photos div {
        justify-content: center;
    }
    .photos div img {
        width: 45% !important; /* Two per row on tablets/small mobiles */
        margin-bottom: 10px;
    }
    .promo-container {
        flex-direction: column !important;
        gap: 10px !important;
        padding: 15px !important;
    }
    .promo-text {
        font-size: 1.2em !important;
        margin: 0 !important;
    }
    header {
        padding: 15px 20px !important;
    }
    .buttons {
        gap: 5px !important;
    }
    .buttons button {
        padding: 8px 15px !important;
        font-size: 0.9em !important;
    }
    .content {
        padding: 0 10px !important;
    }
    .headline {
        font-size: 2em !important;
    }
    .tagline {
        font-size: 1em !important;
    }
    .form-container {
        padding: 20px !important;
    }
    .inclusions {
        grid-template-columns: 1fr !important; /* Stack equipment list on mobile */
    }
    .reviews {
        padding: 0 5% !important;
    }
    .reviews-carousel {
        gap: 15px !important;
    }
    .review {
        width: 100% !important; /* Full width on mobile for better readability */
        min-width: auto !important;
    }
    .header-promo-text {
        font-size: 0.9em !important;
    }
}

@media (max-width: 480px) {
    .photos div img {
        width: 100% !important; /* Stack photos fully on very small screens */
        transform: none !important;
    }
    .pt img {
        width: 120px !important;
        height: 120px !important;
    }
    .pt {
        max-width: 100% !important;
    }
    .btn-primary, .btn-secondary {
        width: 100% !important; /* Full-width buttons on small mobiles */
        margin-left: 0 !important;
    }
    .header-right {
        align-items: stretch !important;
    }
    .header-promo-text {
        white-space: normal !important;
        text-align: center !important;
    }
}

/* Hide header promo on desktop */
@media (min-width: 769px) {
    .header-promo-text {
        display: none !important;
    }
}

/* Touch drag support for carousel on mobile */
.reviews-carousel {
    touch-action: pan-y; /* Allow vertical scroll if needed */
}
