/* Base & Typography */
:root {
    --primary-color: #007EDC;
    --primary-dark: #0c1c71;
    --secondary-color: #00cbff;
    --dark-bg: #0b132b;
    --dark-surface: #1c2541;
    --light-bg: #f8f9fa;
    --text-dark: #333333;
    --text-light: #f1f1f1;
    --font-heading: 'Anek Latin', sans-serif;
    --font-body: 'Anek Latin', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--light-bg);
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.mb-5 { margin-bottom: 3rem; }
.mt-4 { margin-top: 1.5rem; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.5);
}

.btn-secondary {
    background-color: var(--dark-surface);
    color: #fff;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary-dark);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition-smooth);
}

.header.scrolled {
    background: rgba(11, 19, 43, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    transition: var(--transition-smooth);
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.5));
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu-toggle {
    display: none;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(12px) saturate(155%);
    -webkit-backdrop-filter: blur(12px) saturate(155%);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.nav-link {
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    opacity: 1;
    background-color: #0b132b;
}

@media (min-width: 769px) {
    .hero-video-wrapper {
        /* YouTube thumbnail shown on desktop as static fallback behind video */
        background-image: url('https://i.ytimg.com/vi/5vmgEHe5miQ/maxresdefault.jpg');
        background-size: cover;
        background-position: center;
    }
}

.hero-video-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: linear-gradient(180deg, rgba(11, 19, 43, 0.35) 0%, rgba(11, 19, 43, 0) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: subtleZoom 20s infinite alternate linear;
}

.hero-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 177.78vh;
    height: 56.25vw;
    min-width: 100%;
    min-height: 100%;
    border: 0;
    transform: translate(-50%, -50%) scale(1.08);
    animation: none;
    pointer-events: none;
}

.hero-mobile-fallback {
    display: none; /* hidden on desktop */
    position: absolute;
    inset: 0;
    z-index: 3; /* above overlay so photo is on top */
}

.hero-fallback-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero-fallback-play {
    position: absolute;
    left: 50%;
    bottom: 22%;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(11, 19, 43, 0.55);
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    backdrop-filter: blur(8px);
}

@keyframes heroFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes subtleZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(11, 19, 43, 0.4) 0%, rgba(11, 19, 43, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    color: #fff;
    text-align: center;
    max-width: 900px;
    width: fit-content;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.trust-badge-top {
    margin-bottom: 25px;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 0.2s;
    opacity: 0;
}

.padi-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.4;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    perspective: 2000px;
    min-height: 1.6em;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    overflow: visible;
}

.char {
    display: inline-block;
    opacity: 0;
    margin: 0 2px;
    transform: translate3d(var(--tx), var(--ty), 0) rotate(var(--tr));
    filter: blur(10px);
    animation: charGather 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: var(--delay);
    will-change: transform, opacity;
}

@keyframes charGather {
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0) rotate(0);
        filter: blur(0);
    }
}

.flight-graphic {
    animation: fadeInUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 0.5s;
    opacity: 0;
    margin-top: 30px;
}

.animated-plane {
    animation: flyPlane 6s ease-in-out infinite;
    transform-origin: 12px 12px;
}

@keyframes flyPlane {
    0% { transform: translate(18px, 33px) rotate(45deg) scale(0.8); opacity: 0; }
    15% { opacity: 1; }
    50% { transform: translate(128px, 6px) rotate(90deg) scale(1); }
    85% { opacity: 1; }
    100% { transform: translate(238px, 33px) rotate(115deg) scale(0.8); opacity: 0; }
}

.text-highlight .char {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    background-size: 100% 100%;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 900;
    filter: drop-shadow(0 2px 8px rgba(0, 126, 220, 0.45));
    animation: charGather 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.text-highlight .char {
    animation-delay: var(--delay);
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

/* Hide/Show Text Feature */
.hide-hero-btn {
    position: absolute;
    top: 10px;
    right: -50px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    z-index: 10;
}

.hide-hero-btn:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.05);
}

.show-hero-btn {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    backdrop-filter: blur(5px);
    z-index: 20;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 3px;
}

.show-hero-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.show-hero-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255,255,255,0.5);
}

.hidden-content {
    opacity: 0 !important;
    pointer-events: none;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    animation: fadeInUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 0.6s;
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 0.8s;
    opacity: 0;
    width: 100%;
}

.hero-actions .btn {
    width: 280px;
    box-sizing: border-box;
}

.trust-signals-bottom {
    margin-top: 30px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    animation: fadeInUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards 1s;
    opacity: 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-stars {
    margin-left: 10px;
}

/* Sections Base */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.bg-light {
    background-color: #f0f4f8;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
}

.intro-text {
    font-weight: 500;
    color: var(--dark-bg) !important;
}

.about-bullets {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.about-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #444;
}

.bullet-icon {
    color: #0088cc;
    font-weight: bold;
    font-size: 1.2rem;
}

.unique-angle {
    font-style: italic;
    color: #0088cc;
    border-left: 3px solid #0088cc;
    padding-left: 15px;
    margin: 25px 0 !important;
    font-weight: 600;
}

.rounded-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: var(--transition-smooth);
}

.rounded-image:hover {
    transform: scale(1.02);
}

/* Centers Section */
.centers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.center-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    position: relative;
    display: flex;
    flex-direction: column;
}

.center-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 136, 204, 0.15);
}

.center-img-wrapper {
    position: relative;
    width: 100%;
}

.center-img-wrapper img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: var(--transition-smooth);
}

.center-card:hover .center-img-wrapper img {
    transform: scale(1.1);
}

.badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-heading);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.center-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.center-content p {
    flex-grow: 1;
}

.hotel-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.center-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.center-content p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-family: var(--font-heading);
}

.map-link:hover {
    color: var(--dark-bg);
    gap: 12px;
}

/* Video Section */
.video-section-card {
    max-width: 980px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(11, 19, 43, 0.15);
    background: #000;
}

.feature-video {
    width: 100%;
    height: min(56.25vw, 551px);
    min-height: 240px;
    max-height: 551px;
    border: 0;
    display: block;
    background: #000;
}

.video-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.video-modal.is-open {
    display: flex;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.75);
    cursor: pointer;
}

.video-modal-dialog {
    position: relative;
    width: min(960px, 92vw);
    z-index: 1;
}

.video-modal-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    border-radius: 12px;
    background: #000;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-bg), var(--primary-dark));
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://scubaworld.b-cdn.net/images/svg/main-logo.svg') no-repeat center center;
    background-size: contain;
    opacity: 0.05;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.cta-title::after { display: none; }

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: #fff;
    padding: 50px 0 30px;
}

/* Discount Banner */
.discount-banner {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: #fff;
    padding: 15px 0;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.discount-badge {
    background: #fff;
    color: #d35400;
    padding: 4px 10px;
    border-radius: 4px;
    margin: 0 10px;
    font-size: 1.2rem;
}

/* Courses Section */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.course-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
}

.course-card:hover {
    transform: translateX(10px);
    background: var(--dark-bg);
    color: #fff;
}

.course-card h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.course-card:hover h4 {
    color: var(--secondary-color);
}

/* Language Badges */
.lang-badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    margin-right: 8px;
    font-size: 0.8rem;
}

.copyright {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* WhatsApp Widget */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: all 0.3s ease;
}

.whatsapp-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

.whatsapp-widget svg {
    width: 35px;
    height: 35px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .hero-video-wrapper::before {
        height: 0;
    }
    
    /* ── MOBILE HERO: show photo, hide YouTube ── */
    /* 1. Hide the YouTube iframe completely */
    .hero-iframe {
        display: none !important;
        visibility: hidden !important;
    }
    /* 2. Kill the YouTube thumbnail background on the wrapper */
    .hero-video-wrapper {
        background-image: none !important;
        opacity: 1 !important;
        animation: none !important;
    }
    /* 3. Show the local photo via <img> tag (z-index:3 puts it above the overlay) */
    .hero-mobile-fallback {
        display: block !important;
    }
    /* 4. Move overlay above the photo with reduced opacity so photo shows through */
    .hero-overlay {
        z-index: 4;
        background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(11, 19, 43, 0.5) 100%);
    }
    /* 5. Ensure hero-content stays on top of everything */
    .hero-content {
        z-index: 10;
    }

    .hero {
        min-height: 100svh;
        height: auto;
        padding-top: 118px;
        padding-bottom: 40px;
    }
    .hero-title {
        font-size: clamp(2rem, 10vw, 2.8rem);
        line-height: 1.12;
        min-height: 0;
        margin-bottom: 14px;
    }
    .hero-content {
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0 6px;
    }
    .hero-actions {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-top: 12px !important;
    }
    .hero-actions .btn {
        width: 100%;
        max-width: 340px;
        margin: 0 auto;
    }
    .header {
        top: 0;
        padding: calc(env(safe-area-inset-top, 0px) + 10px) 0 10px;
    }
    .header-content {
        justify-content: space-between;
        position: relative;
        align-items: center;
    }
    .logo {
        display: inline-flex;
        align-items: center;
        padding-left: 2px;
    }
    .logo img {
        height: 42px;
        width: auto;
    }
    .hide-hero-btn {
        right: 8px;
        top: -18px;
    }
    .flight-graphic {
        display: flex;
        justify-content: center;
        margin-top: 14px;
    }
    .flight-graphic svg {
        width: min(260px, 82vw);
        height: auto;
    }
    .menu-toggle {
        display: inline-flex;
        margin-left: 12px;
    }
    .nav {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 14px;
        border-radius: 14px;
        background: rgba(11, 19, 43, 0.95);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
    }
    .nav.nav-open {
        display: flex;
    }
    .nav-link,
    .nav .btn {
        text-align: left;
        width: 100%;
    }
    .cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 98px;
        padding-bottom: 28px;
    }
    .hero-fallback-play {
        bottom: 18%;
        padding: 9px 14px;
        font-size: 0.78rem;
    }
    .hero-title {
        font-size: clamp(1.7rem, 11vw, 2.2rem);
        letter-spacing: 0.5px;
    }
    .hero-actions .btn {
        width: auto;
        min-width: 220px;
        max-width: 260px;
        padding: 11px 16px;
        font-size: 0.8rem;
        letter-spacing: 0.6px;
    }
    .show-hero-btn {
        bottom: 18px;
        padding: 8px 14px;
        font-size: 0.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
