/* ==========================================================================
   ČISTVO - ŠTÝLY (STYLE.CSS)
   ========================================================================== */

/* zakladne nastavenia */
:root {
    --primary: #00a8e8;
    --primary-dark: #0077b6;
    --primary-light: #e0f2fe;
    --accent: #00b4d8;
    --bg-dark: #0f2b48;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success: #10b981;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --radius: 12px;
}

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

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* typografia */
h1, h2, h3, h4 {
    color: var(--bg-dark);
    font-weight: 700;
    line-height: 1.25;
}

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

ul {
    list-style: none;
}

/* focus pre klavesnicu */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

/* hlavicka */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    /* backdrop-filter zámerne vynechaný - na fixnom headeri, ktorý sa
       prekresľuje pri každom skrolnutí, výrazne zaťažoval výkon na
       niektorých počítačoch (chýbajúca/slabšia hardvérová akcelerácia) */
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    padding: 15px 0;
    transition: var(--transition);
    transform: translateZ(0);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--bg-dark);
}

.logo-icon,
.logo-highlight {
    color: var(--primary);
}

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

.nav-item {
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
}

.nav-item:hover {
    color: var(--primary);
}

.nav-call-btn {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-call-btn:hover {
    background-color: var(--primary);
    color: white;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--bg-dark);
    cursor: pointer;
}

/* hero */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: 130px;
    padding-bottom: 70px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    will-change: opacity;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(0, 168, 232, 0.25);
    border: 1px solid rgba(0, 168, 232, 0.5);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-text {
    display: none;
}

.hero-text.active {
    display: block;
    animation: fadeIn 0.8s ease forwards;
}

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

.hero-text h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 18px;
}

.hero-text p {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.hero-actions {
    display: flex;
    gap: 15px;
}

/* hero formular */
.hero-form-wrapper {
    background: rgba(255, 255, 255, 0.97);
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    color: var(--text-main);
}

.hero-form h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.hero-form p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--bg-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background-color: white;
    box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.15);
}

.form-status {
    display: none;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.form-status.success {
    display: block;
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-status.error {
    display: block;
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* tlacidla */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 168, 232, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    background-color: white;
    color: var(--bg-dark);
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* sekcie, grid */
.section {
    padding: 65px 0;
}

.section-compact {
    padding-bottom: 50px;
}

.section-alt {
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px auto;
}

.section-title h2 {
    font-size: 2.3rem;
    margin-bottom: 12px;
}

.section-title h2 span {
    color: var(--primary);
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.grid {
    display: grid;
    gap: 30px;
}

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

.align-center {
    align-items: center;
}

/* o nas */
.features-list {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
}

.feature-icon {
    font-size: 1.4rem;
    color: var(--primary);
    margin-top: 2px;
}

.feature-item h4 {
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.about-stats-card {
    background: linear-gradient(135deg, var(--bg-dark), #1b3d60);
    padding: 40px;
    border-radius: 20px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 30px;
    box-shadow: var(--shadow);
}

.stat-box {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.stat-box:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.95rem;
    color: #94a3b8;
}

/* sluzby */
.card {
    background: white;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.services-expansion {
    margin-top: 45px;
    text-align: center;
}

.services-expansion-label {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--bg-dark);
    margin-bottom: 18px;
}

.services-expansion-box {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 30px;
    padding: 14px 28px;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.services-expansion-dot {
    color: var(--primary);
}

/* cennik */
.pricing-grid {
    align-items: stretch;
    gap: 20px;
}

.price-card-v2 {
    display: flex;
    flex-direction: column;
    padding: 26px 28px;
}

.price-card-v2-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--bg-light);
}

.price-card-v2-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.price-card-v2-header h3 {
    font-size: 1.1rem;
}

.price-card-v2-subtitle {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
}

.price-table {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-table li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-main);
    padding: 3px 0;
}

.price-table li > span:first-child {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-table li i {
    color: var(--success);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.price-table li em {
    font-style: normal;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.price-badge {
    background-color: var(--bg-dark);
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 4px 12px;
    border-radius: 7px;
    white-space: nowrap;
    flex-shrink: 0;
}

.price-note {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--border-color);
    font-size: 0.85rem;
    color: var(--text-muted);
}

.price-note strong {
    color: var(--bg-dark);
}

.pricing-cta {
    text-align: center;
    margin-top: 28px;
}

@media (max-width: 480px) {
    .price-table li {
        flex-wrap: wrap;
    }
}

/* recenzie */
.reviews-section {
    background-color: #ffffff;
}

.rating-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.rating-badge {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.rating-badge:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.facebook-icon { color: #1877f2; font-size: 1.8rem; }

.rating-info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.rating-score {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--bg-dark);
}

.stars {
    color: #ffb800;
    font-size: 0.85rem;
    display: flex;
    gap: 2px;
}

.review-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    contain: content;
}

/* slider recenzii */
.reviews-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviews-scroll-container {
    overflow: hidden;
    width: 100%;
    border-radius: 16px;
}

.reviews-scroll {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
}

.reviews-scroll .review-card {
    flex: 0 0 calc((100% - 48px) / 3);
}

.slider-btn {
    background: white;
    border: 1px solid var(--border-color);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--bg-dark);
    box-shadow: var(--shadow);
    transition: var(--transition);
    flex-shrink: 0;
}

.slider-btn:hover {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.avatar-blue { background-color: #dbeafe; color: #1e40af; }
.avatar-orange { background-color: #ffedd5; color: #c2410c; }
.avatar-green { background-color: #dcfce7; color: #15803d; }
.avatar-purple { background-color: #f3e8ff; color: #7e22ce; }

.user-info h4 {
    font-size: 1rem;
    font-weight: 700;
}

.social-type {
    margin-left: auto;
    font-size: 1.2rem;
}

.review-stars { font-size: 0.9rem; }

.review-text {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
}

/* videa */
.videos-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.videos-scroll-container {
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
}

.videos-scroll {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease-in-out;
    will-change: transform;
}

.video-card {
    flex: 0 0 267px;
    height: 476px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: linear-gradient(135deg, var(--bg-dark), #1b3d60);
    line-height: 0;
    transition: var(--transition);
    position: relative;
    cursor: pointer;
    contain: content;
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.video-card iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--primary-dark);
    border: none;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.video-play-btn i {
    margin-left: 3px; /* opticke vycentrovanie ikony prehrania */
}

.video-card:hover .video-play-btn {
    background-color: var(--primary);
    color: white;
    transform: translate(-50%, -50%) scale(1.08);
}

@media (max-width: 768px) {
    .video-card {
        flex: 0 0 220px;
        height: 391px;
    }
}
/* reveal animacia */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* footer */
.footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 70px 0 25px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    color: white;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #94a3b8;
}

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

.footer-contact p {
    color: #94a3b8;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
    color: #64748b;
    font-size: 0.88rem;
}

/* plavajuce tlacidla */
.floating-controls {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 990;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
}

.floating-btn.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top-btn {
    background-color: var(--bg-dark);
}

.scroll-top-btn:hover {
    background-color: #1e3a5f;
}

.scroll-call-btn {
    background-color: var(--primary);
}

.scroll-call-btn:hover {
    background-color: var(--primary-dark);
}

/* modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 43, 72, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    padding: 35px;
    border-radius: 20px;
    max-width: 440px;
    width: 90%;
    position: relative;
    box-shadow: var(--shadow-lg);
    text-align: center;
    transform: scale(0.9);
    transition: var(--transition);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.8rem;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.modal-header h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.modal-header p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.modal-phone-box {
    background-color: var(--bg-light);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    border: 1px dashed var(--border-color);
}

.modal-phone-number {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.modal-phone-box .btn-outline {
    color: var(--bg-dark);
    border-color: var(--border-color);
}

.modal-phone-box .btn-outline:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    color: var(--primary-dark);
}

.modal-whatsapp-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #25d366;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.modal-whatsapp-link:hover {
    color: #1ebe5b;
}

.modal-whatsapp-link i {
    font-size: 1.2rem;
}

.copy-alert {
    display: none;
    background-color: #d1fae5;
    color: #065f46;
    padding: 8px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.copy-alert.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* faq */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #0284c7;
    box-shadow: 0 4px 12px rgba(2, 132, 199, 0.08);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0f172a;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: #64748b;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: #0284c7;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    background-color: #f8fafc;
}

.faq-item.active .faq-answer {
    max-height: 300px; /* dostatočný priestor pre text */
    padding: 1rem 1.5rem 1.25rem 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.faq-answer p {
    margin: 0;
    color: #475569;
    line-height: 1.6;
}

/* responzivita */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 2.4rem;
    }

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

    .reviews-scroll .review-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 25px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        display: none;
        gap: 18px;
    }

    .nav-links.active {
        display: flex;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .reviews-scroll .review-card {
        flex: 0 0 85%;
    }
}