/* משתנים וצבעים מבוססים על הלוגו */
:root {
    --primary-color: #0c2d48; /* כחול כהה מהלוגו */
    --secondary-color: #2e8bc0; /* כחול בהיר יותר */
    --accent-color: #f39c12; /* כתום להנעה לפעולה - משתלב מעולה עם כחול */
    --text-dark: #333333;
    --text-light: #f4f4f4;
    --white: #ffffff;
    --bg-light: #f9f9f9;
    --success-color: #27ae60;
}

/* הגדרות בסיס */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Heebo', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    direction: rtl;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* כפתורים */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: #e67e22;
    border-color: #e67e22;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 25px;
}

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

/* ================== */
/* 1. HEADER */
/* ================== */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 9999;
    padding: 10px 0;
}

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

.logo {
    flex-shrink: 0;
}

.logo a {
    display: block;
}

.logo img {
    height: 120px;
    max-height: 120px;
    width: auto;
    object-fit: contain;
}

/* Navigation */
nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    gap: 25px;
    align-items: center;
    position: static;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li.has-mega-dropdown {
    position: static;
}

.nav-menu > li > a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--primary-color);
    padding: 10px 5px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.nav-menu > li > a:hover {
    color: var(--secondary-color);
}

.nav-menu > li > a i {
    font-size: 0.7rem;
    transition: transform 0.3s;
}

/* Mega Menu */
.has-mega-dropdown {
    position: static;
}

nav {
    position: relative;
}

.has-mega-dropdown:hover > a i {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border-radius: 0 0 10px 10px;
    padding: 25px 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 9999;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.has-mega-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-areas {
    gap: 30px;
}

.mega-menu-column {
    min-width: 140px;
}

.mega-menu-column h4 {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent-color);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.mega-menu-column h4 i {
    color: var(--accent-color);
    font-size: 0.85rem;
}

.mega-menu-column ul {
    list-style: none;
}

.mega-menu-column ul li {
    margin-bottom: 8px;
}

.mega-menu-column ul li a {
    color: var(--text-dark);
    font-size: 0.85rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.mega-menu-column ul li a:hover {
    color: var(--primary-color);
    padding-right: 5px;
}

.mega-menu-column ul li a i {
    color: var(--secondary-color);
    font-size: 0.75rem;
}

/* Legacy Dropdown - Fallback */
.has-dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 5px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    transition: all 0.3s;
}

.dropdown-menu li a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding-right: 25px;
}

.btn-nav {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 5px;
}

.btn-nav:hover {
    background-color: var(--secondary-color) !important;
}

/* Header Phone */
.header-phone {
    flex-shrink: 0;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
}

.phone-link:hover {
    background-color: #e67e22;
    transform: scale(1.05);
}

.phone-link i {
    font-size: 1.1rem;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

/* ================== */
/* 2. HERO SECTION */
/* ================== */
.hero {
    background-image: url("pictures/WhatsApp Image 2025-12-09 at 10.42.38 AM.jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(12, 45, 72, 0.85), rgba(12, 45, 72, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 30px 26px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.25);
    backdrop-filter: blur(6px);
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

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

/* ================== */
/* 3. TRUST INDICATORS */
/* ================== */
.trust-indicators {
    background-color: var(--primary-color);
    padding: 25px 0;
    position: relative;
    overflow: hidden;
}

.trust-indicators::before,
.trust-indicators::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 18%, rgba(255,255,255,0.05) 0%, transparent 38%),
        radial-gradient(circle at 78% 10%, rgba(46,139,192,0.15) 0%, transparent 40%),
        radial-gradient(circle at 0% 80%, rgba(243,156,18,0.15) 0%, transparent 30%);
    pointer-events: none;
    opacity: 0.9;
}

.trust-indicators::after {
    filter: blur(25px);
    opacity: 0.6;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

.trust-item i {
    font-size: 2rem;
    color: var(--accent-color);
}

.trust-item span {
    font-size: 1rem;
    font-weight: 500;
}

/* ================== */
/* STATS COUNTER */
/* ================== */
.stats-counter {
    background: linear-gradient(135deg, #f9fafb 0%, #eef3f7 100%);
    padding: 60px 0;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.stat-item {
    text-align: center;
    position: relative;
    background: var(--white);
    padding: 24px 28px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid #e9eef5;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    display: inline;
    line-height: 1;
}

.stat-plus {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    display: inline;
    vertical-align: top;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    margin-top: 10px;
}

/* ================== */
/* PROCESS STEPS */
/* ================== */
.process {
    background: linear-gradient(135deg, #0c2d48 0%, #10385d 50%, #0c2d48 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08) 0%, transparent 35%),
        radial-gradient(circle at 80% 15%, rgba(46,139,192,0.18) 0%, transparent 35%),
        radial-gradient(circle at 50% 90%, rgba(243,156,18,0.16) 0%, transparent 35%);
    pointer-events: none;
}

.process .section-title {
    color: var(--white);
}

.process .section-title::after {
    background-color: var(--accent-color);
}

.process .section-lead {
    color: rgba(255,255,255,0.9);
}

.process .section-kicker {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.25);
    color: var(--white);
}

.process-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.process-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.step-number {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    font-weight: 800;
    color: var(--white);
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.process-card h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.15rem;
}

.process-card p {
    color: rgba(255,255,255,0.9);
    line-height: 1.65;
}

.process-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 0.95rem;
}

.process-meta i {
    color: var(--accent-color);
    font-size: 1.05rem;
}

.process-cta {
    margin-top: 30px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.process-cta .btn {
    min-width: 190px;
}

/* ================== */
/* CLIENTS LOGOS */
/* ================== */
.clients-logos {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    position: relative;
    overflow: hidden;
}

.clients-logos::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.clients-title {
    text-align: center;
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.logos-slider {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logo-item {
    padding: 15px 25px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.logo-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.logo-item span {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* ================== */
/* 4. SERVICES GRID */
/* ================== */
.section-padding {
    padding: 80px 0;
}

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

/* Services Section with subtle pattern */
.services.bg-light {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f4f8 100%);
    position: relative;
}

.services.bg-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(46, 139, 192, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(12, 45, 72, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 15px auto 0;
}

.text-right {
    text-align: right;
}

.text-right::after {
    margin: 15px 0 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(12, 45, 72, 0.07);
    color: var(--accent-color);
    font-weight: 700;
    letter-spacing: 0.02em;
    font-size: 0.9rem;
    border: 1px solid rgba(46, 139, 192, 0.25);
    margin: 0 auto 12px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.section-lead {
    max-width: 780px;
    margin: -15px auto 35px;
    text-align: center;
    color: #4a5568;
    line-height: 1.7;
}

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-img {
    height: 220px;
    overflow: hidden;
}

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

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-text {
    padding: 25px;
}

.service-text h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.service-text p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.7;
}

/* Service Card with Icon (for new services) */
.service-img-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.service-img-icon i {
    font-size: 4rem;
    color: var(--white);
}

/* ================== */
/* 5. WHY CHOOSE US */
/* ================== */
.why-us {
    background-color: var(--white);
}

.why-us-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-intro {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.benefits-list li i {
    font-size: 1.5rem;
    color: var(--success-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.benefits-list li strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.benefits-list li p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.why-us-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

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

/* ================== */
/* 6. SEO SECTION */
/* ================== */
.seo-section {
    background: linear-gradient(135deg, var(--bg-light) 0%, #e8f4f8 100%);
    position: relative;
}

.seo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
}

.seo-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
}

.seo-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.seo-content strong {
    color: var(--primary-color);
}

/* ================== */
/* FAQ SECTION */
/* ================== */
.faq-section {
    background: linear-gradient(rgba(249, 249, 249, 0.95), rgba(249, 249, 249, 0.95)), 
                url("pictures/WhatsApp Image 2025-12-09 at 10.53.04 AM (1).jpeg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

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

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: right;
    transition: all 0.3s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i {
    transition: transform 0.3s;
    color: var(--accent-color);
}

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

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

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
}

/* ================== */
/* 7. CONTACT SECTION */
/* ================== */
.contact {
    background:
        radial-gradient(circle at 20% 15%, rgba(255,255,255,0.08) 0%, transparent 32%),
        radial-gradient(circle at 80% 0%, rgba(243,156,18,0.14) 0%, transparent 30%),
        linear-gradient(135deg, #0c2d48 0%, #0b2642 55%, #0c2d48 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact .section-title {
    color: var(--white);
}

.contact .section-title::after {
    background-color: var(--accent-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-info > p {
    opacity: 0.9;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-item i {
    width: 50px;
    height: 50px;
    background-color: rgba(255,255,255,0.1);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-left: 15px;
}

.info-item h4 {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 3px;
}

.info-item a,
.info-item span {
    font-size: 1.1rem;
    color: var(--white);
    transition: color 0.3s;
}

.info-item a:hover {
    color: var(--accent-color);
}

.contact-form-box {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 1px solid #e6ecf3;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input::placeholder {
    color: #999;
}

.form-note {
    margin-top: 12px;
    font-size: 0.95rem;
    color: #4f5d75;
}

.form-note a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

.full-width {
    width: 100%;
}

.map-placeholder {
    margin-top: 50px;
    padding: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    text-align: center;
}

.map-placeholder i {
    font-size: 2rem;
    margin-left: 10px;
    color: var(--accent-color);
}

/* ================== */
/* 8. FOOTER */
/* ================== */
footer {
    background-color: #071e2f;
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-color);
}

.footer-column > p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-contact p {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
}

.footer-contact i {
    color: var(--accent-color);
    margin-left: 8px;
    width: 20px;
}

.footer-contact a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-right: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.6);
}

/* Footer SEO Links Cloud */
.footer-seo-links {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.seo-links-section {
    margin-bottom: 20px;
}

.seo-links-section h5 {
    color: var(--accent-color);
    font-size: 0.85rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.seo-links-section p {
    font-size: 0.8rem;
    line-height: 2;
    color: rgba(255,255,255,0.5);
}

.seo-links-section p a {
    color: rgba(255,255,255,0.6);
    transition: color 0.3s;
}

.seo-links-section p a:hover {
    color: var(--accent-color);
}

/* ================== */
/* WHATSAPP FLOAT */
/* ================== */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20ba5a;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ================== */
/* SCROLL TO TOP BUTTON */
/* ================== */
.scroll-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 4px 15px rgba(12, 45, 72, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.scroll-to-top:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* ================== */
/* PROJECTS GALLERY */
/* ================== */
.projects-gallery {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4a6e 100%);
    color: var(--white);
}

.projects-gallery .section-title {
    color: var(--white);
}

.projects-gallery .section-title::after {
    background-color: var(--accent-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: -30px;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

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

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(12, 45, 72, 0.9));
    padding: 40px 15px 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 2;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .gallery-item.large {
        grid-column: span 2;
    }
}

/* ================== */
/* MOBILE STICKY CTA */
/* ================== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 999;
    padding: 10px 15px;
    gap: 10px;
    transition: transform 0.3s ease;
}

.mobile-sticky-cta.hidden {
    transform: translateY(100%);
}

.mobile-sticky-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s;
}

.sticky-call {
    background-color: var(--accent-color);
    color: var(--white);
}

.sticky-call:hover {
    background-color: #e67e22;
}

.sticky-whatsapp {
    background-color: #25d366;
    color: var(--white);
}

.sticky-whatsapp:hover {
    background-color: #20ba5a;
}

/* ================== */
/* FORM IMPROVEMENTS */
/* ================== */
.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message i {
    font-size: 1.2rem;
}

#submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ================== */
/* ACCESSIBILITY - Focus Styles */
/* ================== */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

.btn:focus {
    outline: 3px solid var(--white);
    outline-offset: 2px;
}

.nav-menu > li > a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    z-index: 10000;
    border-radius: 0 0 8px 8px;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* ================== */
/* RESPONSIVE - Mobile First */
/* ================== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-wrapper {
        gap: 40px;
    }

    .mega-menu {
        flex-wrap: wrap;
        padding: 20px;
        gap: 30px;
    }

    .mega-menu-column {
        min-width: 150px;
    }

    .stats-grid {
        gap: 20px;
    }

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

@media (max-width: 768px) {
    /* Header Mobile */
    .header-content {
        padding: 0 15px;
    }

    .logo img {
        height: 80px;
        max-height: 80px;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: var(--white);
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    nav.active,
    .nav-menu.active {
        display: block;
    }

    .nav-menu {
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .nav-menu > li {
        border-bottom: 1px solid #eee;
    }

    .nav-menu > li > a {
        padding: 15px 10px;
        display: block;
    }

    .mega-menu {
        position: static;
        box-shadow: none;
        border-radius: 0;
        padding: 15px;
        flex-direction: column;
        gap: 20px;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: var(--bg-light);
    }

    .mega-menu.mobile-open {
        display: flex;
    }

    .has-mega-dropdown:hover .mega-menu {
        display: none;
    }

    .mega-menu-column {
        min-width: 100%;
    }
    
    .header-phone {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    /* Mobile Sticky CTA - Show on mobile */
    .mobile-sticky-cta {
        display: flex;
    }

    /* Adjust WhatsApp float position above sticky CTA */
    .whatsapp-float {
        display: none; /* Hide on mobile, using sticky CTA instead */
    }

    /* Scroll to top on mobile */
    .scroll-to-top {
        bottom: 90px; /* Above sticky CTA */
        right: 20px;
        width: 45px;
        height: 45px;
    }

    /* Stats Mobile */
    .stats-counter {
        padding: 40px 0;
    }

    .stats-grid {
        flex-direction: column;
        gap: 25px;
    }

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

    /* Clients Logos Mobile */
    .logos-slider {
        gap: 20px;
    }

    .logo-item {
        padding: 10px 15px;
    }

    /* Hero Mobile */
    .hero {
        min-height: 70vh;
        background-attachment: scroll;
    }

    .faq-section {
        background-attachment: scroll;
    }

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

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

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* Trust Mobile */
    .trust-grid {
        flex-direction: column;
        gap: 15px;
    }

    .trust-item {
        justify-content: center;
    }

    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.8rem;
    }

    /* FAQ Mobile */
    .faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 15px;
    }

    /* Why Us Mobile */
    .why-us-wrapper {
        grid-template-columns: 1fr;
    }

    .why-us-image {
        order: -1;
        max-height: 300px;
    }

    .text-right::after {
        margin: 15px auto 0;
    }

    .text-right {
        text-align: center;
    }

    /* Contact Mobile */
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .process-card {
        padding: 18px;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-column h4::after {
        right: 50%;
        transform: translateX(50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-seo-links {
        text-align: center;
    }
    
    /* Add padding at bottom for sticky CTA */
    body {
        padding-bottom: 80px;
    }
}

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

    .section-padding {
        padding: 50px 0;
    }

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

    .btn-large {
        padding: 14px 25px;
        font-size: 1rem;
    }

    .contact-form-box {
        padding: 25px;
    }
}

/* ===========================================
   COOKIE BANNER - באנר עוגיות
   =========================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-banner-text a:hover {
    color: #f1c40f;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background-color: var(--accent-color);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
        padding-bottom: 90px; /* מקום ל-sticky CTA */
    }

    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* ===========================================
   LEGAL PAGES - דפי מדיניות והצהרות
   =========================================== */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 100px 0 50px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-hero h1 i {
    margin-left: 10px;
}

.page-hero p {
    font-size: 1rem;
    opacity: 0.9;
}

.legal-content {
    background-color: var(--white);
}

.legal-article {
    max-width: 800px;
    margin: 0 auto;
}

.legal-article h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 40px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
}

.legal-article h2:first-of-type {
    margin-top: 0;
}

.legal-article h3 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin: 25px 0 10px;
}

.legal-article p {
    margin-bottom: 15px;
    line-height: 1.8;
    text-align: justify;
}

.legal-article ul {
    margin: 15px 0 15px 30px;
    list-style: disc;
}

.legal-article ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-article ul li i {
    color: var(--success-color);
    margin-left: 8px;
}

.legal-article .contact-details,
.legal-article .highlight-box {
    background-color: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
    border-right: 4px solid var(--secondary-color);
}

.legal-article .contact-details p,
.legal-article .highlight-box p {
    margin-bottom: 10px;
}

.legal-article .contact-details p:last-child,
.legal-article .highlight-box p:last-child {
    margin-bottom: 0;
}

.legal-article .contact-details i,
.legal-article .highlight-box i {
    color: var(--secondary-color);
    width: 20px;
    margin-left: 10px;
}

.legal-article .contact-details a,
.legal-article .highlight-box a {
    color: var(--secondary-color);
}

.legal-article .contact-details a:hover,
.legal-article .highlight-box a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--bg-light);
    text-align: center;
    color: #666;
}

.legal-footer p {
    text-align: center;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 80px 0 40px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .legal-article h2 {
        font-size: 1.3rem;
    }

    .legal-article ul {
        margin-right: 20px;
    }
}
