/* CSS Variables & Reset */
:root {
    --brand: #000000;
    --brand-light: #1a1a1a;
    --accent: #ff6b35;
    --accent-dark: #e55a2b;
    --line: #e0e0e0;
    --line-dark: #333333;
    --text-primary: #000000;
    --text-secondary: #666666;
    --text-light: #ffffff;
    --text-muted: #999999;
    --text-dark: #333333;
    --bg-light: #ffffff;
    --bg-white: #ffffff;
    --bg-dark: #000000;
    --bg-gray: #f8f8f8;
    --footer-bg: #000000;
    --shadow: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-dark: 0 8px 32px rgba(0,0,0,0.3);
    --radius: 0px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Heebo', 'Assistant', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    direction: rtl;
    background: var(--bg-light);
    font-weight: 400;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { 
    font-size: 3.5rem; 
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}
h2 { 
    font-size: 2.5rem; 
    font-weight: 800;
}
h3 { 
    font-size: 1.75rem; 
    font-weight: 700;
}
h4 { 
    font-size: 1.5rem; 
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

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

a:focus {
    outline: none;
}

/* ======================================
   BUTTON SYSTEM - קבוצות כפתורים מבודדות
   ======================================
   
   הכפתורים מחולקים לקבוצות נפרדות לפי מיקום ופונקציה:
   
   1. כפתור התפריט (.btn-nav-sample) - כפתור "הזמנת דוגמאות" בסרגל הראשי
   2. כפתורי ההירו (.btn-hero-*) - כפתורים באזור ההירו הראשי
   3. כפתורי שירותי הייצור (.btn-services) - כפתורים בכרטיסיות השירותים
   4. כפתורי מידע וגלריה (.btn-info-gallery) - כפתור "מי אנחנו" וכפתורי גלריית המוצרים (.slide-cta)
   5. כפתורי קול לפעולה (.btn-cta-*) - שלושת הכפתורים ב"מוכנים להתחיל פרויקט"
   
   כל קבוצה ניתנת לעריכה נפרדת ללא השפעה על שאר הכפתורים
   ====================================== */

/* Mobile navigation specific styles */
.mobile-nav ul li a {
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important;
    border: none !important;
}

.mobile-nav ul li a:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.mobile-nav ul li a:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.mobile-nav ul li a:visited {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Mobile menu button styling consistency */
.mobile-nav .btn-nav-sample {
    background: var(--accent) !important;
    color: white !important;
    border: 2px solid var(--accent) !important;
    border-radius: 20px !important;
    padding: 0.4rem 1rem !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important;
    margin-top: 0.5rem !important;
}

.mobile-nav .btn-nav-sample:hover {
    background: var(--accent-dark) !important;
    color: white !important;
    border-color: var(--accent-dark) !important;
    text-decoration: none !important;
    transform: translateY(-2px) !important;
    outline: none !important;
    box-shadow: none !important;
}

.mobile-nav .btn-nav-sample:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    text-decoration: none !important;
}

.mobile-nav .btn-nav-sample:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    text-decoration: none !important;
    transform: translateY(0) !important;
}

/* General focus outline removal for mobile */
button:focus, a:focus, input:focus, select:focus, textarea:focus {
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* Mobile tap highlight removal */
* {
    -webkit-tap-highlight-color: transparent !important;
}

/* Button Base Styles */
.btn-base {
    display: inline-block;
    border-radius: var(--radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-base:hover::before {
    left: 100%;
}

/* 1. כפתור התפריט - הזמנת דוגמאות */
.btn-nav-sample {
    background: var(--accent) !important;
    color: white !important;
    border: 2px solid var(--accent) !important;
    border-radius: 25px !important;
    padding: 0.6rem 1.5rem !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    text-decoration: none !important;
    text-decoration-line: none !important;
    border-bottom: none !important;
    text-underline-offset: none !important;
    -webkit-text-decoration: none !important;
    -moz-text-decoration: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    text-shadow: none !important;
    position: relative !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.btn-nav-sample:hover {
    background: var(--accent-dark) !important;
    color: white !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4) !important;
    text-decoration: none !important;
    text-decoration-line: none !important;
    border-bottom: none !important;
    text-underline-offset: none !important;
    -webkit-text-decoration: none !important;
    -moz-text-decoration: none !important;
}

/* ביטול כל ההשפעות של nav-menu על הכפתור */
.nav-menu a.btn-nav-sample {
    text-decoration: none !important;
    text-decoration-line: none !important;
    border-bottom: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    text-shadow: none !important;
    font-weight: 400 !important;
    padding: 0.7rem 1.8rem !important;
}

.nav-menu a.btn-nav-sample::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
}

.nav-menu a.btn-nav-sample:hover {
    text-decoration: none !important;
    text-decoration-line: none !important;
    border-bottom: none !important;
    color: white !important;
    text-shadow: none !important;
}

.nav-menu a.btn-nav-sample:hover::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
}

.nav-menu a.btn-nav-sample:link,
.nav-menu a.btn-nav-sample:visited,
.nav-menu a.btn-nav-sample:focus,
.nav-menu a.btn-nav-sample:active {
    text-decoration: none !important;
    text-decoration-line: none !important;
    border-bottom: none !important;
    color: white !important;
    text-shadow: none !important;
}

/* Override any inherited underlines */
a.btn-nav-sample {
    text-decoration: none !important;
    border-bottom: none !important;
}

a.btn-nav-sample * {
    text-decoration: none !important;
    border-bottom: none !important;
}

/* Extra strong override for navigation sample button */
.nav-menu li a.btn-nav-sample,
ul.nav-menu li a.btn-nav-sample,
.nav-container .nav-menu li a.btn-nav-sample {
    text-decoration: none !important;
    border-bottom: none !important;
    text-underline-offset: unset !important;
    padding: 0.6rem 1.5rem !important;
    font-size: 1rem !important;
}

.nav-menu li a.btn-nav-sample:hover,
ul.nav-menu li a.btn-nav-sample:hover,
.nav-container .nav-menu li a.btn-nav-sample:hover {
    text-decoration: none !important;
    border-bottom: none !important;
    text-underline-offset: unset !important;
}

/* ULTIMATE OVERRIDE - מבטל כל קו תחתון או אפטר */
nav .nav-menu li a.btn-nav-sample,
header nav .nav-menu li a.btn-nav-sample,
.header nav .nav-menu li a.btn-nav-sample,
.nav-container ul.nav-menu li a.btn-nav-sample {
    text-decoration: none !important;
    border-bottom: none !important;
}

nav .nav-menu li a.btn-nav-sample::after,
header nav .nav-menu li a.btn-nav-sample::after,
.header nav .nav-menu li a.btn-nav-sample::after,
.nav-container ul.nav-menu li a.btn-nav-sample::after,
nav .nav-menu li a.btn-nav-sample::before,
header nav .nav-menu li a.btn-nav-sample::before,
.header nav .nav-menu li a.btn-nav-sample::before,
.nav-container ul.nav-menu li a.btn-nav-sample::before {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
    border: none !important;
}

/* 2. כפתורי ההירו - נטפל בהם בנפרד מאוחר יותר */
.btn-hero-primary {
    background: var(--accent);
    color: white;
    border: 2px solid var(--accent);
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
}

.btn-hero-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(255, 107, 53, 0.3);
}

.btn-hero-secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 8px;
}

.btn-hero-secondary:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-3px);
}

/* 3. כפתורי כרטיסיות שירותי הייצור */
.btn-services {
    background: var(--accent);
    color: white;
    border: 2px solid var(--accent);
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 6px;
}

.btn-services:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 107, 53, 0.25);
}

/* 4. כפתורי מי אנחנו וגלריית מוצרים */
.btn-info-gallery {
    background: var(--accent);
    color: white;
    border: 2px solid var(--accent);
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 8px;
}

.btn-info-gallery:hover {
    background: var(--accent-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

/* 5. כפתורי "מוכנים להתחיל פרויקט" - כל אחד ניתן לשינוי נפרד */
.btn-cta-primary {
    background: var(--accent);
    color: white;
    border: 2px solid var(--accent);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
}

.btn-cta-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-cta-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 0.9rem 1.8rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

/* Header & Navigation */
.header {
    background: transparent;
    backdrop-filter: none;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border: none;
}

/* Ensure content doesn't hide behind fixed header */
body:not(.homepage) {
    padding-top: 110px; /* מרווח מהחלק העליון להתאמה לגובה התפריט הטבעי */
}

/* Homepage header behavior - dynamic effects */
.homepage .header {
    background: transparent;
}

.homepage .header.scrolled {
    background: rgba(105, 105, 105, 0.35);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.homepage .header:hover {
    background: rgba(255, 255, 255, 0.95);
}

.homepage .header:hover .nav-menu a,
.homepage .header:hover .logo h1,
.homepage .header:hover .logo-subtitle {
    color: #333;
    text-shadow: none;
}

.homepage .header:hover .nav-menu a::after {
    background: #333;
}

.homepage .header:hover .nav-menu a:hover::after {
    width: 100%;
    background: var(--accent);
}

.homepage .header:hover .nav-menu a.active::after {
    background: var(--accent);
}

.homepage .header:hover .nav-menu .btn-nav-sample {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* Other pages header - always white with black text */
body:not(.homepage) .header {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

body:not(.homepage) .header .nav-menu a,
body:not(.homepage) .header .logo h1,
body:not(.homepage) .header .logo-subtitle {
    color: #333;
    text-shadow: none;
}

body:not(.homepage) .header .nav-menu a::after {
    background: #333;
}

body:not(.homepage) .header .nav-menu a:hover::after {
    width: 100%;
    background: var(--accent);
}

body:not(.homepage) .header .nav-menu a.active::after {
    background: var(--accent);
}

body:not(.homepage) .header .nav-menu .btn-nav-sample {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* Remove underline from button in nav menu */
.nav-menu .btn-nav-sample::after,
.nav-menu .btn-nav-sample:hover::after,
.nav-menu .btn-nav-sample.active::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 40px;
    max-width: 100%;
    margin: 0;
    width: 100%;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.logo h1 {
    font-size: 2rem;
    color: white;
    margin: 0;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
    line-height: 1;
    font-family: 'Assistant', 'Heebo', sans-serif;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.logo-subtitle {
    font-size: 1.1rem;
    color: white;
    font-weight: 100;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-family: 'Assistant', 'Heebo', sans-serif;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    margin: 0;
    margin-top: 0.2rem;
    transition: all 0.3s ease;
}

/* Mobile Logo Adjustments */
@media (max-width: 768px) {
    .logo {
        gap: 0.7rem;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .logo h1 {
        font-size: 1.3rem;
    }
    
    .logo-subtitle {
        font-size: 0.8rem;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

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

.nav-menu a {
    color: white;
    font-weight: 300;
    padding: 0.75rem 0;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    text-decoration: none;
    outline: none;
}

.nav-menu a:focus {
    outline: none;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

/* ביטול הקו התחתון לכפתור הזמנת דוגמאות */
.nav-menu a.btn-nav-sample::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
}

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

/* ביטול הקו התחתון גם ב-hover לכפתור הזמנת דוגמאות */
.nav-menu a.btn-nav-sample:hover::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.nav-menu a.active::after {
    width: 100%;
    background: var(--accent);
    height: 3px;
}

/* ביטול הקו התחתון גם כש-active לכפתור הזמנת דוגמאות */
.nav-menu a.btn-nav-sample.active::after,
.nav-menu a.active.btn-nav-sample::after {
    display: none !important;
    content: none !important;
    width: 0 !important;
    height: 0 !important;
    background: none !important;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    padding: 1rem 0;
    z-index: 999;
}

.mobile-nav.active {
    display: block;
}

.mobile-nav ul {
    list-style: none;
    padding: 0 1rem;
}

.mobile-nav li {
    border-bottom: 1px solid var(--line);
}

.mobile-nav li:last-child {
    border-bottom: none;
}

.mobile-nav a {
    display: block;
    padding: 1rem 0;
    color: var(--text-primary);
}

.mobile-submenu {
    display: none;
    padding-right: 1rem;
}

.mobile-submenu.active {
    display: block;
}

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

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-slide.active {
    opacity: 1;
}

.hero-text.fade,
.hero-description.fade,
.hero-special-text.fade {
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-text.fade-in,
.hero-description.fade-in,
.hero-special-text.fade-in {
    opacity: 1;
    transition: opacity 0.4s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.2) 50%, rgba(50, 50, 50, 0.3) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.hero-text {
    max-width: 500px;
    margin: 0;
    padding: 0;
    width: auto;
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 250px;
}

.hero-text h1 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 300;
    font-family: 'Heebo', 'Assistant', sans-serif;
    letter-spacing: 0.02em;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    overflow: visible;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-height: 110px;
}

.hero-text .highlight {
    color: var(--accent);
    position: relative;
    font-weight: 400;
}

.hero-text .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent));
    box-shadow: 0 0 10px rgba(230, 126, 34, 0.4);
}

.hero-description {
    font-size: 1.45rem;
    margin-bottom: 1.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    line-height: 1.7;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    font-family: 'Heebo', 'Assistant', sans-serif;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 60px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    height: 50px;
    align-items: center;
    min-height: 50px;
}

.hero-button {
    background: transparent;
    color: white;
    padding: 14px 28px;
    border: 2px solid var(--accent);
    border-radius: 25px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-family: 'Heebo', 'Assistant', sans-serif;
}

.hero-button:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Hero Navigation Dots */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 4;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-dot.active {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
}

/* Mobile Hero Adjustments */
@media (max-width: 768px) {
    .hero {
        height: 90vh !important;
        min-height: 300px !important;
    }
}

/* Sections */
section {
    padding: 70px 0;
    position: relative;
}

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

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--text-light);
}

.section-dark p {
    color: rgba(255, 255, 255, 0.8);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--brand);
    margin-bottom: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent);
}

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

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 2rem;
}

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

.grid-responsive {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Cards */
.card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.card:hover::before {
    transform: scaleX(1);
}

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

.card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.card h3 {
    color: var(--brand);
    margin-bottom: 1rem;
    font-weight: 700;
}

.card p {
    margin-bottom: 1.5rem;
}

.card-dark {
    background: var(--bg-dark);
    color: var(--text-light);
    border-color: var(--line-dark);
}

.card-dark h3 {
    color: var(--text-light);
}

.card-dark p {
    color: rgba(255, 255, 255, 0.8);
}

/* Product Cards */
.product-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
    transition: var(--transition);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 107, 53, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-dark);
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.product-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    margin: 2rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

th, td {
    padding: 1rem;
    text-align: right;
    border-bottom: 1px solid var(--line);
}

th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--brand);
}

tr:last-child td {
    border-bottom: none;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--line);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
    direction: rtl;
    font-weight: 500;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.15);
    transform: translateY(-2px);
}

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

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}

.checkbox-label:hover {
    color: var(--accent);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    transform: scale(1.2);
}

/* Alert/Notice boxes */
.notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: var(--radius);
    padding: 1rem;
    margin: 1rem 0;
    color: #856404;
}

.notice.b2b {
    background: #e3f2fd;
    border-color: #90caf9;
    color: #0d47a1;
}

.notice strong {
    font-weight: 600;
}

/* Gallery Columns Grid */
.gallery-columns-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.4rem;
    margin: 3rem 0 2rem 0;
    padding: 0;
    max-width: 100%;
    width: 100%;
}

.gallery-column {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.gallery-column-item {
    cursor: pointer;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.gallery-column-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

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

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

/* Column 1, 3, 5, 7: Small top, Large bottom */
.gallery-column:nth-child(odd) .gallery-column-item:nth-child(1) img {
    aspect-ratio: 1/0.9;
}

.gallery-column:nth-child(odd) .gallery-column-item:nth-child(2) img {
    aspect-ratio: 1/1.6;
}

/* Column 2, 4, 6: Large top, Small bottom */
.gallery-column:nth-child(even) .gallery-column-item:nth-child(1) img {
    aspect-ratio: 1/1.6;
}

.gallery-column:nth-child(even) .gallery-column-item:nth-child(2) img {
    aspect-ratio: 1/0.9;
}

/* Gallery CTA Container */
.gallery-cta-container {
    text-align: center;
    margin: 3rem 0 0 0;
    padding: 0;
    background: none;
}

.btn-gallery-more {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid #ffffff;
    cursor: pointer;
    text-align: center;
    letter-spacing: 0.3px;
}

.btn-gallery-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    border-color: #e67e22;
    color: #ffffff;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease;
}

.lightbox.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: scaleIn 0.3s ease;
}

.lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--accent-color);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .gallery-columns-grid {
        grid-template-columns: repeat(5, 1fr);
    }
    
    .gallery-section .container {
        max-width: 1200px;
    }
    
    .gallery-column:nth-child(n+6) {
        display: none;
    }
}

@media (max-width: 768px) {
    .gallery-columns-grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 0.2rem;
    }
    
    .gallery-column {
        gap: 0.2rem;
    }
    
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-section .container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .gallery-column:nth-child(n+6) {
        display: none;
    }
    
    .btn-gallery-more {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .gallery-columns-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0.15rem;
    }
    
    .gallery-column {
        gap: 0.15rem;
    }
    
    .gallery-section {
        padding: 40px 0;
    }
    
    .gallery-column:nth-child(n+5) {
        display: none;
    }
    
    .gallery-column .gallery-column-item:nth-child(1) img,
    .gallery-column .gallery-column-item:nth-child(2) img {
        aspect-ratio: 1/1.2;
    }
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination a,
.pagination span {
    padding: 0.5rem 1rem;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
}

.pagination a:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

.pagination .current {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--accent);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    font-weight: 500;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--line-dark);
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Footer Quick Contact Form */
.footer-form-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 2.5rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-form-container h3 {
    color: var(--accent);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.footer-form-container p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.quick-contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 1rem;
    align-items: center;
}

.quick-contact-form input {
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.quick-contact-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.quick-contact-form input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
}

.quick-contact-form .btn-accent {
    background: var(--accent);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--radius);
    transition: var(--transition);
    white-space: nowrap;
}

.quick-contact-form .btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.quick-contact-form .btn-accent:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 1rem;
    padding: 12px 16px;
    border-radius: var(--radius);
    text-align: center;
}

.form-message.success {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.form-message.error {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

/* Footer Contact Info Styling */
.footer .contact-info {
    list-style: none;
}

.footer .contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer .contact-icon {
    flex-shrink: 0;
    opacity: 0.7;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.footer .contact-icon svg {
    fill: var(--accent);
}

/* Footer Social Links */
.footer .social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: var(--transition);
}

.footer .social-links a svg {
    fill: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

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

.footer .social-links a:hover svg {
    fill: white;
}

/* Footer Legal Links */
.footer .legal-links {
    list-style: none;
}

.footer .legal-links li {
    margin-bottom: 0.5rem;
}

.footer .legal-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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

/* Footer Form Responsive */
@media (max-width: 992px) {
    .quick-contact-form .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-contact-form .btn-accent {
        grid-column: span 2;
    }
}

@media (max-width: 576px) {
    .footer-form-section {
        padding: 1.5rem;
    }
    
    .quick-contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-form .btn-accent {
        grid-column: span 1;
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(3, 1fr); }
    .mega-menu { min-width: 400px; }
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .mobile-menu-toggle { display: flex; }
    
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-content {
        position: relative;
        text-align: center;
        padding: 0 20px;
        max-width: 100%;
    }
    
    .hero-text {
        max-width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .hero-text h1 { 
        font-size: 2.2rem;
        line-height: 1.2;
        height: 85px;
        min-height: 85px;
        display: flex;
        align-items: center;
        justify-content: center;
        white-space: nowrap;
    }
    
    .hero-description {
        font-size: 1.35rem;
        height: 50px;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        height: 50px;
        min-height: 50px;
    }
    
    .hero-text {
        height: 220px;
        min-height: 220px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    section { 
        padding: 50px 0; 
    }
    
    .section-title { 
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .mega-menu-content {
        grid-template-columns: 1fr;
    }
    
    .mega-menu-footer {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 15px; }
    
    .hero { 
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-text h1 { 
        font-size: 2.2rem; 
    }
    
    .hero-description { 
        font-size: 1.1rem; 
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    section { 
        padding: 40px 0; 
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .hero-dots {
        bottom: 20px;
    }
    
    .hero-dot {
        width: 10px;
        height: 10px;
    }
    
    .about-preview-text h2 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .about-preview-text h2::after {
        margin: 0.8rem auto 0;
    }
    
    .about-preview-text .intro {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .about-preview-text p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    /* Footer in mobile - 2 columns instead of 1 */
    .footer .footer-content {
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5rem !important;
        margin-bottom: 2rem;
    }
    
    .footer-section h4 {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .footer-section li {
        margin-bottom: 0.5rem;
    }
    
    .footer-section a {
        font-size: 0.85rem;
    }
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--line);
    color: var(--text-primary);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

/* Contrast Sections */
.section-contrast {
    background: var(--bg-dark);
    color: var(--text-light);
    position: relative;
}

.section-contrast::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.section-contrast h2,
.section-contrast h3 {
    color: var(--text-light);
}

.section-contrast p {
    color: rgba(255, 255, 255, 0.85);
}

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

.section-contrast .btn-primary:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
}

/* Animated Elements */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Dividers */
.section-divider {
    height: 5px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
    margin: 0;
}

/* Enhanced Typography */
.text-large {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
}

.text-bold {
    font-weight: 700;
}

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1023px) and (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 107, 53, 0.1) 50%, transparent 70%);
    transform: rotate(-45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.service-card:hover::before {
    opacity: 1;
    transform: rotate(-45deg) translate(20px, 20px);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-dark);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    position: relative;
    z-index: 2;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--brand);
    position: relative;
    z-index: 2;
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-features {
    list-style: none;
    text-align: right;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--text-secondary);
    font-weight: 500;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
    margin-left: 0.5rem;
}

/* Product Categories */
.product-categories {
    margin: 5rem 0;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-title {
    font-size: 2.5rem;
    color: var(--brand);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 900;
}

.category-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.products-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.product-showcase-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.product-showcase-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-dark);
    border-color: var(--accent);
}

.product-showcase-image {
    height: 250px;
    background: linear-gradient(135deg, var(--bg-gray), var(--line));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-showcase-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-showcase-card:hover .product-showcase-image::before {
    opacity: 1;
}

.product-showcase-image .icon {
    font-size: 4rem;
    color: var(--accent);
    z-index: 2;
    position: relative;
}

.product-showcase-content {
    padding: 2rem;
}

.product-showcase-content h4 {
    font-size: 1.4rem;
    color: var(--brand);
    margin-bottom: 1rem;
    font-weight: 700;
}

.product-showcase-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-specs {
    background: var(--bg-gray);
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.product-specs h5 {
    font-size: 1rem;
    color: var(--brand);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
}

.product-specs ul {
    list-style: none;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.product-specs li {
    padding: 0.25rem 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a1a 100%);
    color: var(--text-light);
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 60%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive adjustments for new sections */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .products-showcase {
        grid-template-columns: 1fr;
    }
    
    .category-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* About Preview Section */
.about-preview {
    position: relative;
    padding: 42px 0 53px 0;
    background: var(--bg-gray);
    overflow: hidden;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Background Image */
.about-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../assets/images/about/workshop-main.jpg'), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Fade Overlay - Right Side */
.about-fade-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(248, 249, 250, 0.2) 20%,
        rgba(248, 249, 250, 0.6) 50%,
        rgba(248, 249, 250, 0.9) 80%,
        var(--bg-gray) 100%
    );
    z-index: 2;
}

.about-preview-content {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 315px;
}

.about-preview-text {
    max-width: 600px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 2.1rem 2.6rem;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-preview-text h2 {
    font-size: 2.2rem;
    color: var(--brand);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 900;
    text-align: right;
}

.about-preview-text h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent);
    margin: 0.8rem 0 0 auto;
}

.about-preview-text .intro {
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.highlight-orange {
    color: var(--accent);
    font-weight: 700;
}

.about-preview-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.about-highlights {
    list-style: none;
    margin: 2rem 0;
}

.about-highlights li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--text-secondary);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.about-highlights li:last-child {
    border-bottom: none;
}

.about-highlights li::before {
    content: '✓';
    color: var(--accent);
    font-weight: bold;
    font-size: 1.2rem;
    margin-left: 1rem;
}

/* Responsive for About Preview */
@media (max-width: 1024px) {
    .about-fade-overlay {
        width: 55%;
    }
    
    .about-preview-text {
        max-width: 500px;
        padding: 1.9rem 2.3rem;
    }
}

@media (max-width: 768px) {
    .about-preview {
        padding: 37px 0 47px 0;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .about-background-image {
        background-position: center;
    }
    
    .about-fade-overlay {
        width: 100%;
        right: 0;
        left: 0;
        background: linear-gradient(
            180deg,
            transparent 0%,
            rgba(248, 249, 250, 0.3) 40%,
            rgba(248, 249, 250, 0.8) 70%,
            var(--bg-gray) 100%
        );
    }
    
    .about-preview-content {
        justify-content: center;
        min-height: 294px;
    }
    
    .about-preview-text {
        max-width: 100%;
        padding: 1.6rem;
        margin: 0 1rem;
    }
    
    .about-preview-text h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .about-preview-text h2::after {
        margin: 0.8rem auto 0;
    }
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Sliding Products Section */
.sliding-products {
    padding: 100px 0;
    background: var(--bg-gray);
    overflow: hidden;
}

.sliding-products-header {
    text-align: center;
    margin-bottom: 4rem;
}

.sliding-products-header h2 {
    font-size: 3rem;
    color: var(--brand);
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 900;
}

.sliding-products-header p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.products-slider-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Ccircle cx='40' cy='40' r='38' fill='%23000000' fill-opacity='0.7'/%3E%3Ctext x='40' y='36' fill='white' font-size='12' font-family='Arial' text-anchor='middle' font-weight='bold'%3Eגלול%3C/text%3E%3Ctext x='40' y='50' fill='white' font-size='12' font-family='Arial' text-anchor='middle' font-weight='bold'%3Eלצד%3C/text%3E%3C/svg%3E") 40 40, grab;
    overflow: hidden;
}

.products-slider {
    display: flex;
    gap: 2.8rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: inherit;
    user-select: none;
    transform: translateX(0);
}

.products-slider.dragging {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ccircle cx='16' cy='16' r='14' fill='%23ff6b35' fill-opacity='0.8'/%3E%3C/svg%3E") 16 16, grabbing;
    transition: none;
}

.product-slide {
    min-width: 420px;
    flex: 0 0 420px;
    position: relative;
    cursor: inherit;
}

.product-slide-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: var(--transition);
}

.product-slide-link:hover {
    color: inherit;
    text-decoration: none;
}

.product-slide-link:hover .product-slide-image {
    transform: translateY(-5px);
    box-shadow: var(--shadow-dark);
}

.product-slide-image {
    width: 100%;
    height: 336px;
    border-radius: var(--radius);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: inherit;
}

.product-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-slide:hover .product-slide-image img {
    transform: scale(1.05);
}

.product-slide-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.product-slide:hover .product-slide-image::before {
    opacity: 1;
}

.product-slide-title {
    margin-top: 1.5rem;
    text-align: right;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--brand);
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    padding-bottom: 0.5rem;
}

.product-slide-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background: var(--brand);
    transition: all 0.3s ease;
}

.product-slide:hover .product-slide-title {
    color: var(--brand);
}

.product-slide:hover .product-slide-title::after {
    background: var(--accent);
    width: 60px;
}

/* Responsive Design for Sliding Products */
@media (max-width: 1024px) {
    .product-slide {
        min-width: 384px;
        flex: 0 0 384px;
    }
    
    .product-slide-image {
        height: 300px;
    }
    
    .product-slide-title {
        font-size: 1.2rem;
    }
    
    .products-slider-container {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .sliding-products-header h2 {
        font-size: 2.5rem;
    }
    
    .products-slider-container {
        cursor: default;
        padding: 0 20px;
    }
    
    .product-slide {
        min-width: 264px;
        flex: 0 0 264px;
    }
    
    .product-slide-image {
        height: 216px;
    }
    
    .product-slide-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .sliding-products-header h2 {
        font-size: 2rem;
    }
    
    .products-slider-container {
        cursor: default;
        padding: 0 15px;
    }
    
    .products-slider {
        gap: 1rem;
    }
    
    .product-slide {
        min-width: 240px;
        flex: 0 0 240px;
    }
    
    .product-slide-image {
        height: 192px;
    }
    
    .product-slide-title {
        font-size: 0.9rem;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .btn,
    .mobile-menu-toggle {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        padding: 20px 0;
    }
}

/* Products Gallery Section */
.products-gallery {
    padding: 40px 0 80px;
    background: var(--bg-white);
    position: relative;
}

.products-gallery-header {
    text-align: center;
    margin-bottom: 5mm; /* 5mm מרחק בדיוק */
}

.products-gallery-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Gallery Minimal Header */
.gallery-minimal-header {
    position: absolute;
    top: 30px;
    right: 40px;
    z-index: 4;
    color: white;
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.8;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gallery-minimal-header span {
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Gallery Slider Container */
.gallery-slider-container {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 600px;
    overflow: hidden;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.gallery-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: 1;
}

.gallery-slide.active {
    opacity: 1;
    transform: translateX(0);
    z-index: 2;
}

.gallery-slide.prev {
    transform: translateX(-100%);
    opacity: 0;
}

.gallery-slide.next {
    transform: translateX(100%);
    opacity: 0;
}

/* Background Image */
.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.5);
    transition: filter 0.3s ease;
}

/* Slide Content */
.slide-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    color: white;
}

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

.slide-title {
    font-size: 3.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.slide-description {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    color: #FF8C00;
}

.slide-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.slide-features li {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding-right: 3rem;
    opacity: 0.9;
}

.slide-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    top: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, var(--accent), #ff8c5a);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: var(--transition);
    border-radius: 25px;
    box-shadow: var(--shadow);
    border: 2px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
}

.slide-cta:hover {
    background: linear-gradient(135deg, var(--brand), #333);
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.4);
}

.slide-cta::before {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.slide-cta:hover::before {
    transform: translateX(5px);
}

/* Product Image */
.content-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-showcase {
    width: 100%;
    max-width: 500px;
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transition: var(--transition);
    border: 4px solid rgba(255,255,255,0.1);
}

.product-showcase img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation Arrows - Clean Setup */
.nav-arrow {
    position: absolute;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    user-select: none;
}

/* Desktop: Round buttons on sides */
.nav-arrow {
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    font-size: 2rem;
}

.nav-arrow.prev {
    left: 2rem;
}

.nav-arrow.next {
    right: 2rem;
}

.nav-arrow:hover {
    background: rgba(255, 107, 53, 0.9);
    border-color: var(--accent);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
    .gallery-slider-container {
        height: 90vh;
        min-height: 500px;
    }

    .gallery-minimal-header {
        top: 20px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        font-size: 0.9rem;
        text-align: center;
    }

    .gallery-minimal-header span {
        padding: 6px 14px;
        font-size: 0.9rem;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .products-gallery-header h2 {
        font-size: 2rem;
    }

    .slide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 2rem;
        text-align: center;
        align-items: flex-start;
        justify-content: center;
        padding-top: 6rem;
        padding-bottom: 4rem;
        min-height: 100%;
        display: flex;
        flex-direction: column;
    }

    .content-text {
        text-align: center;
        order: 1;
        max-width: 500px;
        margin: 0 auto;
    }

    .content-image {
        display: none; /* Hide image on mobile */
    }

    .slide-title {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }

    .slide-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        color: #FF8C00;
    }

    .slide-features {
        margin-bottom: 2rem;
    }

    .slide-features li {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        text-align: right;
        padding-right: 2rem;
    }

    .slide-cta {
        padding: 0.8rem 2rem;
        font-size: 0.85rem;
    }

    /* Mobile: Create container for centered buttons */
    .gallery-slider::after {
        content: "";
        position: absolute;
        bottom: 1.5rem;
        left: 50%;
        transform: translateX(-50%);
        width: 140px;
        height: 50px;
        pointer-events: none;
    }

    .nav-arrow {
        top: auto;
        bottom: 1.5rem;
        transform: none;
        width: 60px;
        height: 45px;
        border-radius: 22px;
        font-size: 0;
    }

    .nav-arrow.prev {
        left: 50%;
        right: auto;
        transform: translateX(-80px);
    }

    .nav-arrow.next {
        left: 50%;
        right: auto;
        transform: translateX(20px);
    }

    .nav-arrow.prev::after {
        content: "◀";
        font-size: 1.2rem;
    }

    .nav-arrow.next::after {
        content: "▶";
        font-size: 1.2rem;
    }

    .nav-arrow:hover {
        transform: scale(1.1);
    }
}

@media (max-width: 480px) {
    .gallery-slider-container {
        height: 80vh;
        min-height: 450px;
    }

    .products-gallery-header h2 {
        font-size: 1.8rem;
    }

    .slide-content {
        padding: 3rem 1rem;
        padding-top: 5rem;
    }

    .slide-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .slide-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        color: #FF8C00;
    }

    .slide-features {
        margin-bottom: 1.5rem;
    }

    .slide-features li {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .slide-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Small mobile: Smaller oval buttons */
    .nav-arrow {
        width: 55px;
        height: 40px;
        border-radius: 20px;
        font-size: 0;
        bottom: 1rem;
    }

        .nav-arrow.prev {
            left: 50%;
            right: auto;
            transform: translateX(-80px);
        }

        .nav-arrow.next {
            left: 50%;
            right: auto;
            transform: translateX(20px);
        }    .nav-arrow.prev::after {
        font-size: 1rem;
    }

    .nav-arrow.next::after {
        font-size: 1rem;
    }
}

/* Articles Section */
.articles-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.article-card {
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.article-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

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

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-content {
    padding: 1.3rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--brand);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.article-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.article-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    align-self: flex-start;
}

.article-link:hover {
    border-bottom-color: var(--accent);
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #ffffff;
    position: relative;
    margin-bottom: 0;
}

.gallery-section .container {
    max-width: 1400px;
    padding: 0 2rem;
}

.gallery-section .section-title {
    color: #ffffff;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Gallery Navigation - Hidden */
.gallery-nav {
    display: none;
}

/* Gallery Navigation Arrows */
.gallery-navigation {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 1.5rem;
    padding: 0 2rem;
}

.gallery-arrow {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
    width: 70px;
    height: 45px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    font-weight: 300;
    backdrop-filter: blur(10px);
}

.gallery-arrow:hover {
    background: var(--accent);
    color: white;
    border-color: var(--accent);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.3);
}

.gallery-arrow.disabled {
    display: none;
}

/* Gallery Pages */
.gallery-page {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-page.active {
    display: block;
    opacity: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    border: 2px solid var(--border-light);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

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

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Mobile Responsive for Articles and Gallery */
@media (max-width: 768px) {
    .articles-section {
        padding: 40px 0;
    }
    
    .gallery-section {
        padding: 40px 0;
    }
    
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .gallery-item:nth-child(10) {
        display: none;
    }

    .gallery-navigation {
        gap: 2.5rem;
        margin-top: 1.2rem;
        padding: 0 1rem;
    }

    .gallery-arrow {
        width: 60px;
        height: 40px;
        font-size: 1.2rem;
        border-radius: 20px;
    }

    .article-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .article-content {
        padding: 1.2rem;
    }
    
    .article-image {
        height: 160px;
    }
    
    .gallery-nav {
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        padding-top: 1.5rem;
    }
    
    .gallery-nav-btn {
        padding: 0.6rem 1.5rem;
        margin: 0 0.25rem;
        font-size: 0.8rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .articles-section {
        padding: 30px 0;
    }
    
    .gallery-section {
        padding: 30px 0;
    }
    
    .gallery-nav {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .gallery-nav-btn {
        display: block;
        margin: 0.5rem auto;
        width: 200px;
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        padding: 0 15px;
    }
    
    .article-content h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .article-content {
        padding: 1rem;
    }
    
    .article-image {
        height: 140px;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* Contact Form Section */
.contact-form-section {
    background: white;
    padding: 60px 0;
    border-top: 1px solid var(--border-light);
}

.form-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.form-group {
    position: relative;
    flex: 1;
    margin-bottom: 2.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 0;
    border: none;
    border-bottom: 1px solid var(--border-light);
    font-size: 1rem;
    font-family: var(--font-family);
    background: transparent;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: var(--text-dark);
}

/* Error states for required fields */
.form-group.error input,
.form-group.error textarea {
    border-bottom-color: #e74c3c;
}

.form-group.error label {
    color: #e74c3c !important;
}

.form-group .error-message {
    color: #e74c3c;
    font-size: 0.75rem;
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.25rem;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

.form-group label {
    position: absolute;
    top: 0.8rem;
    right: 0;
    color: var(--text-muted);
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    font-size: 0.75rem;
    color: var(--text-dark);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
    padding-top: 1rem;
}

.form-required-note {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 2rem;
    text-align: right;
}

.submit-btn {
    background: var(--text-dark);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
    border-radius: 0;
}

/* Footer Contact Form Styling */
.footer .contact-form-container {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer .contact-form-header {
    flex: 0 0 200px;
    text-align: right;
}

.footer .contact-form-header h2 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 2rem;
    font-weight: 600;
}

.footer .contact-form-header h3 {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 1.5rem;
    font-weight: 400;
}

.footer .contact-form {
    flex: 1;
}

/* Desktop Layout - Side by Side */
@media (min-width: 769px) {
    .footer .contact-form-container {
        gap: 4rem;
        max-width: 1000px;
        margin: 0 auto 3rem auto;
    }
    
    .footer .contact-form-header {
        flex: 0 0 250px;
    }
}

.footer .form-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
    flex: 1;
}

.footer .form-group input,
.footer .form-group textarea {
    color: var(--text-light);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    padding: 0.8rem 0;
    width: 100%;
    font-size: 1rem;
}

.footer .form-group input:focus,
.footer .form-group textarea:focus {
    border-bottom-color: rgba(255, 255, 255, 0.8);
    outline: none;
}

.footer .form-group label {
    color: rgba(255, 255, 255, 0.7);
}

.footer .form-group input:focus + label,
.footer .form-group textarea:focus + label,
.footer .form-group input:not(:placeholder-shown) + label,
.footer .form-group textarea:not(:placeholder-shown) + label {
    color: var(--text-light);
}

.footer .form-required-note {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.footer .submit-btn {
    background: var(--text-light);
    color: var(--text-dark);
}

.footer .submit-btn:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Mobile Responsive for Footer Contact Form */
@media (max-width: 768px) {
    .footer .contact-form-container {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer .contact-form-header {
        flex: none;
        order: 1;
    }
    
    .footer .contact-form {
        order: 2;
    }
    
    .footer .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .footer .contact-form-header h2 {
        font-size: 1.5rem;
    }

    .footer .contact-form-header h3 {
        font-size: 1.2rem;
    }
}

/* ===================================
   SERVICES & PRODUCTS GRID LAYOUT
   ===================================*/

/* Main Services Section */
.main-services {
    padding: 80px 0;
    background: var(--bg-white);
}

/* Services Grid - שלוש כרטיסיות במרכז, בגודל שווה */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    justify-content: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto 4rem auto;
    padding: 0 20px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Service Card - גובה אחיד וכפתורים בתחתית */
.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 480px;
    height: 100%;
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-dark);
    border-color: var(--line);
}

/* Service Card Elements */
.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--brand);
}

.service-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Service Features List */
.service-features {
    list-style: none;
    text-align: right;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-features li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding-right: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--accent);
    font-weight: 600;
}

/* Service Card Button - תמיד בתחתית */
.service-card .btn-services {
    margin-top: auto;
    align-self: center;
}

/* רספונסיבי לטאבלט */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .service-card {
        min-height: 420px;
    }
}

/* רספונסיבי למובייל */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 100%;
        padding: 0 10px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        min-height: 0;
        padding: 1.5rem;
    }
    
    .main-services {
        padding: 60px 0;
    }
}

/* Products Overview Section */
.products-overview {
    background: var(--bg-gray);
    padding: 80px 0;
}

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

/* Simple Clean Checkboxes */
.simple-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1.5rem 0;
    /* בלי רקע, בלי מסגרת - פשוט ונקי */
}

.simple-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--accent);
    cursor: pointer;
    flex-shrink: 0;
}

.simple-checkbox label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    cursor: pointer;
    flex: 1;
}

.simple-checkbox label a {
    color: var(--accent);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.simple-checkbox label a:hover {
    color: #fff;
}

.simple-checkbox input[type="checkbox"]:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* Error state for simple checkboxes */
.simple-checkbox input[type="checkbox"].error {
    outline: 2px solid #dc3545;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .simple-checkbox {
        margin: 1.2rem 0;
        gap: 0.6rem;
    }
    
    .simple-checkbox label {
        font-size: 0.85rem;
    }
}

/* Legal Pages Styling */
.legal-section {
    font-family: 'Heebo', sans-serif;
}

.legal-block {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--line);
}

.legal-block:last-child {
    border-bottom: none;
}

.legal-block h2 {
    color: var(--brand);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-block h3 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem 0;
    font-weight: 500;
}

.legal-block p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-block ul {
    color: var(--text-secondary);
    margin: 1rem 0;
    padding-right: 1.5rem;
}

.legal-block ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.legal-block ol {
    color: var(--text-secondary);
    margin: 1rem 0;
    padding-right: 1.5rem;
}

.legal-block ol li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.legal-block a {
    color: var(--accent);
    text-decoration: underline;
}

.legal-block a:hover {
    color: var(--brand);
}

@media (max-width: 768px) {
    .legal-block {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .legal-block h2 {
        font-size: 1.3rem;
    }
    
    .legal-block ul,
    .legal-block ol {
        padding-right: 1rem;
    }
}

/* ========================================
   ENHANCED FORM STYLES - תיקוני טופס משופרים
   ======================================== */

/* Enhanced Submit Button - styled like other buttons in the site */
.footer .submit-btn.btn-primary {
    background: var(--accent);
    color: white;
    border: 2px solid var(--accent);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    text-transform: none;
    font-family: 'Assistant', 'Heebo', sans-serif;
}

.footer .submit-btn.btn-primary:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.footer .submit-btn.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

/* Form Error Message */
.form-error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 6px;
    padding: 1rem;
    margin: 1.5rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    display: none;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Error state styling for form inputs */
.form-group input.error,
.form-group textarea.error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1) !important;
}

.form-group input.error:focus,
.form-group textarea.error:focus {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.2) !important;
}

/* Error state for checkboxes */
input[type="checkbox"].error + .checkbox-label .checkbox-custom {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.1) !important;
}

/* Mobile responsiveness for enhanced form */
@media (max-width: 768px) {
    .footer .submit-btn.btn-primary {
        width: 100%;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
    
    .form-error-message {
        font-size: 0.9rem;
        padding: 0.8rem;
    }
}
