/* ===== CSS Variables - Warm Earth Color Palette ===== */
:root {
    /* Main Background - Oatmeal Beige */
    --sand-light: #F5F3EF;
    --sand: #EBE7E0;
    --sand-dark: #DDD8CF;
    --cream: #EFECE6;

    /* Secondary - Warm Taupe Stone */
    --sea-light: #C5BBB3;
    --sea: #B5A89F;
    --sea-dark: #9E9189;

    /* Accent - Cognac Brown */
    --terracotta-light: #B07B5A;
    --terracotta: #9C6644;
    --terracotta-dark: #845536;

    --white: #FFFFFF;

    /* Text Colors - Dark Espresso Brown - IMPROVED CONTRAST */
    --text-dark: #3A322D;
    --text-light: #5A4D45;

    --font-hebrew: 'Assistant', sans-serif;
    --font-display: 'Assistant', sans-serif;
    --font-body: 'Assistant', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-hebrew);
    background-color: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    padding: 1.5rem 2rem;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    padding: 1rem 2rem;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 1rem;
    position: relative;
    transition: var(--transition-fast);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--sea);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Navigation CTA Button */
.nav-links a.nav-cta {
    background: var(--terracotta);
    color: var(--white);
    padding: 0.6rem 1.4rem;
    border-radius: 25px;
    font-weight: 500;
}

.nav-links a.nav-cta::after {
    display: none;
}

.nav-links a.nav-cta:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
}

/* Navigation Contact Icons */
.nav-contact-icons {
    display: flex;
    gap: 0.8rem;
    margin-right: 1rem;
}

.nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--sand);
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.nav-icon svg {
    width: 20px;
    height: 20px;
}

.nav-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.nav-icon.whatsapp:hover {
    background: #25D366;
    color: white;
}

.nav-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
}

.nav-icon:not(.whatsapp):not(.instagram):hover {
    background: var(--terracotta);
    color: white;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition-smooth);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(239, 236, 230, 0.82) 0%,
            rgba(245, 243, 239, 0.72) 50%,
            rgba(181, 168, 159, 0.5) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, transparent 0%, var(--cream) 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(5deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(-5deg);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo {
    max-width: 400px;
    width: 80%;
    height: auto;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease forwards;
    mix-blend-mode: multiply;
}

.hero-title {
    font-family: var(--font-hebrew);
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

.hero-title .line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s ease forwards;
}

.hero-title .line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-title .accent {
    color: var(--terracotta);
    font-weight: 500;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeIn 1s ease 0.5s forwards;
    font-weight: 500;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.cta-button {
    display: inline-block;
    padding: 1.1rem 3.5rem;
    background: var(--terracotta);
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    opacity: 0;
    animation: fadeIn 1s ease 0.7s forwards;
    box-shadow: 0 10px 40px rgba(156, 102, 68, 0.35);
}

.cta-button:hover {
    background: var(--terracotta-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(156, 102, 68, 0.5);
}

.hero-scroll {
    position: absolute;
    bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

.hero-scroll span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.scroll-indicator {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, var(--sea), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }
}

/* ===== Section Styles ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-hebrew);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    letter-spacing: 0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 60px;
    height: 3px;
    background: var(--sea);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* ===== Services Section ===== */
.services {
    padding: 6rem 2rem;
    background: var(--cream);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Projects Section ===== */
.projects {
    padding: 8rem 2rem;
    background: var(--white);
}

.projects-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: var(--cream);
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(50px);
}

.project-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.project-image {
    position: relative;
    padding-top: 75%;
    overflow: hidden;
}

.project-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--sand-light) 0%, var(--sea-light) 100%);
    transition: var(--transition-smooth);
}

.project-placeholder span {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.project-placeholder p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.project-card:hover .project-placeholder {
    transform: scale(1.05);
}

/* ===== Project Gallery ===== */
.project-gallery {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.project-gallery .gallery-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.project-gallery .gallery-img.active {
    opacity: 1;
}

.project-card:hover .gallery-img.active {
    transform: scale(1.05);
}

.gallery-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.gallery-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.gallery-dots .dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.gallery-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-nav.prev {
    left: 15px;
}

.gallery-nav.next {
    right: 15px;
}

.project-card:hover .gallery-nav {
    opacity: 1;
}

.gallery-nav:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.project-info {
    padding: 2rem;
}

.project-info h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.project-info p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.project-link {
    display: inline-flex;
    align-items: center;
    color: var(--sea-dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.project-link:hover {
    color: var(--sea);
    gap: 0.5rem;
}

/* ===== About Section ===== */
.about {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--cream) 0%, var(--sand-light) 100%);
}

.about-layout {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-center {
    text-align: center;
    padding: 2rem;
    order: 1;
}

.how-it-works-side {
    position: relative;
    top: 0;
    padding: 3rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--sand-light) 100%);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    order: 2;
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

.about-image {
    position: relative;
}

.about-placeholder {
    aspect-ratio: 4/5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--sea-light) 0%, var(--sand) 100%);
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.about-placeholder span {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.about-placeholder p {
    color: var(--text-light);
}

.about-content .section-title {
    margin-bottom: 2rem;
}

.about-content .section-title::after {
    right: 0;
    transform: none;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    color: var(--sea);
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== Founders Section ===== */
.founders {
    margin-top: 3rem;
    margin-bottom: 2rem;
    text-align: center;
}

.founders-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.founders-link {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

.founders-image-container {
    position: relative;
    width: 280px;
    height: 350px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    cursor: pointer;
}

.founders-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.founders-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 2rem 1rem 1.5rem;
    opacity: 0;
    transition: var(--transition-smooth);
}

.founders-overlay span {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
}

.founders-link:hover .founders-image {
    transform: scale(1.05);
}

.founders-link:hover .founders-overlay {
    opacity: 1;
}

.founders-names {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 0.5rem;
}

/* ===== Founders Popup ===== */
.founders-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

.founders-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.founders-popup {
    background: var(--white);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.founders-popup-overlay.active .founders-popup {
    transform: scale(1) translateY(0);
}

.founders-popup-close {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 35px;
    height: 35px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 10;
    color: var(--text-dark);
}

.founders-popup-close:hover {
    background: rgba(0, 0, 0, 0.2);
}

.founders-popup-content {
    text-align: center;
}

.founders-popup-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center 30%;
}

.founders-popup-text {
    padding: 1.5rem 2rem 2rem;
}

.founders-popup-text h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.founders-popup-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ===== How It Works Section - Below About ===== */
.how-it-works-title {
    font-family: var(--font-hebrew);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.how-it-works-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--sea) 0%, var(--sea-dark) 100%);
    border-radius: 3px;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(126, 181, 201, 0.1) 0%, transparent 100%);
    transition: width 0.4s ease;
}

.step:hover::before {
    width: 100%;
}

.step:hover {
    transform: translateX(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(126, 181, 201, 0.25);
    border-color: var(--sea-light);
}

.step.active {
    transform: translateX(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(126, 181, 201, 0.3);
    border-color: var(--sea);
    background: linear-gradient(135deg, var(--white) 0%, rgba(126, 181, 201, 0.1) 100%);
}

.step.active .step-number {
    transform: scale(1.1) rotate(360deg);
    box-shadow: 0 8px 25px rgba(126, 181, 201, 0.5);
}

.step.active .step-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.step-number {
    width: 45px;
    height: 45px;
    min-width: 45px;
    background: linear-gradient(135deg, var(--sea) 0%, var(--sea-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(126, 181, 201, 0.4);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.step-content {
    flex: 1;
    z-index: 1;
}

.step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    transition: color 0.3s ease;
}

.step:hover .step-content h4,
.step.active .step-content h4 {
    color: var(--sea-dark);
}

.step-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.4;
    transition: all 0.3s ease;
}

.step:hover .step-content p,
.step.active .step-content p {
    color: var(--text-dark);
}

.step-icon {
    font-size: 1.5rem;
    opacity: 0.3;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.8) rotate(-10deg);
    z-index: 1;
}

.step:hover .step-icon {
    opacity: 0.8;
    transform: scale(1) rotate(0deg);
}

/* ===== FAQ Section ===== */
.faq {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--sand-light) 0%, var(--cream) 100%);
}

.faq .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.faq .section-title::after {
    right: 50%;
    transform: translateX(50%);
}

.faq-section {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 2px solid var(--sand-light);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--sea-light);
}

.faq-item.active {
    border-color: var(--sea);
    box-shadow: 0 10px 30px rgba(126, 181, 201, 0.15);
}

.faq-question {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: var(--cream);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-hebrew);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--sand-light);
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, var(--sea-light) 0%, rgba(126, 181, 201, 0.3) 100%);
    color: var(--sea-dark);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--sea);
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 1.5rem;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 6rem 2rem;
    background: var(--cream);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.testimonials-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-image {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--cream);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content {
    text-align: center;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-text::before {
    content: '"';
    font-size: 3rem;
    color: var(--terracotta);
    opacity: 0.3;
    display: block;
    line-height: 0.5;
    margin-bottom: 0.5rem;
}

.testimonial-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-project {
    font-size: 0.9rem;
    color: var(--terracotta);
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Contact Section ===== */
.contact {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
    text-align: center;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

/* Contact Form */
.contact-form {
    max-width: 450px;
    margin: 0 auto 2rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: block;
    text-align: right;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1.2rem;
    font-family: var(--font-hebrew);
    font-size: 0.95rem;
    border: 1px solid var(--sand);
    border-radius: 8px;
    background: var(--white);
    color: var(--text-dark);
    transition: var(--transition-fast);
    text-align: right;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
    font-size: 0.9rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--sea);
    box-shadow: 0 0 0 3px rgba(126, 181, 201, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-privacy {
    text-align: right;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.submit-button {
    width: 100%;
    padding: 0.9rem 2rem;
    font-family: var(--font-hebrew);
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    background: var(--sea);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.submit-button:hover {
    background: var(--sea-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(126, 181, 201, 0.3);
}

.submit-button:active {
    transform: translateY(0);
}

.contact-divider {
    display: flex;
    align-items: center;
    margin: 2rem 0;
}

.contact-divider::before,
.contact-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--sand);
}

.contact-divider span {
    padding: 0 1.5rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    padding: 1rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.contact-link:hover {
    border-color: var(--sea);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    font-size: 1.5rem;
}

.whatsapp-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #25D366;
    transition: var(--transition-fast);
}

.whatsapp-link:hover .whatsapp-icon {
    color: #128C7E;
}

.whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.1);
}

/* ===== Footer ===== */
.footer {
    padding: 2rem;
    background: var(--sand-light);
    text-align: center;
}

.footer p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .about-layout {
        gap: 3rem;
    }

    .how-it-works-side {
        padding: 2rem;
    }

    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-content {
        text-align: center;
    }

    .about-content .section-title::after {
        right: 50%;
        transform: translateX(50%);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .nav-contact-icons {
        display: none;
    }

    .nav-links.active~.nav-contact-icons,
    .nav-links.active+.nav-contact-icons {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-title {
        font-size: 3rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .founders-image-container {
        width: 240px;
        height: 300px;
    }

    .founder-image {
        width: 150px;
        height: 150px;
    }

    .how-it-works-side {
        padding: 1.5rem;
    }

    .how-it-works-title {
        font-size: 1.5rem;
    }

    .step {
        padding: 1rem;
        gap: 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1.1rem;
    }

    .step-icon {
        font-size: 1.2rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .contact-link {
        justify-content: center;
    }
}

/* ===== Animations on Scroll ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--sand);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--sea);
}

/* ===== Form Labels ===== */
.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-privacy {
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 0.85rem;
    text-align: center;
}

/* ===== Back to Top Button ===== */
/* ===== Floating WhatsApp Button ===== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: var(--transition-smooth);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.whatsapp-float-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--terracotta);
    color: var(--white);
    border: none;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-smooth);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(156, 102, 68, 0.3);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--terracotta-dark);
    transform: translateY(-3px);
}

/* ===== Active Navigation Link ===== */
.nav-links a.active {
    color: var(--terracotta);
}

.nav-links a.active::after {
    width: 100%;
}