/*
 * Theme Name: Abazov Padel
 * Description: Custom theme for Alex Abazov Padel Coach
 * Author: Gemini
 * Version: 1.2
 */

/* =========================================
   Reset & Variables
   ========================================= */
:root {
    --primary-color: #00b33c; /* Bright Green */
    --primary-hover: #009933;
    --text-color: #333333;
    --text-light: #666666;
    --heading-color: #000000;
    --bg-light: #ffffff;
    --bg-off-white: #f8f9fa;
    --bg-dark: #1a1f2c;
    --glass-bg: rgba(26, 31, 44, 0.75); /* Dark semi-transparent for glass */
    --glass-border: rgba(255, 255, 255, 0.1);
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --radius-md: 12px;
    --radius-lg: 20px;
    --container-width: 1200px;
    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

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

body.menu-open {
    overflow: hidden;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    margin-top: 0;
    margin-bottom: 1rem;
    font-weight: 700;
}

h2.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

p.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.text-center { text-align: center; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 179, 60, 0.3);
}

.btn-outline {
    background-color: transparent;
    border-color: white;
    color: white;
}

.btn-outline:hover {
    background-color: white;
    color: black;
}

.btn-outline-dark {
    background-color: transparent;
    border-color: var(--heading-color);
    color: var(--heading-color);
}

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

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.full-width {
    width: 100%;
}

/* =========================================
   Header (Glassmorphism)
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    transition: all 0.4s ease;
}

/* Liquid Glass Style */
.site-header.scrolled {
    background: var(--glass-bg);
    padding: 15px 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu li a {
    color: white;
    font-weight: 500;
    position: relative;
    padding-bottom: 2px;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease-out;
}

.nav-menu li a:hover::after {
    width: 100%;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
    direction: ltr;
}

.lang-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: 0.3s;
}

.lang-link:hover,
.lang-link.active {
    background: #ffffff;
    color: #111111;
    border-color: #ffffff;
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.mobile-menu-toggle.active span:first-child { transform: rotate(45deg); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(20px); }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg); }

/* =========================================
   ANIMATIONS (Scroll Reveal)
   ========================================= */
/* Initial state: hidden and moved down */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

/* Final state: visible and in place */
.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grids */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* =========================================
   Hero Section
   ========================================= */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 60px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* =========================================
   About Section
   ========================================= */
.about-image-wrapper {
    position: relative;
}

.about-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
}

.about-description p {
    margin-bottom: 16px;
    color: var(--text-color);
}

.about-description p:last-child {
    margin-bottom: 0;
}

.achievements-box {
    margin-top: 24px;
    padding: 20px 22px;
    background: #f3fbf6;
    border: 1px solid rgba(0, 179, 60, 0.18);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.achievements-box h3 {
    margin: 0 0 12px;
    font-size: 1.1rem;
}

.stat-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    z-index: 5;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    opacity: 0.9;
}

.check-list {
    margin-top: 20px;
}

.check-list li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.rounded-img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.why-text p {
    margin-bottom: 16px;
}

.why-text p:last-child {
    margin-bottom: 0;
}

/* =========================================
   Features Section
   ========================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* =========================================
   Services Section
   ========================================= */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
}

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

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.pricing-card.popular:hover {
    transform: scale(1.08); /* Slight lift on hover */
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.card-desc {
    color: var(--text-light);
    margin-bottom: 18px;
}

.price-note {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.price .period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

.pricing-card .btn {
    margin-top: 20px;
}

.check-list-green li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.check-list-green li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* =========================================
   Gallery
   ========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 18px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    background: #ffffff;
    color: var(--text-color);
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 179, 60, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.5s;
    filter: grayscale(20%);
}

.gallery-item:hover img {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.03);
}

.gallery-cta {
    margin-top: 10px;
    padding: 28px 32px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.gallery-cta h3 {
    margin-bottom: 10px;
}

.gallery-cta p {
    margin: 0;
    color: var(--text-light);
}

/* Gallery: Video items */
.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-video-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-video-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    filter: grayscale(20%);
}

.gallery-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.5s;
    filter: grayscale(20%);
}

.gallery-item--video:hover .gallery-video-wrapper img,
.gallery-item--video:hover .gallery-video-wrapper video {
    filter: grayscale(0%);
    transform: scale(1.03);
}

/* Gallery: hidden items for filter */
.gallery-item.gallery-hidden {
    display: none;
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox[aria-hidden="false"] {
    display: flex;
}

.gallery-lightbox__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.gallery-lightbox__content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox__media {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox__media img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    object-fit: contain;
}

.gallery-lightbox__media video {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
    background: #000;
}

.gallery-lightbox__close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    padding: 4px 12px;
    line-height: 1;
    transition: opacity 0.3s;
    z-index: 2;
}

.gallery-lightbox__close:hover {
    opacity: 0.7;
}

/* =========================================
   Contact & Footer
   ========================================= */
.contact-grid {
    align-items: start;
}

.contact-info-card, .contact-form-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.contact-info-card,
.contact-form-card {
    position: relative;
    overflow: hidden;
}

.contact-info-card::before,
.contact-form-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--primary-color), #39d676);
}

.contact-info-card h3,
.contact-form-card h3 {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    transition: background-color 0.3s ease;
}

.contact-item + .contact-item { margin-top: 6px; }

.contact-item:hover {
    background-color: #f3fbf6;
}

.contact-item .icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 179, 60, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex: 0 0 auto;
}

.contact-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--heading-color);
    margin-bottom: 2px;
}

.contact-item a,
.contact-item .contact-value {
    display: block;
    color: var(--text-color);
    line-height: 1.35;
}

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

.styled-form .form-group {
    margin-bottom: 16px;
}

.styled-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--heading-color);
}

.styled-form input,
.styled-form textarea {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 1rem;
    font-family: inherit;
    background: #f7f8fa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.styled-form input:focus,
.styled-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 179, 60, 0.15);
    outline: none;
    background: #ffffff;
}

.styled-form textarea {
    min-height: 140px;
    resize: vertical;
}

.styled-form input::placeholder,
.styled-form textarea::placeholder {
    color: #9aa0a6;
}

/* =========================================
   Lead Modal
   ========================================= */
body.modal-open {
    overflow: hidden;
}

.lead-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 2000;
    padding: 20px;
}

.lead-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lead-modal__dialog {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 34px;
    width: min(520px, 100%);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.lead-modal.is-open .lead-modal__dialog {
    transform: translateY(0);
}

.lead-modal__dialog::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--primary-color), #39d676);
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
}

.lead-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background: #f7f8fa;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lead-modal__close:hover {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.2);
    transform: rotate(6deg);
}

.lead-modal__dialog h3 {
    margin: 0 0 6px;
    font-size: 1.4rem;
}

.lead-modal__subtitle {
    margin: 6px 0 20px;
    color: var(--text-light);
}

.lead-form .form-group {
    margin-bottom: 16px;
}

.lead-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--heading-color);
}

.lead-form input {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 1rem;
    font-family: inherit;
    background: #f7f8fa;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.lead-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 179, 60, 0.15);
    outline: none;
    background: #ffffff;
}

.lead-form input::placeholder {
    color: #9aa0a6;
}

.lead-form .btn {
    margin-top: 4px;
}

.form-status {
    margin-top: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
    min-height: 1.2em;
}

.form-status.is-success {
    color: var(--primary-color);
}

.form-status.is-error {
    color: #c62828;
}

.site-footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

/* =========================================
   RTL Support
   ========================================= */
body.is-rtl {
    direction: rtl;
    text-align: right;
}

body.is-rtl .text-center {
    text-align: center;
}

body.is-rtl .header-container {
    flex-direction: row-reverse;
}

body.is-rtl .nav-menu {
    flex-direction: row-reverse;
}

body.is-rtl .nav-menu li a::after {
    left: auto;
    right: 0;
}

body.is-rtl .lang-switcher {
    margin-left: 0;
    margin-right: 10px;
}

body.is-rtl .two-col-grid {
    direction: rtl;
}

body.is-rtl .check-list li,
body.is-rtl .check-list-green li {
    padding-left: 0;
    padding-right: 25px;
}

body.is-rtl .check-list li::before,
body.is-rtl .check-list-green li::before {
    left: auto;
    right: 0;
}

body.is-rtl .stat-badge {
    right: auto;
    left: -20px;
}

body.is-rtl .contact-item {
    flex-direction: row-reverse;
}

body.is-rtl .contact-item > div {
    text-align: right;
}

body.is-rtl .footer-col {
    text-align: right;
}

/* =========================================
   RESPONSIVE (MOBILE PRIORITY)
   ========================================= */
@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; gap: 50px; }
    .pricing-card.popular { transform: scale(1); }
    .pricing-card.popular:hover { transform: translateY(-5px); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .mobile-menu-toggle { display: flex; }
    .header-cta { display: none; }
    .lang-switcher { margin-left: 0; }
    .lang-link { padding: 5px 8px; font-size: 0.75rem; }
    
    .site-header {
        /* On mobile, we might want a solid background immediately or keep glass */
        background: transparent; 
    }
    
    .site-header.scrolled {
         background: var(--bg-dark); /* Solid dark on mobile scroll for performance */
    }

    .main-navigation {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(26, 31, 44, 0.98); /* Very dark opaque for menu */
        backdrop-filter: blur(10px);
        overflow: hidden;
        transition: height 0.4s ease;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .main-navigation.active {
        height: calc(100vh - 60px);
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        opacity: 0;
        transition: opacity 0.3s 0.2s;
    }

    .main-navigation.active .nav-menu {
        opacity: 1;
    }

    .nav-menu li a { font-size: 1.5rem; }
    .logo a { font-size: 1.3rem; }

    .hero-section {
        height: auto;
        min-height: 100vh;
        min-height: 100svh;
        padding: 120px 0 80px;
    }

    .hero-content { padding-top: 0; }
    .hero-subtitle { font-size: 1.2rem; margin-bottom: 28px; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons .btn { width: 100%; }
    .stat-badge { right: 12px; bottom: 12px; padding: 12px 14px; }
    .stat-number { font-size: 1.8rem; }
    body.is-rtl .stat-badge { right: auto; left: 12px; }

    .pricing-card { padding: 30px; }
    .contact-info-card, .contact-form-card { padding: 28px; }
    .site-footer { padding-top: 60px; }

    .two-col-grid { grid-template-columns: 1fr; gap: 40px; }
    .reverse-mobile { display: flex; flex-direction: column-reverse; }
    .hero-title { font-size: 2rem; line-height: 1.15; }
    .gallery-grid { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
}

@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { gap: 24px; }
    .gallery-item img { height: 200px; }
    .section { padding: 50px 0; }
    .footer-grid { gap: 30px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-section { padding: 110px 0 70px; }
    .hero-title { font-size: 1.6rem; line-height: 1.1; }
    .hero-subtitle { font-size: 0.9rem; line-height: 1.4; }
    h2.section-title { font-size: 2rem; }
    p.section-subtitle { font-size: 1rem; }
    .nav-menu li a { font-size: 1.2rem; }
    .pricing-card { padding: 24px; }
    .contact-info-card, .contact-form-card { padding: 24px; }
    .stat-badge { padding: 10px 12px; }
    .stat-number { font-size: 1.6rem; }
    .lead-modal__dialog { padding: 24px; }
    .lead-modal__close { width: 32px; height: 32px; }
}
