/* ===== CSS Variables ===== */
:root {
    --royal-blue: #1a2f5a;
    --royal-blue-light: #2a4a80;
    --royal-blue-dark: #0a1628;
    --luxury-orange: #c77d2e;
    --luxury-orange-light: #d4943f;
    --luxury-orange-glow: rgba(199, 125, 46, 0.15);
    --bg-light: #0e0e0e;
    --bg-warm: #1a1a1a;
    --bg-dark: #060606;
    --bg-accent: #0a1628;
    --text-dark: #f0ece4;
    --text-muted: #a0a0a0;
    --text-light: #f0ece4;
    --text-light-muted: #8a8a8a;
    --border-light: #2a2a2a;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-card: 0 4px 20px rgba(0,0,0,0.06);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Heebo', sans-serif;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font);
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    direction: rtl;
    text-align: right;
}

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

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

ul { list-style: none; }

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    font-weight: 700;
}

.text-accent {
    color: var(--luxury-orange);
    text-shadow:
        0 0 20px rgba(199, 125, 46, 0.6),
        0 0 40px rgba(199, 125, 46, 0.3),
        0 0 80px rgba(199, 125, 46, 0.15);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--luxury-orange);
    color: #fff;
    border-color: var(--luxury-orange);
}

.btn-primary:hover {
    background: var(--luxury-orange-light);
    border-color: var(--luxury-orange-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(199, 125, 46, 0.35);
}

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.section-light .btn-outline,
.section-light .contact-alternatives .btn-outline {
    color: var(--text-light);
    border-color: rgba(255,255,255,0.3);
}

.section-light .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
}

.btn-whatsapp:hover {
    background: #1fb855;
    border-color: #1fb855;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
}

.btn-full { width: 100%; }

.btn-icon svg {
    width: 20px;
    height: 20px;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(6, 6, 6, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 79px;
    width: auto;
    filter: invert(1) brightness(2);
}

.logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
}

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

.nav-links a {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--luxury-orange);
    transition: var(--transition);
}

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

.nav-cta {
    background: var(--luxury-orange) !important;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: var(--radius-sm);
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    background: var(--luxury-orange-light) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-dark);
    z-index: 999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-links {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 600;
}

.mobile-cta {
    background: var(--luxury-orange);
    padding: 14px 36px;
    border-radius: var(--radius-sm);
    display: inline-block;
    margin-top: 16px;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 55% 58%;
    position: relative;
    z-index: 1;
    transform: scale(1.08);
}

/* Fallback gradient when no image */
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--royal-blue-dark) 0%, var(--royal-blue) 40%, var(--bg-accent) 100%);
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.05) 40%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(199, 125, 46, 0.2);
    border: 1px solid rgba(199, 125, 46, 0.4);
    border-radius: 50px;
    font-size: 0.8rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--luxury-orange-light);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--luxury-orange);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
    margin-top: 4px;
    display: block;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* Hero Track Buttons */
.hero-tracks {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.track-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 28px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    color: #fff;
    transition: var(--transition);
    min-width: 280px;
    backdrop-filter: blur(10px);
}

.track-btn:hover {
    background: rgba(199, 125, 46, 0.12);
    border-color: var(--luxury-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(199, 125, 46, 0.15);
}

.track-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    color: var(--luxury-orange);
}

.track-icon svg {
    width: 100%;
    height: 100%;
}

.track-info {
    flex: 1;
    text-align: right;
}

.track-info strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.track-info span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.4;
}

.track-arrow {
    width: 20px;
    height: 20px;
    color: rgba(255,255,255,0.3);
    flex-shrink: 0;
    transition: var(--transition);
}

.track-btn:hover .track-arrow {
    color: var(--luxury-orange);
    transform: translateX(-4px);
}

@media (max-width: 768px) {
    .hero-tracks {
        flex-direction: column;
        align-items: center;
        margin-bottom: 32px;
    }

    .track-btn {
        width: 100%;
        max-width: 300px;
        min-width: auto;
        padding: 10px 16px;
        gap: 10px;
    }

    .track-icon {
        width: 28px;
        height: 28px;
    }

    .track-info strong {
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .track-info span {
        font-size: 0.7rem;
        display: none;
    }

    .track-arrow {
        width: 16px;
        height: 16px;
    }
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 15px;
    position: relative;
}

.hero-scroll span {
    display: block;
    width: 4px;
    height: 10px;
    background: rgba(255,255,255,0.6);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 28px; }
}

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

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

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

.section-accent {
    background: linear-gradient(135deg, var(--royal-blue) 0%, var(--bg-accent) 100%);
    color: var(--text-light);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--luxury-orange-glow);
    color: var(--luxury-orange);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.tag-light {
    background: rgba(199, 125, 46, 0.15);
    color: var(--luxury-orange-light);
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-dark .section-desc {
    color: var(--text-light-muted);
}

/* ===== Problem Section ===== */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.problem-card {
    background: #1a1a1a;
    border-radius: var(--radius-md);
    padding: 32px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

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

.problem-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(199, 125, 46, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-icon svg {
    width: 20px;
    height: 20px;
    color: var(--luxury-orange);
    transform: rotate(45deg);
}

.problem-card p {
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.6;
}

.problem-bridge {
    text-align: center;
    padding: 48px;
    background: linear-gradient(135deg, var(--royal-blue-dark) 0%, var(--royal-blue) 100%);
    border-radius: var(--radius-lg);
    color: #fff;
}

.bridge-text {
    font-size: 1.25rem;
    line-height: 2;
    margin-bottom: 32px;
    font-weight: 300;
}

.bridge-text strong {
    color: var(--luxury-orange-light);
    font-weight: 700;
}

/* ===== Method Cards ===== */
.method-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.method-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.method-card:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(199, 125, 46, 0.3);
}

.method-card.featured {
    background: rgba(199, 125, 46, 0.1);
    border-color: rgba(199, 125, 46, 0.3);
    transform: scale(1.05);
}

.method-card.featured:hover {
    transform: scale(1.05) translateY(-6px);
}

.method-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--luxury-orange);
    color: #fff;
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.method-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    color: var(--luxury-orange);
}

.method-card-icon svg {
    width: 100%;
    height: 100%;
}

.method-card h3 {
    margin-bottom: 16px;
    color: #fff;
}

.method-card p {
    color: var(--text-light-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* ===== About Section ===== */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--bg-warm);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image.placeholder {
    background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image.placeholder::after {
    content: 'תמונה של נתיב';
    color: var(--text-muted);
    font-size: 1.1rem;
}

.about-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--luxury-orange);
    border-radius: var(--radius-md);
    opacity: 0.15;
    z-index: -1;
}

.about-content .section-tag {
    display: inline-block;
}

.about-content h2 {
    margin: 12px 0 24px;
}

.about-lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--luxury-orange-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-highlights {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.highlight {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.highlight svg {
    width: 22px;
    height: 22px;
    color: var(--luxury-orange);
    flex-shrink: 0;
    margin-top: 4px;
}

.highlight span {
    font-weight: 400;
    color: var(--text-dark);
    line-height: 1.7;
}

.highlight span strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--luxury-orange);
    margin-bottom: 4px;
}

/* ===== Steps Section ===== */
.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 48px;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0 32px;
    max-width: 340px;
}

.step-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--luxury-orange);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}

.step-content h3 {
    color: #fff;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-light-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.step-connector {
    width: 60px;
    height: 2px;
    background: rgba(255,255,255,0.15);
    margin-top: 40px;
    flex-shrink: 0;
}

.steps-cta {
    text-align: center;
}

/* ===== Achievements ===== */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.achievement-card {
    background: #1a1a1a;
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.achievement-card.gold {
    border-color: #d4a843;
    background: linear-gradient(135deg, #1f1a0f 0%, #2a2010 100%);
}

.achievement-card.gold .achievement-medal {
    color: #d4a843;
}

.achievement-card.silver .achievement-medal {
    color: #8a8a8a;
}

.achievement-year {
    display: inline-block;
    padding: 4px 14px;
    background: var(--royal-blue);
    color: #fff;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.achievement-medal {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--luxury-orange);
}

.achievement-medal svg {
    width: 100%;
    height: 100%;
}

.achievement-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.achievement-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

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

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--bg-accent);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item.gallery-wide {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.gallery-item.placeholder {
    background: linear-gradient(135deg, var(--bg-accent) 0%, #1a3050 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item.placeholder::after {
    content: 'תמונה';
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
}

/* ===== Testimonials ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #1a1a1a;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

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

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: var(--luxury-orange);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #252525;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ===== Carousel Dots ===== */
.carousel-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dots .dot.active {
    background: var(--luxury-orange);
    transform: scale(1.3);
}

@media (max-width: 1024px) {
    .carousel-dots {
        display: flex;
    }
}

/* ===== FAQ ===== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #1a1a1a;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--luxury-orange);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
    gap: 16px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--luxury-orange);
    transition: transform var(--transition);
}

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ===== Contact Form ===== */
.contact-form {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 48px;
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.08);
    color: var(--text-light);
    font-family: var(--font);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.35);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--luxury-orange);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 0 0 3px rgba(199, 125, 46, 0.15);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23b0a89a' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 16px center;
    padding-left: 36px;
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group + .btn {
    margin-top: 24px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group:last-of-type {
    margin-bottom: 24px;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light-muted);
    margin-top: 16px;
}

.contact-alternatives {
    text-align: center;
}

.alt-label {
    display: block;
    color: var(--text-light-muted);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.contact-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-buttons .btn-outline {
    color: var(--text-light);
    border-color: rgba(255,255,255,0.3);
}

.contact-buttons .btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

/* ===== Footer ===== */
.footer {
    background: #030303;
    color: var(--text-light-muted);
    padding: 64px 0 32px;
}

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

.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 16px;
    filter: invert(1) brightness(2);
}

.footer-brand h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.footer-brand p {
    line-height: 1.8;
    font-size: 0.9rem;
}

.footer-links h4,
.footer-social h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 20px;
}

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

.footer-links a {
    color: var(--text-light-muted);
    font-size: 0.9rem;
}

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

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light-muted);
    font-size: 0.9rem;
}

.social-links a:hover {
    color: var(--luxury-orange);
}

.social-links svg {
    width: 22px;
    height: 22px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    text-align: center;
    font-size: 0.85rem;
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    left: 28px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

/* ===== Modal ===== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(8px);
}

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

.modal-content {
    background: #1a1a1a;
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

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

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: #25d366;
}

.modal-icon svg {
    width: 100%;
    height: 100%;
}

.modal-content h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
    color: #fff;
}

.modal-content p {
    color: var(--text-light-muted);
    margin-bottom: 28px;
}

/* ===== Cookie Banner ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-light);
    padding: 20px 0;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-content p {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    margin: 0;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--luxury-orange);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-cookie-dismiss {
    background: transparent;
    color: var(--text-light-muted);
    border-color: rgba(255,255,255,0.2);
}

.btn-cookie-dismiss:hover {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== Animations ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .method-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .method-card.featured {
        transform: none;
    }

    .method-card.featured:hover {
        transform: translateY(-6px);
    }

    .about-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

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

    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 14px;
        padding: 0 24px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 -24px;
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonials-grid .testimonial-card {
        min-width: 80%;
        max-width: 80%;
        flex-shrink: 0;
        scroll-snap-align: center;
        padding: 24px;
        transform: none !important;
        box-shadow: none;
    }

    .testimonials-grid .testimonial-card:first-child {
        margin-right: 0;
    }

    .testimonials-grid .testimonial-card:last-child {
        margin-left: 24px;
    }

    .testimonial-text {
        font-size: 0.9rem !important;
        line-height: 1.7 !important;
        margin-bottom: 16px !important;
    }

    .testimonial-stars svg {
        width: 14px;
        height: 14px;
    }

    .testimonial-stars {
        margin-bottom: 12px;
    }

    .testimonial-author strong {
        font-size: 0.85rem;
    }

    .testimonial-author span {
        font-size: 0.75rem;
    }

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

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    /* Navbar — smaller on mobile */
    .navbar {
        padding: 8px 0;
    }

    .navbar.scrolled {
        padding: 6px 0;
    }

    .logo-img {
        height: 50px;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    /* Hero — compact on mobile */
    .hero {
        min-height: 90vh;
    }

    .hero-content {
        padding: 65px 0 30px;
    }

    .hero-bg-img {
        object-position: 60% 70%;
        transform: scale(1.4);
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 3px 6px;
        margin-bottom: 8px;
    }

    .hero-content {
        justify-content: flex-start;
    }

    .hero h1 {
        font-size: 1.9rem;
        margin-bottom: 14px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 28px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        margin-bottom: 36px;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    .hero-stats {
        gap: 20px;
        padding-top: 28px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .stat-divider {
        height: 30px;
    }

    .hero-scroll {
        display: none;
    }

    /* Problem section */
    .problem-grid {
        grid-template-columns: 1fr;
    }

    .problem-card[style*="span 2"] {
        grid-column: span 1 !important;
    }

    .problem-card {
        padding: 24px;
    }

    .problem-bridge {
        padding: 32px 24px;
    }

    /* Steps */
    .steps {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .step-connector {
        width: 2px;
        height: 32px;
        margin: 0;
    }

    .step {
        padding: 0 16px;
    }

    .step-number {
        font-size: 2.5rem;
        margin-bottom: 12px;
    }

    /* Achievements */
    .achievements-grid {
        grid-template-columns: 1fr;
    }

    .achievement-card {
        padding: 24px;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery-item.gallery-wide {
        grid-column: span 2;
    }

    /* FAQ */
    .faq-question {
        padding: 18px 20px;
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 0.9rem;
    }

    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 28px 20px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom p {
        font-size: 0.75rem;
        line-height: 2;
    }

    .bridge-text {
        font-size: 1.05rem;
    }

    .bridge-text br {
        display: none;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 40px;
    }

    .section-desc {
        font-size: 0.95rem;
    }

    /* About */
    .about-image {
        aspect-ratio: 3/4;
        max-width: 100%;
    }

    /* WhatsApp float — above cookie banner */
    .whatsapp-float {
        bottom: 80px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

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

    .hero-stats {
        gap: 14px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .gallery-item.gallery-wide {
        grid-column: span 1;
        aspect-ratio: 1;
    }

    .whatsapp-float {
        bottom: 80px;
        left: 16px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .method-card {
        padding: 28px 20px;
    }

    .about-highlights {
        gap: 24px;
    }

    .about-highlights .highlight span {
        font-size: 0.95rem;
    }

    .about-highlights .highlight span strong {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }

    .highlight svg {
        width: 26px;
        height: 26px;
    }

    .testimonial-card {
        padding: 24px;
    }
}
