/* 
 * Mobile Optimization CSS
 * Contains all max-width overrides for screens under 1024px.
 * Clean separation from style.css for better maintainability.
 */

/* Add specific mobile styles here */
html, body {
  overflow-x: hidden;
}

/* On mobile, remove the sticky stacking behavior and use standard vertical snapping */
.stacked-slides-container {
  scroll-snap-type: y mandatory;
  overflow-y: auto;
  height: 100vh;
}

.stacked-slide {
  position: relative !important;
  height: auto !important;
  min-height: 100vh;
  min-height: 100svh;
  scroll-snap-align: start;
  box-shadow: none !important;
  overflow: visible !important;
}

/* Adjust slide typography and padding for mobile */
.scroll-slide {
  padding: 80px 5% 20px 5% !important;
}

.slide-grid {
  grid-template-columns: 1fr !important;
  gap: 20px !important;
  overflow: visible !important;
  height: auto !important;
  padding-bottom: 30px;
}

.slide-interactive {
  height: auto !important;
  min-height: 400px;
}

.slide-title {
  font-size: 2.2rem !important;
}

/* Improve widget layouts on mobile */
.kungfu-slideshow-container,
.yoga-slideshow-container {
  min-height: 300px !important;
}

.interactive-box {
  padding: 15px !important;
}
/* Extracted Mobile Media Queries from style.css */

@media (max-width: 768px) {
.section-side-nav { display: none; }
.slide-dots-nav { bottom: 16px; gap: 10px; }
.slide-nav-btn { width: 45px; height: 45px; }
}

@media (max-width: 1024px) {
.hero-section {
    height: auto;
    min-height: 100vh;
    overflow: visible;
    padding: 95px 6% 70px 6%;
  }
.hero-header-block .hero-title-top {
    font-size: 3.4rem;
  }
.hero-video-centered-container {
    max-width: 680px;
    height: 42vh;
  }
.hero-video-frame {
    border-radius: 14px;
  }
}

@media (max-width: 768px) {
.hero-header-block .hero-title-top {
    font-size: 2.9rem;
    letter-spacing: 3px;
  }
.hero-header-block .hero-title-sub {
    font-size: 1.2rem;
    letter-spacing: 2.5px;
  }
.hero-details-block .hero-description {
    font-size: 0.9rem;
    padding: 0 12px;
  }
.hero-video-centered-container {
    height: 38vh;
  }
.hero-details-block .hero-actions {
    gap: 16px;
  }
}

@media (max-width: 600px) {
.hero-section {
    padding: 90px 5% 60px 5%;
  }
.hero-header-block .hero-title-top {
    font-size: 2.5rem;
    letter-spacing: 2.5px;
  }
.hero-header-block .hero-title-sub {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }
.hero-details-block .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    padding: 0 16px;
    box-sizing: border-box;
  }
.hero-details-block .hero-actions button {
    width: 100%;
  }
.hero-video-frame {
    border-radius: 12px;
    padding: 0;
  }
.hero-video-centered-container {
    height: 35vh;
  }
.hero-details-block .hero-description {
    font-size: 0.86rem;
    padding: 0 8px;
  }
.hero-header-block .hero-welcome {
    font-size: 0.9rem;
    letter-spacing: 4.5px;
  }
}

@media (max-width: 768px) {
.fullscreen-modal-content {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    border: none;
  }
.close-modal-btn {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
.content-popup-head {
    padding: 64px 18px 16px;
  }
.content-popup-scroll {
    padding: 18px 18px 26px;
  }
.popup-rich-grid,
  .popup-media-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1024px) {
/* Site Header */
.site-header {
    padding: 14px 16px;
  }
.site-header.scrolled {
    padding: 10px 16px;
  }
.logo-text {
    font-size: 1.4rem;
  }
.mobile-nav-toggle {
    display: block;
  }
.header-right {
    gap: 12px;
  }
/* Navigation Menu Drawer */
.nav-menu {
    position: fixed !important;
    top: 0 !important;
    left: 50% !important;
    right: auto !important;
    width: min(440px, calc(100vw - 20px)) !important;
    height: 100vh !important;
    background: rgba(12, 11, 10, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-left: 1px solid var(--glass-border) !important;
    padding: 90px 14px 18px 14px !important;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.22s ease !important;
    z-index: 99 !important;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7) !important;
    display: block !important;
    transform: translate(-50%, -10px) !important;
    border-radius: 18px !important;
    overflow-y: auto !important;
  }
.nav-menu.active {
    transform: translate(-50%, 0) !important;
    opacity: 1 !important;
  }
body.nav-open .nav-menu {
    transform: translate(-50%, 0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
.nav-menu ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }
.nav-link {
    font-size: 0.92rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 14px 15px !important;
    white-space: normal !important;
    width: 100% !important;
    border: 1px solid rgba(212, 175, 55, 0.08) !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    text-transform: none !important;
    letter-spacing: 1px !important;
  }
.nav-link::before,
.nav-link::after {
    display: none !important;
  }
.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), rgba(212, 175, 55, 0.04)) !important;
    border-color: rgba(212, 175, 55, 0.34) !important;
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.08) inset !important;
    text-shadow: none !important;
  }
.nav-link:focus-visible {
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.5), 0 0 0 1px rgba(0, 0, 0, 0.55) inset !important;
  }
/* Keep Horizontal Scroll Layout on Mobile/Tablet */
.horizontal-scroll-trigger {
    height: 100vh !important;
  }
.sticky-viewport {
    position: relative !important;
    height: 100vh !important;
    width: 100% !important;
    overflow: hidden !important;
  }
.storytelling-container {
    flex-direction: row !important;
    width: 100% !important;
    height: 100vh !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    transform: none !important;
    -webkit-overflow-scrolling: touch !important;
  }
.scroll-slide {
    width: 100vw !important;
    height: 100vh !important;
    padding: 75px 14px 35px 14px !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    scroll-snap-align: start !important;
    scroll-snap-stop: always !important;
  }
.slide-card {
    height: auto !important;
  min-height: 85vh;
    width: 100% !important;
    border-radius: 16px !important;
  }
.slide-grid {
    grid-template-columns: 1fr;
    padding: 20px 18px;
    gap: 20px;
    overflow-y: auto;
  }
.slide-title {
    font-size: clamp(1.7rem, 5vw, 2.1rem);
  }
.slide-description {
    font-size: 0.92rem;
  }
.slide-highlights-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
.slide-media-box {
    height: clamp(160px, 30vh, 220px);
  }
.interactive-box {
    padding: 20px;
  }
.slide-actions {
    flex-direction: column;
    align-items: stretch;
  }
.cta-btn {
    width: 100%;
  }
.section-container, 
  .section-container.reverse {
    flex-direction: column;
    gap: 40px;
  }
.text-content-column,
  .widget-column {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
.text-content-column {
    text-align: center;
  }
.section-heading {
    font-size: 2.5rem;
  }
.siddhar-quote, .stance-stats-box, .corporate-testimonials {
    text-align: left;
  }
/* Hamburger transform when menu is active */
.mobile-nav-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
.mobile-nav-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
.mobile-nav-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
/* Footer Adaptation */
.footer-section {
    height: auto;
    padding: 80px 20px 40px 20px;
  }
.footer-container {
    height: auto;
    gap: 40px;
  }
.footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
.footer-details {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 576px) {
.hero-title-top {
    font-size: 2.8rem;
    letter-spacing: 2.5px;
  }
.hero-title-sub {
    font-size: 1.25rem;
    letter-spacing: 1.8px;
  }
.hero-subtitle {
    font-size: 0.85rem;
    padding: 10px 14px;
  }
.section-heading {
    font-size: 1.8rem;
  }
.stance-selector-buttons {
    grid-template-columns: repeat(2, 1fr);
  }
.pranayama-presets {
    grid-template-columns: 1fr;
    gap: 8px;
  }
.soundboard-grid {
    grid-template-columns: 1fr;
  }
.slide-number {
    font-size: 0.75rem;
    letter-spacing: 4px;
  }
.slide-title {
    font-size: clamp(1.5rem, 6vw, 1.9rem);
  }
.slide-description {
    font-size: 0.88rem;
  }
.slide-grid {
    padding: 18px 16px;
    gap: 18px;
  }
.slide-highlights-list li {
    font-size: 0.86rem;
    padding: 8px 12px;
  }
.site-header {
    padding: 12px 14px;
  }
.logo-text {
    font-size: 1.25rem;
  }
}

@media (max-width: 400px) {
.hero-title-top {
    font-size: 2.4rem;
    letter-spacing: 2px;
  }
.hero-title-sub {
    font-size: 1.1rem;
    letter-spacing: 1.5px;
  }
.hero-subtitle {
    font-size: 0.8rem;
    padding: 8px 12px;
  }
.section-heading {
    font-size: 1.6rem;
  }
.slide-title {
    font-size: clamp(1.35rem, 7vw, 1.7rem);
  }
.slide-description {
    font-size: 0.84rem;
  }
.slide-grid {
    padding: 16px 14px;
    gap: 16px;
  }
.slide-highlights-list li {
    font-size: 0.82rem;
    padding: 7px 10px;
  }
.site-header {
    padding: 10px 12px;
  }
.logo-text {
    font-size: 1.15rem;
  }
.mobile-nav-toggle {
    width: 36px;
    height: 36px;
  }
.nav-menu {
    width: 90% !important;
    padding: 80px 24px 35px 24px !important;
  }
}

@media (max-width: 1024px) {
.horizontal-scroll-trigger.fullscreen-active {
    position: relative !important;
    height: auto !important;
  }
.horizontal-scroll-trigger.fullscreen-active .scroll-slide {
    height: auto !important;
  }
.horizontal-scroll-trigger.fullscreen-active .slide-grid {
    grid-template-columns: 1fr !important;
    padding: 80px 20px 40px 20px !important;
  }
}

@media (hover: none) and (pointer: coarse) {
}

@media (max-width: 1024px) {
.quote-text {
    font-size: 2rem;
  }
.journey-map-container {
    height: auto;
    margin-top: 40px;
  }
.map-connection-line {
    display: none;
  }
.journey-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 20px;
    height: auto;
  }
.journey-node {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: 100% !important;
    transform: none !important;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 15px;
  }
.journey-node:nth-child(even) {
    top: auto !important;
  }
.node-marker {
    margin: 0;
    flex-shrink: 0;
  }
.node-content {
    width: 100%;
    min-height: auto;
    padding: 12px;
  }
.showcase-grid {
    grid-template-columns: 1fr 1fr;
  }
.legacy-grid {
    grid-template-columns: 1fr;
  }
.vertical-timeline-line {
    left: 15px;
  }
.timeline-item {
    width: 100% !important;
    left: 0 !important;
    padding-left: 35px !important;
    padding-right: 0 !important;
    text-align: left !important;
  }
.timeline-item.left .timeline-dot, .timeline-item.right .timeline-dot {
    left: 8px !important;
    right: auto !important;
  }
.gallery-masonry {
    column-count: 2;
  }
.achievements-dashboard {
    grid-template-columns: repeat(3, 1fr);
  }
.training-modules-grid, .yoga-modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
.showcase-grid {
    grid-template-columns: 1fr;
  }
.gallery-masonry {
    column-count: 2 !important;
    column-gap: 12px !important;
  }
.achievements-dashboard {
    grid-template-columns: 1fr 1fr;
  }
.training-modules-grid, .yoga-modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1280px) {
.slide-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
    align-items: start;
  }
.slide-info,
  .slide-interactive {
    min-height: 0;
  }
.slide-title {
    font-size: 2rem;
  }
.interactive-box {
    max-height: none;
    padding: 20px;
  }
.kungfu-slideshow-container {
    height: clamp(300px, 42vh, 460px);
  }
#tab-yoga-poses {
    height: auto;
    max-height: none;
  }
.poses-list-container {
    max-height: 560px;
  }
}

@media (max-width: 900px) {
.scroll-slide {
    height: auto !important;
    min-height: 100svh !important;
    padding: 88px 14px 28px !important;
    align-items: stretch !important;
  }
.slide-card {
    min-height: calc(100svh - 116px);
  }
.slide-grid {
    padding: 18px 16px;
    gap: 18px;
  }
.slide-title {
    font-size: 1.7rem;
  }
.slide-highlights-list,
  .slide-meta,
  .training-modules-grid,
  .yoga-modules-grid {
    grid-template-columns: 1fr;
  }
.poses-header {
    grid-template-columns: 1fr;
    align-items: start;
  }
.poses-list-container {
    grid-template-columns: 1fr;
    max-height: 520px;
  }
.slide-actions {
    flex-direction: column;
  }
.slide-actions .cta-btn {
    width: 100%;
    justify-content: center;
  }
.interactive-box {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 18px;
  }
.gallery-masonry {
    column-count: 1 !important;
  }
}

@media (max-width: 1024px) {
.microsite-layout {
    grid-template-columns: 1fr;
  }
.microsite-sidebar {
    display: none; /* Hide sticky sidebar on tablet/mobile for standard vertically scrolling microsite flow */
  }
.microsite-content {
    padding: 100px 4% 60px 4%;
  }
.ms-title {
    font-size: 2.4rem;
  }
.ms-section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
.ms-grid-2, .ms-grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
.microsite-section {
    padding: 30px 20px;
  }
.gallery-masonry {
    column-count: 2 !important;
    column-gap: 12px !important;
  }
.award-showcase {
    padding: 15px !important;
  }
.award-showcase img {
    max-width: 100% !important;
    height: auto !important;
  }
.award-info h3 {
    font-size: 1.5rem !important;
  }
.award-info h4 {
    font-size: 1rem !important;
  }
.microsite-back-btn {
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    font-size: 0.75rem;
  }
}

@media (max-height: 720px) {
.hero-section {
    padding-top: 80px;
  }
.hero-content-centered {
    margin-top: 0;
    margin-bottom: 5px;
  }
.hero-welcome {
    font-size: 0.8rem;
    margin-bottom: 2px;
    letter-spacing: 3px;
  }
.hero-title-top {
    font-size: 2.4rem;
  }
.hero-title-sub {
    font-size: 1.05rem;
    margin-bottom: 2px;
    letter-spacing: 3px;
  }
.hero-divider {
    margin: 2px 0;
  }
.hero-video-centered-container {
    height: 40vh; /* Safe larger video height on small screens */
    margin-bottom: 8px;
  }
.hero-description {
    font-size: 0.85rem;
    margin-bottom: 5px;
    line-height: 1.35;
  }
.hero-actions .btn-hero-explore {
    padding: 10px 24px;
    margin-bottom: 0px;
    font-size: 0.8rem;
  }
.scroll-indicator {
    margin-top: 5px;
  }
.scroll-prompt-text {
    font-size: 0.65rem;
    letter-spacing: 2px;
  }
.mouse-scroll-icon {
    width: 18px;
    height: 30px;
  }
.mouse-wheel {
    width: 2.5px;
    height: 6px;
    top: 5px;
  }
}

@media (max-width: 768px) {
.floating-insta-btn,
  .floating-youtube-btn,
  .floating-whatsapp-btn,
  .floating-call-btn,
  .floating-email-btn {
    left: 20px;
    width: 40px;
    height: 40px;
  }
.floating-insta-btn {
    bottom: 20px;
  }
.floating-youtube-btn {
    bottom: 70px;
  }
.floating-whatsapp-btn {
    bottom: 120px;
  }
.floating-call-btn {
    bottom: 170px;
  }
.floating-email-btn {
    bottom: 220px;
  }
}

@media (max-width: 1024px) {
/* Hide desktop-only controls and expansion buttons */
.slide-nav-arrows,
  .slide-expand-btn {
    display: none !important;
  }
}

@media (max-width: 768px) {
/* Scale down microsite banner images for better screen usage */
.ms-banner-image-container {
    height: 180px !important;
    margin-bottom: 20px !important;
  }
/* Scale down the records carousel on mobile screens */
.record-card-container {
    height: 260px !important;
  }
.record-item-image.full-image {
    height: auto !important;
  min-height: 85vh;
    object-fit: contain !important;
  }
.record-dots {
    margin-bottom: 10px !important;
  }
/* Adjust lightbox close button positioning and size for tap safety */
.lightbox-close {
    top: 20px !important;
    right: 20px !important;
    font-size: 35px !important;
  }
.lightbox-content {
    max-width: 95% !important;
    max-height: 70% !important;
  }
}

@media (max-width: 480px) {
/* Tighter padding and sizing on mobile phone viewports */
.scroll-slide {
    padding: 75px 10px 40px 10px !important;
    height: 100vh !important;
    width: 100vw !important;
  }
.slide-card {
    height: auto !important;
  min-height: 85vh;
    border-radius: 8px !important;
  }
.slide-grid {
    padding: 15px 10px !important;
    gap: 15px !important;
  }
.slide-title {
    font-size: 1.5rem !important;
    line-height: 1.25 !important;
  }
/* Stack slide actions buttons cleanly */
.slide-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
.slide-actions .cta-btn {
    width: 100% !important;
    justify-content: center;
    text-align: center;
  }
/* Column layouts for sliders in synergy configurator */
.calc-row {
    grid-template-columns: 1fr !important;
    gap: 10px;
  }
}

@media (max-width: 900px) {
.kungfu-slideshow-container {
    height: 280px;
  }
.yoga-slideshow-container {
    min-height: 360px;
  }
.kungfu-featured-desc {
    max-width: 100%;
    font-size: 0.84rem;
  }
.kungfu-thumb-rail-head {
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
.kungfu-slideshow-container {
    height: 250px;
  }
.yoga-slideshow-container {
    min-height: 320px;
  }
.yoga-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }
.yoga-slide-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
  }
.yoga-thumb {
    width: 70px;
    height: 52px;
  }
.heritage-rich-text {
    font-size: 0.9rem;
  }
.heritage-modules-detail, .weapons-heritage-box, .school-aims-box {
    padding: 16px;
  }
}

@media (max-width: 768px) {
.heritage-inline-img {
    max-width: 100%;
    float: none !important;
    display: block;
    margin: 1.5rem auto;
  }
}

@media (max-width: 1024px) {
.storytelling-container {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    touch-action: pan-x pan-y;
  }
}

@media (max-width: 1024px) {
html {
    scroll-padding-top: 76px;
  }
.hero-section {
    min-height: 100svh;
    padding-top: 92px;
    padding-bottom: 54px;
  }
.hero-content-centered {
    gap: 10px;
  }
.hero-video-centered-container {
    width: min(100%, 720px);
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 0;
    margin-bottom: 10px;
  }
.hero-video-frame {
    width: 100%;
    height: auto;
  }
.horizontal-scroll-trigger,
  .sticky-viewport,
  .storytelling-container {
    min-height: 100svh !important;
  }
.storytelling-container {
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory !important;
    scroll-padding-inline: 0;
  }
.scroll-slide, .stacked-slide {
    min-height: 100svh !important;
    height: auto !important;
    align-items: stretch !important;
    overflow: visible !important;
  }
.slide-card {
    height: auto !important;
    min-height: calc(100svh - 120px);
    overflow: visible !important;
  }
.slide-grid,
  #kungfu .slide-grid,
  #yoga .slide-grid,
  #records .slide-grid {
    grid-template-columns: 1fr !important;
    align-items: start;
    height: auto !important;
    overflow: visible !important;
  }
.slide-info {
    height: auto;
    overflow: visible;
  }
.slide-interactive {
    min-height: 0;
  }
.interactive-box {
    max-height: none;
  }
}

@media (max-width: 768px) {
.site-header {
    min-height: 66px;
  }
.hero-section {
    padding: 86px 18px 44px;
  }
.hero-header-block .hero-welcome {
    font-size: 0.78rem;
    letter-spacing: 3px;
  }
.hero-header-block .hero-title-top {
    font-size: clamp(2.15rem, 10vw, 3.1rem);
    letter-spacing: 2px;
  }
.hero-header-block .hero-title-sub {
    font-size: 0.95rem;
    letter-spacing: 2px;
  }
.hero-details-block .hero-description {
    max-width: 36rem;
    padding: 0;
  }
.hero-details-block .hero-actions {
    width: 100%;
    gap: 12px;
    flex-wrap: wrap;
  }
.hero-details-block .cta-btn,
  .hero-actions .btn-hero-explore {
    flex: 1 1 180px;
    align-self: stretch;
  }
.scroll-slide {
    padding: 82px 12px 34px !important;
  }
.slide-card {
    min-height: calc(100svh - 116px);
  }
.slide-grid {
    padding: 18px 14px !important;
  }
.slide-title {
    font-size: clamp(1.55rem, 8vw, 2.15rem) !important;
    margin-bottom: 4px;
  }
.slide-number {
    letter-spacing: 3px;
  }
.slide-description {
    font-size: 0.93rem;
    line-height: 1.65;
  }
.slide-media-box {
    height: auto;
    aspect-ratio: 16 / 10;
  }
.slide-dots-nav {
    bottom: max(12px, env(safe-area-inset-bottom));
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(8, 8, 8, 0.58);
    border: 1px solid rgba(212, 175, 55, 0.16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
.floating-insta-btn,
  .floating-youtube-btn,
  .floating-whatsapp-btn,
  .floating-call-btn,
  .floating-email-btn {
    left: 12px;
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 480px) {
.hero-section {
    padding-left: 14px;
    padding-right: 14px;
  }
.hero-video-centered-container {
    width: 100%;
  }
.hero-details-block .hero-actions {
    flex-direction: column;
  }
.scroll-slide {
    height: auto !important;
    min-height: 100svh !important;
    padding: 78px 10px 36px !important;
  }
.slide-card {
    height: auto !important;
    min-height: calc(100svh - 114px);
    border-radius: 8px !important;
  }
.slide-grid {
    padding: 16px 12px !important;
    gap: 16px !important;
  }
.interactive-box {
    padding: 14px;
    border-radius: 8px;
  }
.slide-actions .cta-btn {
    min-height: 46px;
  }
}

