/* Основні змінні кольорів */
:root {
    --nwg-green: #4CAF50;
    --nwg-dark-green: #2E7D32;
    --nwg-blue: #1A237E;
    --light-bg: #f4f7f6;
    --white: #ffffff;
}

/* Глобальні налаштування */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--nwg-blue);
}

.logo span {
    color: var(--nwg-green);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li a {
    text-decoration: none;
    color: var(--nwg-blue);
    margin: 0 15px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: var(--nwg-green);
}

.btn-nav {
    background: var(--nwg-green);
    color: white !important;
    padding: 10px 20px;
    border-radius: 5px;
}

#home {
    position: relative;
    height: 100vh; /* На всю висоту екрана */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    /* ... інші твої стилі (height, display, etc.) ... */
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                      url('../img/hero-bg.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Це той самий ефект паралаксу */
    
    color: #ffffff;
    padding: 0 20px;
}

/* Якщо всередині є заголовки, додамо їм трохи тіні для чіткості */
#home h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}

#home p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px auto;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

/* Адаптація для мобільних */
@media (max-width: 768px) {
    #home {
        background-attachment: scroll; /* На айфонах паралакс іноді глючить, тому вимикаємо */
        height: auto;
        padding: 100px 20px;
    }
    #home h1 { font-size: 2.2rem; }
}

/* Grid & Cards */
.services {
    padding: 100px 0;
    background: var(--light-bg);
    text-align: center;
}

.grid {
    display: flex;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.card {
    flex: 1;
    background: white;
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    min-width: 300px;
}

/* Контейнер для кнопки */
.cta-wrapper {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
}

.cta-text {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--nwg-blue);
}

/* Стиль самої кнопки */
.btn-whatsapp-inline {
    display: inline-flex;
    align-items: center;
    background-color: #25D366; /* Фірмовий колір WhatsApp */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.btn-whatsapp-inline span {
    font-size: 1.4rem;
    margin-right: 10px;
}

/* Ефект при наведенні */
.btn-whatsapp-inline:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Маленька анімація пульсації, щоб кнопку помітили */
@keyframes pulse-green {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn-whatsapp-inline {
    animation: pulse-green 3s infinite ease-in-out;
}

.icon {
    font-size: 40px;
    margin-bottom: 20px;
}
.promo-box {
    display: flex;
    flex-wrap: wrap; /* Щоб на мобілках ставало один під одного */
    max-width: 1000px;
    margin: 60px auto;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    align-items: stretch; /* Розтягує контент по висоті */
}

.promo-img-wrapper {
    flex: 1.2; /* Картинка трохи ширша за текст */
    min-width: 300px;
    background: #f0f0f0; /* Сірий фон, поки картинка вантажиться */
}

.promo-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Картинка буде повністю видимою, не обрізаною */
    display: block;
}

.promo-text {
    flex: 1;
    padding: 40px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Центрує весь блок по вертикалі */
}

.promo-badge {
    background: #ff5252;
    color: #fff;
    padding: 6px 16px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 4px;
    
    /* Центруємо саме цей елемент */
    align-self: center; 
    margin-bottom: 15px;
}

.promo-text h3 {
    font-size: 24px;
    color: var(--nwg-blue);
    margin-bottom: 20px;
    
    /* Центруємо заголовок */
    text-align: center; 
    width: 100%;
}

.promo-description {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    
    /* Текст займає всю ширину і вирівнюється по лівому краю або по ширині */
    text-align: left; 
    width: 100%;
    margin-top: 10px;
}

/* На мобілках */
@media (max-width: 768px) {
    .promo-box {
        margin: 20px;
    }
    .promo-text {
        padding: 30px 20px;
    }
}
}
.whatsapp-container {
    text-align: center;
    margin: 40px auto;
    max-width: 450px;
}

.prep-info {
    background: #f0fdf4; /* Світло-зелений, колір довіри */
    border: 1px dashed #25D366;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.prep-info h4 {
    font-size: 16px;
    color: #166534;
    margin-bottom: 8px;
}

.prep-info ul {
    list-style: none;
    padding: 0;
    font-size: 14px;
    color: #374151;
}

.btn-whatsapp-dynamic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    padding: 18px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: 0.3s;
    width: 100%; /* На мобільних буде на всю ширину */
}

.btn-whatsapp-dynamic:hover {
    background-color: #128C7E;
    transform: scale(1.02);
}

.icon-cam {
    margin-right: 12px;
    font-size: 1.4rem;
}

.privacy-note {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 10px;
    font-style: italic;
}
/* WhatsApp Button */
.btn-whatsapp {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 30px;
}

.contact {
    padding: 100px 0;
    text-align: center;
    background: var(--white);
}

footer {
    text-align: center;
    padding: 40px;
    background: var(--nwg-blue);
    color: white;
}
.technical-choice {
    padding: 70px 0;
    background-color: #1a202c; /* Темний, "айтішний" колір */
    color: #ffffff;
}

.tech-grid {
    display: flex;
    justify-content: center;
}

.tech-content {
    max-width: 800px;
    text-align: center;
}

.tech-label {
    color: #25D366; /* Зелений акцент */
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.tech-content h2 {
    font-size: 32px;
    margin: 20px 0;
    color: #fff;
}

.tech-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #cbd5e0; /* Світло-сірий текст */
    margin-bottom: 25px;
}

.tech-features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.f-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 8px;
    border: 1px solid rgba(37, 211, 102, 0.3);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.f-item span {
    color: #fff;
}

/* модуль інфлуенсер */
.influencer-green {
    padding: 60px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%); /* Плавний зелений градієнт */
}

.ig-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(22, 101, 52, 0.1);
    text-align: center;
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.ig-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #25D366;
    color: white;
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 12px;
}

.ig-card h2 {
    color: #166534;
    font-size: 28px;
    margin-bottom: 10px;
}

.ig-subtitle {
    color: #4b5563;
    font-size: 18px;
    margin-bottom: 30px;
}

.ig-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    text-align: left;
    margin-bottom: 30px;
}

.ig-item {
    background: #f9fafb;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s;
}

.ig-item:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.ig-icon {
    font-size: 30px;
    display: block;
    margin-bottom: 10px;
}

.ig-item p {
    font-size: 14px;
    color: #374151;
    line-height: 1.4;
}

.ig-callout {
    font-weight: bold;
    color: #166534;
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
    font-size: 16px;
}

/* Мобільна адаптація */
@media (max-width: 600px) {
    .ig-features {
        grid-template-columns: 1fr;
    }
}

.influencer-section {
    padding: 80px 0;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.ig-header {
    text-align: center;
    margin-bottom: 50px;
}

.tech-tag {
    background: #dcfce7;
    color: #166534;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.ig-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.ig-step-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.ig-step-card:hover {
    transform: translateY(-5px);
}

.step-num {
    font-size: 48px;
    font-weight: 900;
    color: rgba(37, 211, 102, 0.1);
    position: absolute;
    top: 10px;
    right: 20px;
}

.ig-step-card h3 {
    color: var(--nwg-blue);
    margin-bottom: 15px;
    font-size: 20px;
}

.ig-footer-call {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #25D366;
}

.btn-secondary {
    display: inline-block;
    margin-top: 15px;
    color: #25D366;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 2px solid #25D366;
}
/* --- СТИЛІ ДЛЯ БЛОКУ FAQ --- */
.faq-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    color: #1a365d; /* Твій nwg-blue */
    font-size: 32px;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    color: #718096;
    margin-bottom: 40px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    background: #fff;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f7fafc;
}

/* Символ + / - */
.faq-question span {
    font-size: 24px;
    color: #25D366;
    transition: transform 0.3s ease;
    display: inline-block;
}

.faq-answer {
    max-height: 0; /* Початково сховано */
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease;
    background-color: #f8fafc;
}

.faq-answer p {
    padding: 0 25px 25px 25px;
    margin: 0;
    color: #4a5568;
    line-height: 1.6;
}

/* КЛАС, ЯКИЙ ДОДАЄТЬСЯ ЧЕРЕЗ JS ПРИ КЛІКУ */
.faq-item.active .faq-answer {
    max-height: 300px; /* Достатньо для тексту */
}

.faq-item.active .faq-question {
    color: #25D366;
    background-color: #f0fff4;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg); /* Плюс стає хрестиком */
    color: #ff5252;
}

.solar-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.solar-grid {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.solar-content {
    flex: 1.5;
    min-width: 300px;
}

.solar-content h2 {
    font-size: 36px;
    color: var(--nwg-blue);
    margin: 15px 0;
}

.tech-specs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 30px 0;
}

.spec-card {
    padding: 20px;
    background: #f8fafc;
    border-left: 4px solid var(--nwg-blue);
    border-radius: 0 10px 10px 0;
    transition: 0.3s;
}

.spec-card:hover {
    background: #edf2f7;
    transform: translateX(10px);
}

.spec-card h4 {
    margin-bottom: 8px;
    color: #2d3748;
}

.solar-image {
    flex: 1;
    min-width: 300px;
}

.solar-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.btn-solar {
    display: inline-block;
    padding: 15px 35px;
    background: var(--nwg-blue);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-solar:hover {
    background: #25D366;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
    .solar-grid {
        flex-direction: column-reverse;
    }
}

.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-sticky img {
    width: 35px;
    height: 35px;
}

.whatsapp-sticky:hover {
    transform: scale(1.1);
}

/* Підказка (Tooltip) */
.tooltip-text {
    visibility: hidden;
    width: 180px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    z-index: 1;
    right: 75px; /* Зліва від кнопки */
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s;
}

.whatsapp-sticky:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* На мобільних ховаємо підказку, щоб не заважала */
@media (max-width: 768px) {
    .tooltip-text { display: none; }
    .whatsapp-sticky { bottom: 20px; right: 20px; width: 50px; height: 50px; }
}

.stability-section {
    padding: 90px 0;
    background-color: #fff;
}

.stability-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.brand-history {
    flex: 1.2;
    min-width: 320px;
}

.brand-stats {
    display: flex;
    gap: 25px;
    margin-top: 30px;
    border-top: 1px solid #edf2f7;
    padding-top: 25px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item strong {
    font-size: 24px;
    color: #25D366;
}

.stat-item span {
    font-size: 13px;
    color: #718096;
    text-transform: uppercase;
}

.guarantee-specs {
    flex: 0.8;
    background: #f1f5f9;
    padding: 40px;
    border-radius: 24px;
    min-width: 320px;
}

.g-levels {
    margin: 25px 0;
}

.g-level-item {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 15px;
    border-left: 5px solid #1a365d;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.g-level-item.secondary {
    border-left-color: #718096;
}

.g-header {
    font-size: 18px;
    color: #1a365d;
    margin-bottom: 5px;
}

.g-note {
    font-size: 13px;
    color: #4a5568;
    font-style: italic;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .stability-grid { flex-direction: column; }
}

.solar-header { text-align: center; margin-bottom: 50px; }

.solar-comparison {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.solar-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 40px 30px;
    border-radius: 20px;
    flex: 1;
    min-width: 300px;
    max-width: 400px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.solar-card.elite {
    border: 2px solid #1a365d;
    background: linear-gradient(to bottom, #ffffff, #f0f7ff);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #718096;
    color: white;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.card-badge.gold { background: #1a365d; }

.g-circle-small {
    width: 80px;
    height: 80px;
    border: 3px solid #25D366;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px auto;
    font-size: 24px;
    font-weight: bold;
    color: #1a365d;
}

.g-circle-small span { font-size: 10px; text-transform: uppercase; }

.card-specs {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.card-specs li { margin-bottom: 10px; font-size: 15px; color: #4a5568; }

.solar-footer { text-align: center; max-width: 700px; margin: 0 auto; }

/* --- СТИЛІ ДЛЯ ОФЕРТИ SOLAR BOOST+ --- */
.offer-panel {
    padding: 60px 0;
    background-color: #fff;
}

.offer-box {
    display: flex;
    align-items: stretch; /* Робить картинку і текст однаковими за висотою */
    background: #f0fff4;
    border: 2px solid #25D366;
    border-radius: 20px;
    overflow: hidden; /* Щоб картинка не вилазила за заокруглені кути */
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

/* Контейнер для фото */
.offer-image {
    flex: 1;
    min-height: 350px;
    position: relative;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Картинка заповнює весь блок без деформації */
    display: block;
}

/* Контейнер для тексту */
.offer-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.offer-badge {
    background: #ff5252;
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
    width: fit-content;
}

.offer-content h2 {
    color: #1a365d;
    font-size: 28px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.offer-text p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.6;
}

.offer-meta {
    margin: 20px 0;
    padding: 10px 0;
    border-top: 1px solid #d1fae5;
}

.validity {
    color: #2d3748;
    font-size: 16px;
}

.btn-offer {
    display: inline-block;
    background: #25D366;
    color: white;
    text-align: center;
    padding: 15px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-offer:hover {
    background: #1eb956;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Адаптація для телефонів */
@media (max-width: 768px) {
    .offer-box {
        flex-direction: column; /* Картинка зверху, текст знизу */
    }
    
    .offer-image {
        min-height: 250px;
    }
    
    .offer-content {
        padding: 30px 20px;
        text-align: center;
    }

    .offer-badge {
        margin: 0 auto 15px auto;
    }
}

@media (max-width: 768px) {
    /* Робимо меню вертикальним, щоб пункти не лізли один на одного */
    nav ul {
        display: flex;
        flex-direction: column; 
        align-items: center;
        padding: 0;
    }

    nav ul li {
        margin: 10px 0; /* Додаємо відступи між кнопками */
    }

    /* Зменшуємо логотип, щоб він не займав пів екрана */
    .logo {
        font-size: 1.5rem;
        text-align: center;
        display: block;
    }

    /* Головний блок (Hero) теж підправимо */
    .hero-content h1 {
        font-size: 1.8rem; /* Зменшуємо шрифт заголовка */
        line-height: 1.2;
    }
}

/* Стилі для самого бургера (три палички) */
.burger {
    display: none; /* Спочатку ховаємо */
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #25D366; /* Твій фірмовий зелений */
    margin: 5px;
    transition: all 0.3s ease;
}

/* Основний стиль набару для комп'ютера */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: relative;
    z-index: 100;
    background: #ffffff; /* Переконайся, що фон є, щоб лого не прозорилося */
}

/* Мобільна адаптація */
@media (max-width: 768px) {
    .burger {
        display: block; 
        z-index: 102; /* Вище за всі меню */
        cursor: pointer;
    }

    .nav-links {
        position: fixed; /* Меню "плаває" над контентом */
        right: 0;
        top: 0;
        height: 100vh; /* На весь екран */
        width: 70%; 
        background-color: #1a365d; 
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateX(100%); /* Сховано праворуч */
        transition: transform 0.4s ease-in-out;
        z-index: 101; 
        margin: 0;
        padding: 0;
        list-style: none; /* Прибираємо крапки списку */
    }

    /* Показуємо меню, коли воно активне */
    .nav-links.nav-active {
        transform: translateX(0%);
    }

    .nav-links li {
        margin: 20px 0;
        width: 100%; /* Щоб клік був зручнішим */
        text-align: center;
    }

    .nav-links a {
        color: white !important; /* Примусово білий колір */
        font-size: 1.4rem;
        text-decoration: none;
        display: block;
    }

    /* Кнопка WhatsApp всередині мобільного меню */
    .btn-nav {
        background-color: #25D366 !important;
        color: white !important;
        padding: 12px 25px !important;
        border-radius: 30px;
        display: inline-block !important;
        margin-top: 10px;
    }
}