:root {
    --deep-navy: #0A2540;
    --lagoon-teal: #1FB6A6;
    --oyster-shell: #F2F5F7;
    --highlight-gold: #C7A953;
    --charcoal: #2B2B2B;
    --white: #FFFFFF;
    --text-dark: #2B2B2B;
    --text-light: #666666;
    --border-color: #E0E0E0;
    --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.08);
    --shadow-md: 0 4px 16px rgba(10, 37, 64, 0.12);
    --shadow-lg: 0 8px 24px rgba(10, 37, 64, 0.16);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--deep-navy);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    font-weight: 400;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-navy);
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--lagoon-teal);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    width: 25px;
    height: 2px;
    background-color: var(--deep-navy);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.5rem 0;
    position: relative;
}

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

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

.nav-link.nav-cta {
    background-color: var(--lagoon-teal);
    color: var(--white);
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
}

.nav-link.nav-cta::after {
    display: none;
}

.nav-link.nav-cta:hover,
.nav-link.nav-cta:focus {
    background-color: var(--deep-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--deep-navy);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100vh;
    min-width: 177.77vh;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    border: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 37, 64, 0.3) 0%, rgba(13, 59, 102, 0.3) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(31, 182, 166, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.375rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.hero-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-weight: 500;
    font-size: 0.9375rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--lagoon-teal);
    color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--highlight-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--deep-navy);
    color: var(--white);
    border-color: var(--lagoon-teal);
    border-width: 2px;
    box-shadow: 0 4px 15px rgba(10, 37, 64, 0.3);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background-color: var(--lagoon-teal);
    color: var(--white);
    border-color: var(--deep-navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(31, 182, 166, 0.4);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-block {
    display: block;
    width: 100%;
}

.about {
    background-color: var(--oyster-shell);
}

.about-content {
    display: grid;
    gap: 3rem;
}

.about-text h3 {
    font-size: 1.75rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.25rem;
    color: var(--text-light);
    font-size: 1.0625rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.25rem;
    color: var(--deep-navy);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

.experience-content {
    max-width: 900px;
    margin: 0 auto;
}

.experience-description .lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background-color: var(--oyster-shell);
    border-left: 4px solid var(--lagoon-teal);
    border-radius: 8px;
}

.experience-details {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.detail-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.detail-card:hover {
    box-shadow: var(--shadow-md);
}

.detail-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.detail-content h4 {
    font-size: 1.125rem;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.detail-content p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.what-to-bring {
    background-color: var(--oyster-shell);
    padding: 2rem;
    border-radius: 12px;
}

.what-to-bring h3 {
    font-size: 1.5rem;
    color: var(--deep-navy);
    margin-bottom: 1.25rem;
}

.bring-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.bring-list li {
    padding: 0.75rem;
    background-color: var(--white);
    border-radius: 8px;
    font-size: 0.9375rem;
    color: var(--text-dark);
}

.bring-list li::before {
    content: '✓ ';
    color: var(--lagoon-teal);
    font-weight: 700;
    margin-right: 0.5rem;
}

.schedule {
    background-color: var(--oyster-shell);
}

.schedule-info {
    text-align: center;
    margin-bottom: 2.5rem;
}

.schedule-notice {
    display: inline-block;
    padding: 1rem 1.5rem;
    background-color: var(--white);
    border-left: 4px solid var(--highlight-gold);
    border-radius: 8px;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
}

.time-card {
    background-color: var(--white);
    padding: 1.25rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.time-card:hover {
    border-color: var(--lagoon-teal);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.time-card .time {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep-navy);
    font-family: 'Poppins', sans-serif;
}

.time-card .label {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.pricing-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 3px solid transparent;
}

.price-card.highlight {
    border-color: var(--lagoon-teal);
    transform: scale(1.02);
}

.price-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.price-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--oyster-shell);
}

.price-header h3 {
    font-size: 1.75rem;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.price-header p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

.price-amount {
    text-align: center;
    margin-bottom: 2rem;
}

.price-amount .price-from {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.price-amount .currency {
    font-size: 1.5rem;
    color: var(--lagoon-teal);
    font-weight: 600;
    vertical-align: top;
}

.price-amount .amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--deep-navy);
    font-family: 'Poppins', sans-serif;
}

.price-amount .unit {
    display: block;
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
}

.price-features li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--oyster-shell);
}

.price-features li::before {
    content: '✓ ';
    color: var(--lagoon-teal);
    font-weight: 700;
    margin-right: 0.5rem;
}

.reviews {
    background-color: var(--white);
}

.reviews-stats {
    text-align: center;
    margin-bottom: 3rem;
}

.rating-overview {
    display: inline-block;
    padding: 2rem 3rem;
    background-color: var(--oyster-shell);
    border-radius: 16px;
}

.rating-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--deep-navy);
    font-family: 'Poppins', sans-serif;
    line-height: 1;
}

.rating-stars {
    font-size: 2rem;
    color: var(--highlight-gold);
    margin: 0.5rem 0;
}

.rating-count {
    color: var(--text-light);
    font-size: 0.9375rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.review-card {
    background-color: var(--oyster-shell);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.review-stars {
    color: var(--highlight-gold);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.review-text {
    color: var(--text-dark);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-top: 1rem;
    border-top: 2px solid var(--white);
}

.review-author strong {
    color: var(--deep-navy);
    font-weight: 600;
}

.review-author span {
    color: var(--text-light);
    font-size: 0.875rem;
}

.gallery {
    background-color: var(--oyster-shell);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 4 / 3;
    background-color: var(--oyster-shell);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover::after {
    opacity: 1;
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 37, 64, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-image {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 2rem;
    padding: 1rem;
    border-radius: 50%;
    transition: var(--transition);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--lagoon-teal);
}

.lightbox-close {
    top: 2rem;
    right: 2rem;
}

.lightbox-prev {
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.faq {
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 2px solid var(--oyster-shell);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--lagoon-teal);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--deep-navy);
    transition: var(--transition);
    cursor: pointer;
}

.faq-question:hover {
    color: var(--lagoon-teal);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--lagoon-teal);
    transition: var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.contact {
    background-color: var(--white);
}

.location-content {
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-card {
    background-color: var(--oyster-shell);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.location-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--lagoon-teal);
}

.location-card.large {
    background-color: var(--white);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.location-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.location-card h3 {
    font-size: 1.5rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.location-address {
    font-size: 1.125rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.location-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.location-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.location-card a {
    color: var(--lagoon-teal);
    font-weight: 600;
    font-size: 1.0625rem;
}

.location-card a:hover {
    text-decoration: underline;
    color: var(--highlight-gold);
}

.location-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.location-actions .btn {
    font-size: 1.125rem;
    padding: 1.25rem 2rem;
    font-weight: 600;
}

.location-actions .btn span {
    font-size: 1.25rem;
    margin-right: 0.5rem;
}

.map-showcase {
    margin-top: 3rem;
}

.map-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(10, 37, 64, 0.15);
    border: 3px solid var(--oyster-shell);
    transition: var(--transition);
}

.map-frame:hover {
    box-shadow: 0 16px 50px rgba(10, 37, 64, 0.2);
    transform: translateY(-5px);
}

.map-frame iframe {
    display: block;
}

.footer {
    background-color: var(--deep-navy);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-brand .footer-logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.footer-links h4 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--lagoon-teal);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.footer-contact a {
    color: var(--lagoon-teal);
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--lagoon-teal);
}

@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        padding: 5rem 2rem 2rem;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--oyster-shell);
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .section-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .pricing-info {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .lightbox-prev,
    .lightbox-next {
        display: none;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        height: 100vh;
    }
    
    .hero-video {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 177.78vh;
        height: 100vh;
        min-width: 100vw;
        min-height: 56.25vw;
        transform: translate(-50%, -50%);
        object-fit: cover;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.9375rem;
    }

    .hero-badges {
        flex-direction: column;
        gap: 1rem;
    }

    .badge {
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media print {
    .header,
    .hero,
    .footer,
    .nav-toggle,
    .lightbox {
        display: none;
    }
}
