/* Main Stylesheet for QR114 Salaam Stream Website with Enhanced Glass Effects */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Tahoma&display=swap');

:root {
    /* Primary Green Color Theme - Preserved */
    --primary-color: #009933;
    --primary-dark: #006622;
    --primary-light: #33ad66;
    --primary-transparent: rgba(0, 153, 51, 0.1);
    
    /* Text Colors */
    --text-dark: #333;
    --text-light: #777;
    --text-muted: #999;
    
    /* Background Colors */
    --background-light: #f9f9f9;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-medium: #e0e0e0;
    --gray-dark: #666;
    
    /* Shadows */
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-strong: 0 8px 32px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 20px rgba(0, 153, 51, 0.3);
    
    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Enhanced Glass Effect Variables */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-bg-strong: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-border-strong: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --glass-shadow-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
    
    /* Dark Glass for Hero */
    --glass-dark-bg: rgba(0, 102, 34, 0.4);
    --glass-dark-border: rgba(255, 255, 255, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f9f9f9 0%, #eef5ee 50%, #f0f8f0 100%);
    color: var(--text-dark);
    padding-bottom: 80px;
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

html[dir="rtl"] body {
    font-family: 'Tahoma', sans-serif;
}

/* ============================ GLASS EFFECT CLASSES ============================ */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 60px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.glass-effect:hover {
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--glass-shadow-hover);
    border-color: var(--glass-border-strong);
}

.glass-effect-strong {
    background: var(--glass-bg-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border-strong);
    border-radius: 60px;
    box-shadow: var(--glass-shadow);
}

.glass-dark {
    background: var(--glass-dark-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-dark-border);
    border-radius: 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* ============================ 1. HERO SECTION ============================ */
.hero {
    width: 100vw;
    height: 100vh;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* Override global section styles */
    padding: 0 !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.hero .content-container {
    width: calc(100% - 120px);
    height: calc(100% - 100px);
    background: linear-gradient(315deg, #e6e6e6 50%, var(--primary-color) 50%);
    border-radius: 60px;
    display: flex;
    flex-direction: row;
    position: relative;
    z-index: 1;
    overflow: hidden;
    filter: drop-shadow(0 8px 8px rgba(0,0,0,0.2));
}

.hero .left-column {
    flex: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 100px;
}

.hero .right-column {
    flex: 65%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
}

.hero .image-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.hero .right-column .image-wrapper {
    justify-content: flex-end;
}

.hero .content-container img {
    object-fit: contain;
    border-radius: 12px;
}

.hero .left-column img {
    max-height: 200px;
    width: auto;
    max-width: 80%;
}

.hero .right-column img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    animation: gentleFloat 4s ease-in-out infinite;
}

@keyframes gentleFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.hero .hero-features-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.hero .hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600;
    text-align: left;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero .hero-feature-item svg {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 2px rgba(0,0,0,0.2));
}

/* ========== HERO RTL OVERRIDES – FIXED ========== */
html[dir="rtl"] .hero .left-column {
    align-items: flex-start;          /* stays left-aligned inside column */
    padding-left: 100px;
    padding-right: 0;
}

html[dir="rtl"] .hero .left-column .image-wrapper {
    justify-content: flex-end;       /* in RTL, flex-end = left side */
}

html[dir="rtl"] .hero .right-column {
    align-items: flex-end;
    padding-right: 0;
}

html[dir="rtl"] .hero .right-column .image-wrapper {
    justify-content: flex-start;     /* in RTL, flex-start = right side */
}

/* Feature list: right‑align text, icon after text */
html[dir="rtl"] .hero .hero-features-list {
    align-items: flex-end;
}

html[dir="rtl"] .hero .hero-feature-item {
    flex-direction: row-reverse;
    text-align: right;
    justify-content: flex-start;     /* pack content to the right in RTL */
}

html[dir="rtl"] .hero .hero-feature-item svg {
    margin-left: 12px;
    margin-right: 0;
}

html[dir="rtl"] .hero .content-container {
    background: linear-gradient(225deg,var(--primary-color)  50%, #e6e6e6 50%);
    /* 225deg = mirrored version of 315deg – green on left, gray on right */
}

/* ============================ RTL OVERRIDES FOR PACKAGING ============================ */
html[dir="rtl"] .packaging-features {
    text-align: right;
}
html[dir="rtl"] .packaging-features li {
    padding-left: 0;
    padding-right: 30px;
}
html[dir="rtl"] .packaging-features li:before {
    left: auto;
    right: 0;
}

/* ============================ 2. NAVIGATION ============================ */
nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    max-width: 95%;
    width: auto;
    padding: 0 15px;    
}

nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 8px 16px;
    flex-wrap: nowrap;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 60px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 
                0 0 0 1px rgba(0, 153, 51, 0.1);
    width: 100%;
    justify-content: space-between;
    overflow: visible; /* Allow dropdown to be visible */
    white-space: nowrap;
}

nav ul::-webkit-scrollbar {
    display: none;
}

nav ul li {
    margin: 0 5px;
    flex-shrink: 0;
}

nav ul li a {
    text-decoration: none;
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    padding: 10px 12px;
    position: relative;
    display: inline-block;
    white-space: nowrap;
    border-radius: 20px;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transition: var(--transition);
    border-radius: 2px;
}

nav ul li a:hover {
    color: var(--primary-color);
    background: rgba(0, 153, 51, 0.05);
}

nav ul li a:hover:after {
    width: 60%;
}

nav ul li a.active {
    color: var(--primary-color);
    background: rgba(0, 153, 51, 0.1);
}

nav ul li a.active:after {
    width: 60%;
}

/* ============================ LANGUAGE SELECTOR FIXES ============================ */
.language-selector {
    position: relative;
}

.language-selector > a {
    display: flex;
    align-items: center;
    gap: 5px;
    position: relative;
}

.language-selector .fa-chevron-up {
    display: none;
}

.language-selector.open .fa-chevron-down {
    display: none;
}

.language-selector.open .fa-chevron-up {
    display: inline-block;
}

.language-dropdown {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 10px 0;
    list-style: none;
    z-index: 999999;
    min-width: 200px;
    border: 2px solid rgba(0, 153, 51, 0.3);
    max-height: 500px;
    overflow-y: auto;
    margin-bottom: 10px;
}

.language-dropdown.open {
    display: block;
}

.language-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(255, 255, 255, 0.95);
}

.language-dropdown li a {
    padding: 10px 20px;
    color: var(--text-dark);
    font-size: 0.9rem;
    display: block;
    width: 100%;
    text-align: left;
    border-radius: 0;
    transition: var(--transition);
}

.language-dropdown li a:hover {
    background: rgba(0, 153, 51, 0.1);
    color: var(--primary-color);
}

.language-dropdown li a.active {
    background: rgba(0, 153, 51, 0.15);
    color: var(--primary-color);
    font-weight: 600;
}

/* RTL support for language dropdown */
html[dir="rtl"] .language-dropdown li a {
    text-align: right;
}

/* ============================ SECTIONS COMMON STYLES ============================ */
section {
    padding: 100px 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 20px;
    font-size: 2.4rem;
    font-weight: 700;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-color));
    border-radius: 2px;
}

/* ============================ 3. PRODUCT SECTION ============================ */
.product {
    background: linear-gradient(135deg, 
        rgba(249, 249, 249, 0.95) 0%,
        rgba(238, 245, 238, 0.95) 100%);
}

.product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 60px;
    align-items: start;
}

.product-text {
    font-size: 1.1rem;
    line-height: 1.9;
    text-align: left;
    padding: 35px;
    border-radius: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.product-text:hover {
    box-shadow: var(--glass-shadow-hover);
    transform: translateY(-5px);
}

html[dir="rtl"] .product-text {
    text-align: right;
}

.product-text p {
    margin-bottom: 25px;
    color: var(--text-dark);
}

.product-3d {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px;
    border-radius: 60px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
    height: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.product-3d:hover {
    box-shadow: var(--glass-shadow-hover);
}

.product-3d model-viewer {
    width: 100%;
    height: 400px;
    border-radius: 20px;
}

/* ============================ 4. FEATURES GRID ============================ */
.new-features {
    width: 100%;
    margin-top: 80px;
}

.features-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.feature-item {
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    border-radius: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.feature-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--glass-shadow-hover), var(--shadow-glow);
    border-color: rgba(0, 153, 51, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 18px;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 153, 51, 0.1), rgba(0, 153, 51, 0.05));
    border-radius: 50%;
    transition: var(--transition);
    border: 2px solid rgba(0, 153, 51, 0.1);
}

.feature-item:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    transform: rotateY(180deg) scale(1.1);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(0, 153, 51, 0.3);
}

.feature-item h3 {
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-size: 1.15rem;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================ 5. PRODUCT GALLERY - FIXED ============================ */
.product-gallery {
    width: 100%;
    margin-top: 80px;
    /*padding: 0 20px !important;*/
}

.carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 60px;
    padding: 10px;
    background: transparent;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 10px;
    transition: transform 0.3s ease;
    width: 50%; /* 2 slides on desktop */
}

.carousel-slide img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 50px;
    display: block;
    transition: transform 0.3s ease;
}

.carousel-slide:hover img {
    transform: scale(1.03);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    gap: 12px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.carousel-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.carousel-indicator:hover {
    background: var(--primary-light);
    transform: scale(1.2);
}

.carousel-indicator.active {
    background: var(--primary-color);
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

/* Ensure proper RTL behavior */
html[dir="rtl"] .carousel-track {
    direction: ltr;
}

/* Disable transitions when jumping */
.carousel-track.no-transition {
    transition: none !important;
}

/* ============================ 6. SPECIFICATIONS SECTION ============================ */
.specs {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(245, 255, 245, 0.95) 100%);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.spec-card {
    padding: 35px;
    border-radius: 50px;
    height: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.spec-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--glass-shadow-hover);
}

.spec-card h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 600;
}

.spec-card h3 i {
    margin-right: 12px;
    font-size: 1.3rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 153, 51, 0.1);
    border-radius: 60px;
}

.spec-list {
    list-style-type: none;
}

.spec-list li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.spec-list li:hover {
    background: rgba(0, 153, 51, 0.05);
    padding-left: 12px;
    padding-right: 12px;
    border-radius: 60px;
    margin: 0 -12px;
}

.spec-list li:last-child {
    border-bottom: none;
}

.spec-name {
    font-weight: 600;
    color: var(--text-dark);
    flex: 1;
}

.spec-value {
    color: var(--primary-color);
    font-weight: 500;
    text-align: right;
    flex: 1;
}

/* ============================ 7. APP SECTION ============================ */
.app-section {
    background: linear-gradient(135deg, 
        rgba(249, 249, 249, 0.95) 0%,
        rgba(238, 245, 238, 0.95) 100%);
}

.app-content {
    display: grid;
    grid-template-rows: auto auto auto;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.app-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.app-features-grid .app-feature {
    padding: 25px;
    border-radius: 60px;
    transition: var(--transition);
    display: flex;
    align-items: flex-start;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    min-height: 130px;
}

.app-features-grid .app-feature:hover {
    transform: translateX(8px);
    box-shadow: var(--glass-shadow-hover);
    border-color: rgba(0, 153, 51, 0.2);
}

.app-features-grid .app-feature i {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-right: 18px;
    margin-top: 5px;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 153, 51, 0.1), rgba(0, 153, 51, 0.05));
    border-radius: 60px;
    transition: var(--transition);
}

.app-features-grid .app-feature:hover i {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    transform: scale(1.1);
}

.app-features-grid .app-feature div {
    flex: 1;
}

.app-features-grid .app-feature h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-weight: 600;
}

.app-features-grid .app-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.app-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
    margin-top: 20px;
}

.app-image, .app-qr {
    display: flex;
    flex-direction: column;
    border-radius: 60px;
    padding: 35px;
    height: 100%;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.app-image:hover, .app-qr:hover {
    box-shadow: var(--glass-shadow-hover);
}

.app-image-content, .app-qr-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.app-image img {
    max-width: 100%;
    max-height: 600px;
    object-fit: contain;
    border-radius: 16px;
    transition: var(--transition);
}

.app-image img:hover {
    transform: translateY(-8px);
}

.app-qr img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 20px;
    transition: var(--transition);
}

.app-qr img:hover {
    transform: scale(1.05);
}

.subscription-plans {
    width: 70%;
    margin: 0px auto;
}

.plan {
    padding: 14px;
    margin: 10px 0;
    background: linear-gradient(135deg, rgba(0, 153, 51, 0.08), rgba(0, 153, 51, 0.03));
    border-radius: 60px;
    transition: var(--transition);
    border: 1px solid rgba(0, 153, 51, 0.1);
    text-align: center;
}

.plan:hover {
    background: linear-gradient(135deg, rgba(0, 153, 51, 0.12), rgba(0, 153, 51, 0.06));
    transform: translateX(8px);
    border-color: rgba(0, 153, 51, 0.2);
}

.plan h5 {
    color: var(--primary-color);
    margin-bottom: 6px;
    font-size: 1.05rem;
    font-weight: 600;
}

.plan p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ============================ 8. PACKAGING SECTION ============================ */
.packaging {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(245, 255, 245, 0.95) 100%);
}

.packaging-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.packaging-item {
    padding: 35px;
    text-align: center;
    border-radius: 60px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.packaging-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--glass-shadow-hover);
    border-color: rgba(0, 153, 51, 0.2);
}

.packaging-image {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.packaging-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 16px;
    transition: var(--transition);
}

.packaging-item:hover .packaging-image img {
    transform: scale(1.05);
}

.packaging-item h3 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.packaging-item p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.packaging-features {
    list-style: none;
    text-align: left;
    width: 100%;
    margin-top: 20px;
}

.packaging-features li {
    padding: 10px 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 30px;
    transition: var(--transition);
}

.packaging-features li:hover {
    color: var(--primary-color);
    padding-left: 35px;
}

.packaging-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 153, 51, 0.1);
    border-radius: 50%;
}

/* ============================ 9. WHAT'S IN THE BOX ============================ */
.whats-in-box {
    background: linear-gradient(135deg, 
        rgba(249, 249, 249, 0.95) 0%,
        rgba(238, 245, 238, 0.95) 100%);
}

.box-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.box-item {
    padding: 25px;
    text-align: center;
    border-radius: 60px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    min-height: 220px;
}

.box-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--glass-shadow-hover);
    border-color: rgba(0, 153, 51, 0.2);
}

.box-image {
    width: 100%;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.box-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

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

.box-item h3 {
    font-size: 1.05rem;
    color: var(--primary-dark);
    margin-top: 10px;
    font-weight: 600;
    line-height: 1.4;
}

.box-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 8px;
    line-height: 1.4;
}

/* ============================ 10. CERTIFICATIONS ============================ */
.certificates {
    background: linear-gradient(135deg, 
        rgba(249, 249, 249, 0.95) 0%,
        rgba(238, 245, 238, 0.95) 100%);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.certificate-item {
    padding: 20px 15px;
    text-align: center;
    border-radius: 60px;
    transition: var(--transition);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    min-height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.certificate-item:hover {
    transform: scale(1.08);
    box-shadow: var(--glass-shadow-hover);
    border-color: rgba(0, 153, 51, 0.2);
}

.certificate-image {
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    border-radius: 16px;
    overflow: hidden;
    padding: 12px;
    background: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.certificate-item:hover .certificate-image {
    background: rgba(0, 153, 51, 0.1);
}

.certificate-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

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

.certificate-item h3 {
    font-size: 0.8rem;
    color: var(--primary-dark);
    font-weight: 600;
    line-height: 1.3;
    margin-top: 8px;
}

/* ============================ 11. FAQ SECTION ============================ */
.faq {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(245, 255, 245, 0.95) 100%);
}

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

.faq-item {
    margin-bottom: 18px;
    border-radius: 60px;
    overflow: hidden;
    transition: var(--transition);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.faq-item:hover {
    box-shadow: var(--glass-shadow-hover);
}

.faq-question {
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: var(--transition);
    background: transparent;
    border: none;
    color: var(--text-dark);
}

.faq-question:hover {
    background: rgba(0, 153, 51, 0.05);
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 153, 51, 0.1);
    border-radius: 50%;
}

.faq-answer {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    color: var(--text-light);
    line-height: 1.7;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
}

.faq-item.active .faq-answer {
    padding: 24px 28px;
    max-height: 1000px;
}

.faq-answer h3 {
    color: var(--primary-color);
    margin: 20px 0 10px;
    font-size: 1.1rem;
}

/* ============================ 12. FOOTER ============================ */
footer {
    padding: 50px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
    gap: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

footer img {
    max-width: 160px;
    height: auto;
    border-radius: 8px;
    position: relative;
    z-index: 1;
}

.footer-text {
    flex: 1;
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-text p {
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

footer a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
    position: relative;
}

footer a:hover {
    color: #ffd700;
    border-bottom-color: #ffd700;
}

.social-links {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    gap: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ============================ DISCLAIMER ============================ */
.disclaimer {
    background: var(--gray-light);
    padding: 30px 20px;
    font-size: 0.75rem;
    line-height: 1.7;
    max-height: 100%;
    overflow-y: auto;
    width: 100%;
    margin: 0;
    text-align: left;
    color: var(--text-light);
}

html[dir="rtl"] .disclaimer {
    text-align: right;
}

.disclaimer-container {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer h2 {
    margin-top: 25px;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 600;
}

.disclaimer h3 {
    margin-top: 18px;
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.disclaimer h4 {
    margin-top: 12px;
    font-size: 0.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

.disclaimer ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

html[dir="rtl"] .disclaimer ul {
    margin-left: 0;
    margin-right: 25px;
}

.disclaimer li {
    margin-bottom: 8px;
}

.disclaimer strong {
    color: var(--text-dark);
}

/* ============================ BACK TO TOP ============================ */
.back-to-top {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: 0 8px 25px rgba(0, 153, 51, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 153, 51, 0.5);
}

/* ============================ MODAL ============================ */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.modal-content {
    background: var(--glass-bg-strong);
    padding: 40px;
    border-radius: 24px;
    width: 90%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border-strong);
    animation: modalSlideIn 0.4s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-content h3 {
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-content input,
.modal-content textarea {
    width: 100%;
    padding: 14px 18px;
    margin: 12px 0;
    border: 2px solid var(--gray-medium);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
}

html[dir="rtl"] .modal-content input,
html[dir="rtl"] .modal-content textarea {
    text-align: right;
}

.modal-content input:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 153, 51, 0.15);
    background: white;
}

.modal-content button {
    padding: 14px 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    width: 100%;
    transition: var(--transition);
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(0, 153, 51, 0.3);
}

.modal-content button:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 153, 51, 0.4);
}

.close {
    position: absolute;
    top: 18px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

html[dir="rtl"] .close {
    right: auto;
    left: 20px;
}

.close:hover {
    color: var(--primary-color);
    background: rgba(0, 153, 51, 0.1);
}

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

.form-message {
    font-size: 0.9rem;
    margin-top: 8px;
    display: none;
    padding: 8px 12px;
    border-radius: 8px;
}

.form-message.error {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
    display: block;
}

.form-message.success {
    color: var(--primary-color);
    background: rgba(0, 153, 51, 0.1);
    display: block;
}

.modal.active {
    display: flex;
}

/* ============================ MOBILE HAMBURGER MENU ============================ */
.mobile-hamburger {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
  padding: 12px 24px;
  border-radius: 60px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 
              0 0 0 1px rgba(0, 153, 51, 0.1);
  cursor: pointer;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.mobile-hamburger:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(-50%) scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 24px;
}

.hamburger-icon span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--primary-color);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-hamburger span {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.95rem;
}

.mobile-hamburger.active .hamburger-icon span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-hamburger.active .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.mobile-hamburger.active .hamburger-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu-content {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  max-height: 85vh;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 40px 40px 0 0;
  padding: 25px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateY(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 153, 51, 0.1);
}

.mobile-logo {
  width: 100px;
  height: auto;
}

.mobile-menu-close {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(0, 153, 51, 0.1);
  border: none;
  color: var(--primary-color);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.mobile-menu-close:hover {
  background: var(--primary-color);
  color: white;
  transform: rotate(90deg);
}

.mobile-menu-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.mobile-menu-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
  border: 1px solid rgba(0, 153, 51, 0.1);
}

.mobile-menu-item:hover {
  background: rgba(0, 153, 51, 0.1);
  color: var(--primary-color);
  transform: translateX(5px);
  border-color: rgba(0, 153, 51, 0.3);
}

.mobile-menu-item i {
  width: 24px;
  font-size: 1.1rem;
  color: var(--primary-color);
}

.mobile-language-section {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 153, 51, 0.1);
}

.mobile-language-section h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.1rem;
  text-align: center;
}

.mobile-language-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mobile-language-btn {
  padding: 12px 8px;
  background: rgba(0, 153, 51, 0.08);
  border: 1px solid rgba(0, 153, 51, 0.15);
  border-radius: 12px;
  color: var(--text-dark);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  font-family: inherit;
}

.mobile-language-btn:hover {
  background: rgba(0, 153, 51, 0.15);
  color: var(--primary-color);
  transform: translateY(-2px);
  border-color: var(--primary-color);
}

.mobile-language-btn.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  font-weight: 600;
}

.mobile-menu-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 153, 51, 0.1);
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

.mobile-menu-footer p {
  margin: 5px 0;
}

/* ============================ RESPONSIVE DESIGN ============================ */
@media (max-width: 1200px) {
    .certificates-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 18px;
    }
    
    .box-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, auto);
    }
    
    .features-grid-4col {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, auto);
    }
    
    .app-features-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.9rem;
    }
    
    /* ========== HERO MOBILE OVERRIDES ========== */
    .hero .content-container {
        width: 100%;
        height: 100%;
        margin: 0;
        border-radius: 0;
        flex-direction: column;
    }

    .hero .left-column {
        justify-content: flex-start;
        align-items: center;
        padding-left: 0;
        padding-top: 50px;
        flex: 0.5;
    }

    .hero .right-column {
        justify-content: flex-start;
        align-items: center;
        padding-right: 20px;
        padding-left: 20px;
        padding-bottom: 20px;
        flex: 0.5;
    }

    .hero .image-wrapper,
    .hero .right-column .image-wrapper {
        justify-content: center;
    }

    .hero .left-column img {
        max-height: 80px;
        max-width: 80%;
    }

    .hero .right-column img {
        max-width: 100%;
        max-height: 30vh;
    }

    .hero .hero-features-list {
        align-items: center;
        margin-top: 30px;
        padding: 0 20px;
        width: 100%;
    }

    .hero .hero-feature-item {
        text-align: center;
        font-size: 16px;
        justify-content: center;
        width: 100%;
    }

    .product-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid-4col {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, auto);
        gap: 18px;
    }
    
    .box-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(8, auto);
        gap: 18px;
    }
    
    .certificates-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 15px;
    }
    
    .app-bottom-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .app-features-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto);
    }
    
    /* Hide desktop navigation on mobile */
    nav {
        display: none !important;
    }
    
    /* Show mobile hamburger menu */
    .mobile-hamburger {
        display: flex;
    }
    
    /* Carousel mobile fix - 1 slide */
    .carousel-slide {
        width: 100% !important;
    }
    
    .carousel-slide img {
        height: 400px;
    }
    
    .back-to-top {
        bottom: 90px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .mobile-language-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    section {
        padding: 70px 15px;
    }
    
    .section-title {
        font-size: 1.7rem;
        margin-bottom: 45px;
    }
    
    .certificates-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, auto);
        gap: 12px;
    }
    
    .certificate-item {
        padding: 15px 10px;
        min-height: 140px;
    }
    
    .certificate-image {
        width: 65px;
        height: 65px;
    }
    
    .certificate-item h3 {
        font-size: 0.75rem;
    }
    
    .mobile-hamburger {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .mobile-language-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-menu-content {
        padding: 20px;
    }
    
    .mobile-menu-item {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .back-to-top {
        bottom: 80px;
        right: 12px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    footer {
        flex-direction: column;
        gap: 25px;
        padding: 35px 15px;
    }
    
    footer img {
        max-width: 130px;
    }
    
    .packaging-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 18px 20px;
    }

    .carousel-slide img {
        height: 450px;
    }
}

@media (max-width: 380px) {
    nav ul li a {
        font-size: 0.65rem;
        padding: 5px 6px;
    }
    
    nav ul {
        padding: 4px 8px;
    }
    
    .language-selector a {
        padding: 5px 6px !important;
    }
    
    .carousel-slide img {
        height: 350px;
    }
}