/* =====================================================
   המדייק - Luxury Premium Website
   Ultra Premium Stylesheet
   ===================================================== */

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

/* Custom Properties */
:root {
    /* Premium Light Luxury Color Palette - Elegant Gray Edition */
    --color-bg: #FAFAFA;
    --color-bg-light: #F5F5F5;
    --color-bg-lighter: #EFEFEF;
    --color-surface: #FFFFFF;
    --color-surface-elevated: #FFFFFF;
    --color-dark: #0A0A0A;
    --color-dark-soft: #1A1A1A;

    /* Luxurious Silver & Gray Tones - Premium Elegance */
    --color-gold: #6B6B6B;
    --color-gold-rich: #8A8A8A;
    --color-gold-light: #A8A8A8;
    --color-gold-pale: #D4D4D4;
    --color-gold-dark: #4A4A4A;
    --color-gold-muted: rgba(100, 100, 100, 0.12);
    --color-gold-glow: rgba(150, 150, 150, 0.5);

    /* Refined Neutrals */
    --color-cream: #FAFAFA;
    --color-cream-dark: #F0F0F0;
    --color-charcoal: #1A1A1A;
    --color-charcoal-light: #3A3A3A;

    /* Text Colors - Dark for Light Background */
    --color-text: #1A1A1A;
    --color-text-secondary: #4A4A4A;
    --color-text-muted: #7A7A7A;
    --color-text-light: #FFFFFF;

    /* Borders */
    --color-border: rgba(0, 0, 0, 0.08);
    --color-border-gold: rgba(100, 100, 100, 0.35);

    /* Premium Gradients - Luxurious Monochrome */
    --gradient-gold: linear-gradient(135deg, #8A8A8A 0%, #6B6B6B 25%, #4A4A4A 50%, #2A2A2A 100%);
    --gradient-gold-shine: linear-gradient(90deg, transparent 0%, rgba(200, 200, 200, 0.6) 50%, transparent 100%);
    --gradient-gold-text: linear-gradient(135deg, #8A8A8A 0%, #5A5A5A 50%, #8A8A8A 100%);
    --gradient-hero: linear-gradient(180deg, rgba(250, 250, 250, 0) 0%, rgba(250, 250, 250, 1) 100%);
    --gradient-section: radial-gradient(ellipse at 50% 0%, rgba(100, 100, 100, 0.06) 0%, transparent 70%);
    --gradient-dark: linear-gradient(180deg, #0A0A0A 0%, #1A1A1A 100%);
    --gradient-dark-gold: linear-gradient(135deg, #0A0A0A 0%, #151515 50%, #0A0A0A 100%);

    /* Typography - Premium Hebrew Fonts */
    --font-hebrew: 'Heebo', 'Assistant', sans-serif;
    --font-hebrew-display: 'Heebo', 'Rubik', sans-serif;
    --font-hebrew-elegant: 'Assistant', 'Heebo', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-serif-elegant: 'Playfair Display', serif;
    --font-logo: 'Heebo', 'Assistant', sans-serif;
    --font-body: 'Heebo', 'Assistant', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;

    /* Animation */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);

    /* Refined Shadows for Light Theme */
    --shadow-sm: 0 2px 15px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.08);
    --shadow-gold: 0 20px 60px rgba(100, 100, 100, 0.2);
    --shadow-luxury: 0 30px 100px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 60px rgba(150, 150, 150, 0.35);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    font-size: 16px;
    line-height: 1.8;
    direction: rtl;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    letter-spacing: 0;
}

/* Decorative Background Elements */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 50% at 20% 20%, rgba(120, 120, 120, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 80%, rgba(120, 120, 120, 0.025) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Selection */
::selection {
    background: var(--color-gold);
    color: var(--color-bg);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 4px;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

/* =====================================================
   PRELOADER
   ===================================================== */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--color-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s var(--ease-expo), visibility 0.8s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-hebrew-display);
    font-size: 3rem;
    color: var(--color-gold);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-lg);
    animation: preloaderPulse 2s ease-in-out infinite;
}

.preloader-line {
    width: 100px;
    height: 2px;
    background: var(--color-bg-lighter);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-gold);
    animation: preloaderLine 1.5s var(--ease-expo) infinite;
}

@keyframes preloaderPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes preloaderLine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* =====================================================
   PARTICLES
   ===================================================== */
.particles-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

/* =====================================================
   HEADER - Premium Luxury
   ===================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    transition: all 0.5s var(--ease-smooth);
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(15, 15, 15, 0.85) 40%, rgba(20, 20, 20, 0.4) 70%, transparent 100%);
}

.header.scrolled {
    background: rgba(253, 251, 247, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.header.scrolled .logo-text {
    color: var(--color-text);
}

.header.scrolled .nav-link {
    color: var(--color-text-secondary);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--color-gold);
}

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

/* =====================================================
   PREMIUM GEOMETRIC BACKGROUND SYSTEM
   Architectural Window & Construction Patterns
   ===================================================== */

/* Main Decorative Background Pattern - Architectural Grid */
.bg-pattern {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    opacity: 0.4;
    background-image:
        /* Subtle golden radial glows */
        radial-gradient(ellipse 100% 80% at 15% 10%, rgba(120, 120, 120, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 80% 60% at 85% 85%, rgba(100, 100, 100, 0.03) 0%, transparent 50%),
        /* Architectural window frame grid - large rectangles */
        url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23D4AF37' opacity='0.06'%3E%3C!-- Window frame outer --%3E%3Crect x='20' y='20' width='60' height='80' stroke-width='0.5'/%3E%3Crect x='120' y='100' width='60' height='80' stroke-width='0.5'/%3E%3C!-- Window pane dividers --%3E%3Cline x1='50' y1='20' x2='50' y2='100' stroke-width='0.3'/%3E%3Cline x1='20' y1='60' x2='80' y2='60' stroke-width='0.3'/%3E%3Cline x1='150' y1='100' x2='150' y2='180' stroke-width='0.3'/%3E%3Cline x1='120' y1='140' x2='180' y2='140' stroke-width='0.3'/%3E%3C!-- Corner accents --%3E%3Cpath d='M20 20 L20 30 M20 20 L30 20' stroke-width='0.8'/%3E%3Cpath d='M80 20 L80 30 M80 20 L70 20' stroke-width='0.8'/%3E%3Cpath d='M20 100 L20 90 M20 100 L30 100' stroke-width='0.8'/%3E%3Cpath d='M80 100 L80 90 M80 100 L70 100' stroke-width='0.8'/%3E%3C/g%3E%3C/svg%3E"),
        /* Blueprint grid lines */
        url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23B8860B' opacity='0.03'%3E%3Cline x1='0' y1='50' x2='100' y2='50' stroke-width='0.5'/%3E%3Cline x1='50' y1='0' x2='50' y2='100' stroke-width='0.5'/%3E%3C/g%3E%3C/svg%3E");
}

/* Animated Floating Geometric Shapes Container */
.geometric-shapes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

/* Individual geometric shape - window frame style */
.geo-shape {
    position: absolute;
    pointer-events: none;
    opacity: 0;
    animation: geoFloat 40s ease-in-out infinite;
}

.geo-shape--window {
    width: 80px;
    height: 100px;
    border: 1px solid rgba(120, 120, 120, 0.08);
    background: transparent;
}

.geo-shape--window::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(120, 120, 120, 0.06);
}

.geo-shape--window::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(120, 120, 120, 0.06);
}

.geo-shape--corner {
    width: 30px;
    height: 30px;
    border-top: 2px solid rgba(120, 120, 120, 0.1);
    border-right: 2px solid rgba(120, 120, 120, 0.1);
    background: transparent;
}

.geo-shape--line {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(120, 120, 120, 0.08), transparent);
}

.geo-shape--diamond {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(120, 120, 120, 0.06);
    transform: rotate(45deg);
    background: transparent;
}

@keyframes geoFloat {

    0%,
    100% {
        opacity: 0;
        transform: translateY(0) translateX(0) rotate(0deg);
    }

    10% {
        opacity: 0.6;
    }

    50% {
        transform: translateY(-60px) translateX(30px) rotate(3deg);
    }

    90% {
        opacity: 0.6;
    }
}

/* Position variations for geometric shapes */
.geo-shape:nth-child(1) {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.geo-shape:nth-child(2) {
    top: 30%;
    left: 8%;
    animation-delay: 5s;
}

.geo-shape:nth-child(3) {
    top: 60%;
    right: 12%;
    animation-delay: 10s;
}

.geo-shape:nth-child(4) {
    top: 80%;
    left: 15%;
    animation-delay: 15s;
}

.geo-shape:nth-child(5) {
    top: 20%;
    left: 25%;
    animation-delay: 20s;
}

.geo-shape:nth-child(6) {
    top: 45%;
    right: 20%;
    animation-delay: 25s;
}

.geo-shape:nth-child(7) {
    top: 70%;
    right: 8%;
    animation-delay: 30s;
}

.geo-shape:nth-child(8) {
    top: 15%;
    right: 30%;
    animation-delay: 35s;
}

.geo-shape:nth-child(9) {
    top: 55%;
    left: 5%;
    animation-delay: 8s;
}

.geo-shape:nth-child(10) {
    top: 85%;
    right: 25%;
    animation-delay: 18s;
}

/* Mobile optimization - reduce shapes */
@media (max-width: 768px) {
    .bg-pattern {
        opacity: 0.25;
    }

    .geo-shape:nth-child(n+6) {
        display: none;
    }

    .geo-shape--window {
        width: 50px;
        height: 65px;
    }
}

/* =====================================================
   PREMIUM LOGO - Animated & Elegant  
   ===================================================== */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    text-decoration: none;
    position: relative;
}

.logo-mark {
    position: relative;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: logoElegantFloat 6s ease-in-out infinite;
}

@keyframes logoElegantFloat {

    0%,
    100% {
        transform: translateY(0);
        filter: drop-shadow(0 4px 12px rgba(120, 120, 120, 0.25));
    }

    50% {
        transform: translateY(-3px);
        filter: drop-shadow(0 8px 20px rgba(120, 120, 120, 0.4));
    }
}

.logo-letter {
    font-family: 'Arial', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: #000000;
    -webkit-text-fill-color: #000000;
    position: relative;
    z-index: 2;
}

@keyframes logoTextShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.logo-frame {
    position: absolute;
    inset: 0;
}

/* Premium Frame Corners - Precision Theme */
.frame-corner {
    position: absolute;
    width: 14px;
    height: 14px;
    transition: all 0.5s var(--ease-expo);
    background: transparent;
}

/* Corner L-shapes using pseudo-elements */
.frame-corner::before,
.frame-corner::after {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold), var(--color-gold-dark));
    background-size: 200% 200%;
    animation: cornerGradient 4s ease-in-out infinite;
}

@keyframes cornerGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.frame-corner.tl {
    top: 0;
    right: 0;
}

.frame-corner.tl::before {
    top: 0;
    right: 0;
    width: 14px;
    height: 2px;
    border-radius: 1px;
}

.frame-corner.tl::after {
    top: 0;
    right: 0;
    width: 2px;
    height: 14px;
    border-radius: 1px;
}

.frame-corner.tr {
    top: 0;
    left: 0;
}

.frame-corner.tr::before {
    top: 0;
    left: 0;
    width: 14px;
    height: 2px;
    border-radius: 1px;
    animation-delay: 1s;
}

.frame-corner.tr::after {
    top: 0;
    left: 0;
    width: 2px;
    height: 14px;
    border-radius: 1px;
    animation-delay: 1s;
}

.frame-corner.bl {
    bottom: 0;
    right: 0;
}

.frame-corner.bl::before {
    bottom: 0;
    right: 0;
    width: 14px;
    height: 2px;
    border-radius: 1px;
    animation-delay: 2s;
}

.frame-corner.bl::after {
    bottom: 0;
    right: 0;
    width: 2px;
    height: 14px;
    border-radius: 1px;
    animation-delay: 2s;
}

.frame-corner.br {
    bottom: 0;
    left: 0;
}

.frame-corner.br::before {
    bottom: 0;
    left: 0;
    width: 14px;
    height: 2px;
    border-radius: 1px;
    animation-delay: 3s;
}

.frame-corner.br::after {
    bottom: 0;
    left: 0;
    width: 2px;
    height: 14px;
    border-radius: 1px;
    animation-delay: 3s;
}

/* Subtle glow animation */
@keyframes cornerGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 3px rgba(120, 120, 120, 0.3));
    }

    50% {
        filter: drop-shadow(0 0 8px rgba(120, 120, 120, 0.6));
    }
}

.frame-corner {
    animation: cornerGlow 4s ease-in-out infinite;
}

.frame-corner.tl {
    animation-delay: 0s;
}

.frame-corner.tr {
    animation-delay: 1s;
}

.frame-corner.bl {
    animation-delay: 2s;
}

.frame-corner.br {
    animation-delay: 3s;
}

.logo:hover .logo-mark {
    animation-play-state: paused;
    transform: translateY(-3px) scale(1.02);
}

.logo:hover .frame-corner {
    width: 18px;
    height: 18px;
    filter: drop-shadow(0 0 12px rgba(120, 120, 120, 0.7));
}

.logo:hover .frame-corner::before,
.logo:hover .frame-corner::after {
    background: linear-gradient(135deg, var(--color-gold-light), #fff, var(--color-gold));
}

.logo:hover .logo-letter {
    animation-play-state: paused;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: var(--font-logo);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-text-light);
    letter-spacing: 0.02em;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.logo-tagline {
    font-family: var(--font-hebrew);
    font-size: 0.65rem;
    color: var(--color-gold-light);
    letter-spacing: 0.15em;
    font-weight: 400;
    opacity: 0.9;
}

/* Legacy logo-icon support */
.logo-icon {
    width: 44px;
    height: 44px;
    color: var(--color-gold);
    transition: transform 0.4s var(--ease-smooth);
}

.logo:hover .logo-icon {
    transform: rotate(45deg);
}

/* Logo Image - New Image-Based Logo */
.logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: all 0.4s var(--ease-smooth);
    /* Make logo visible on dark header - bright/inverted before scroll */
    filter: brightness(0) invert(1);
}

.logo:hover .logo-image {
    transform: scale(1.02);
}

.header.scrolled .logo-image {
    height: 38px;
    /* Normal logo appearance after scroll */
    filter: none;
}

.footer-logo .logo-image {
    height: 50px;
}

@media (max-width: 768px) {
    .logo-image {
        height: 36px;
    }

    .header.scrolled .logo-image {
        height: 32px;
    }

    .footer-logo .logo-image {
        height: 42px;
    }
}

/* =====================================================
   NAVIGATION - Premium
   ===================================================== */
.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-family: var(--font-hebrew);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0;
    position: relative;
    padding: var(--space-xs) 0;
    transition: all 0.4s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.5s var(--ease-expo);
    border-radius: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: rgba(120, 120, 120, 0.3);
    filter: blur(4px);
    transition: width 0.5s var(--ease-expo);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-gold-light);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

/* Header scrolled state - navigation */
.header.scrolled .nav-link {
    color: var(--color-text-secondary);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--color-text);
}

/* Header scrolled state - logo */
.header.scrolled .logo-text {
    color: var(--color-text);
    text-shadow: none;
}

.header.scrolled .logo-tagline {
    color: var(--color-gold-dark);
}

.header.scrolled .logo-letter {
    color: var(--color-text);
    text-shadow: 0 0 30px rgba(120, 120, 120, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.3s ease;
}

/* Buttons - Premium Luxury */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    padding: 0.9rem 1.85rem;
    font-family: var(--font-hebrew-elegant);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.2) 50%, transparent 60%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

.btn svg {
    transition: transform 0.3s ease;
}

.btn:hover svg {
    transform: translateX(-4px);
}

.btn-primary {
    background: var(--gradient-gold);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 4px 15px rgba(120, 120, 120, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(120, 120, 120, 0.4);
}

.btn-gold {
    background: var(--gradient-gold);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(120, 120, 120, 0.4);
}

.btn-outline-dark {
    background: transparent;
    color: var(--color-charcoal);
    border: 1.5px solid var(--color-charcoal);
}

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

.btn-outline-light {
    background: transparent;
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-light:hover {
    background: white;
    color: var(--color-charcoal);
    border-color: white;
}

.btn-lg {
    padding: 1.125rem 2.25rem;
    font-size: 1rem;
}

/* =====================================================
   HERO CAROUSEL - Premium with Animated Elements
   ===================================================== */
.hero-carousel {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

/* Elegant Geometric Window Frames - Premium Hero Decoration */
.hero-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        /* Subtle window frame outlines scattered */
        url("data:image/svg+xml,%3Csvg width='400' height='400' viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23D4AF37' opacity='0.12'%3E%3C!-- Small window frame 1 --%3E%3Crect x='40' y='60' width='40' height='55' stroke-width='0.5'/%3E%3Cline x1='60' y1='60' x2='60' y2='115' stroke-width='0.3'/%3E%3Cline x1='40' y1='87' x2='80' y2='87' stroke-width='0.3'/%3E%3C!-- Small window frame 2 --%3E%3Crect x='320' y='280' width='50' height='70' stroke-width='0.5'/%3E%3Cline x1='345' y1='280' x2='345' y2='350' stroke-width='0.3'/%3E%3Cline x1='320' y1='315' x2='370' y2='315' stroke-width='0.3'/%3E%3C!-- Corner accent pieces --%3E%3Cpath d='M200 40 L200 55 M200 40 L215 40' stroke-width='1'/%3E%3Cpath d='M150 350 L165 350 M150 350 L150 335' stroke-width='1'/%3E%3C!-- Architectural lines --%3E%3Cline x1='280' y1='120' x2='350' y2='120' stroke-width='0.3'/%3E%3Cline x1='50' y1='250' x2='120' y2='250' stroke-width='0.3'/%3E%3C/g%3E%3C/svg%3E");
    animation: geoWindowFloat 35s ease-in-out infinite;
    z-index: 3;
    pointer-events: none;
    opacity: 0.7;
}

@keyframes geoWindowFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.5;
    }

    25% {
        transform: translateY(-15px) translateX(10px);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-5px) translateX(-8px);
        opacity: 0.6;
    }

    75% {
        transform: translateY(-20px) translateX(5px);
        opacity: 0.65;
    }
}

/* Architectural Window Frame - Premium Decoration */
.hero-carousel::after {
    content: '';
    position: absolute;
    top: 12%;
    right: 6%;
    width: 140px;
    height: 180px;
    border: 1px solid rgba(120, 120, 120, 0.15);
    animation: windowFloat 25s ease-in-out infinite;
    z-index: 3;
    pointer-events: none;
    background:
        /* Vertical divider */
        linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(120, 120, 120, 0.12) calc(50% - 0.5px), rgba(120, 120, 120, 0.12) calc(50% + 0.5px), transparent calc(50% + 0.5px)),
        /* Horizontal divider */
        linear-gradient(180deg, transparent calc(50% - 0.5px), rgba(120, 120, 120, 0.12) calc(50% - 0.5px), rgba(120, 120, 120, 0.12) calc(50% + 0.5px), transparent calc(50% + 0.5px));
}

/* Corner accent pieces for the window frame */
.hero-carousel::after {
    box-shadow:
        /* Top-left inner corner */
        inset 8px 8px 0 -7px rgba(120, 120, 120, 0.2),
        /* Top-right inner corner */
        inset -8px 8px 0 -7px rgba(120, 120, 120, 0.2),
        /* Bottom-left inner corner */
        inset 8px -8px 0 -7px rgba(120, 120, 120, 0.2),
        /* Bottom-right inner corner */
        inset -8px -8px 0 -7px rgba(120, 120, 120, 0.2);
}

@keyframes windowFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-30px) rotate(2deg);
        opacity: 0.8;
    }
}

.carousel-container {
    position: relative;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s var(--ease-smooth), visibility 1s;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-background {
    position: absolute;
    inset: 0;
}

.slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 8s ease-out;
}

.carousel-slide.active .slide-background img {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.25) 0%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.7) 100%);
}

.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s var(--ease-expo) 0.5s forwards;
    backdrop-filter: blur(10px);
}

.hero-title {
    margin-bottom: var(--space-lg);
}

.title-line {
    display: block;
    font-family: var(--font-hebrew-display);
    font-size: clamp(3.5rem, 10vw, 7rem);
    font-weight: 700;
    line-height: 1.1;
    color: white;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s var(--ease-expo) forwards;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.title-line:nth-child(1) {
    animation-delay: 0.7s;
}

.title-line:nth-child(2) {
    animation-delay: 0.9s;
}

.title-accent {
    font-family: var(--font-hebrew-elegant);
    font-style: normal;
    font-weight: 300;
    color: var(--color-gold-light);
}

.hero-subtitle {
    font-family: var(--font-hebrew);
    font-size: 1.2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s var(--ease-expo) 1.1s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    bottom: var(--space-3xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    z-index: 10;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.carousel-btn svg {
    stroke: white;
    stroke-width: 2;
}

.carousel-btn:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-bg);
}

.carousel-btn:hover svg {
    stroke: var(--color-bg);
}

.carousel-dots {
    display: flex;
    gap: var(--space-sm);
}

.carousel-dot {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.carousel-dot.active {
    background: var(--color-gold);
    width: 60px;
}

/* Scroll Indicator - Centered - Positioned below carousel controls */
.scroll-indicator {
    position: absolute;
    bottom: var(--space-sm);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.7rem;
    font-family: var(--font-hebrew);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    z-index: 5;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--color-gold-light), transparent);
    animation: scrollLineFloat 2.5s ease-in-out infinite;
}

@keyframes scrollLineFloat {

    0%,
    100% {
        transform: scaleY(1) translateY(0);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.8) translateY(5px);
        opacity: 0.6;
    }
}

/* Hero Side Info */
.hero-side-info {
    position: absolute;
    left: var(--space-xl);
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.side-stat {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.side-stat .stat-number {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--color-gold-light);
}

.side-stat .stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* =====================================================
   MARQUEE - Premium Gold - Continuous Seamless Scroll
   ===================================================== */
.marquee-section {
    background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 50%, var(--color-gold-dark) 100%);
    padding: var(--space-md) 0;
    overflow: hidden;
    position: relative;
}

.marquee-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, transparent 10%, transparent 90%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
    z-index: 2;
}

.marquee {
    display: flex;
    width: fit-content;
    gap: 0;
    animation: marqueeScroll 20s linear infinite;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    flex-shrink: 0;
    padding-left: 2rem;
    padding-right: 2rem;
}

.marquee-content span {
    font-family: var(--font-logo);
    font-size: 1.3rem;
    font-weight: 500;
    color: white;
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.marquee-dot {
    font-size: 0.7rem;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =====================================================
   INTRO SECTION - Premium Luxury Design
   ===================================================== */
.intro-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

/* Elegant decorative elements */
.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(120, 120, 120, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.intro-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(120, 120, 120, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.section-tag {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    background: linear-gradient(135deg, rgba(120, 120, 120, 0.08) 0%, rgba(100, 100, 100, 0.05) 100%);
    border: 1px solid rgba(120, 120, 120, 0.2);
    color: var(--color-gold);
    font-size: 0.7rem;
    font-family: var(--font-hebrew);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
    position: relative;
    backdrop-filter: blur(5px);
}

.section-title-xl {
    font-family: var(--font-hebrew-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0;
    margin-bottom: var(--space-lg);
}

.section-title-xl .text-gold {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gold {
    color: var(--color-gold);
}

.intro-text {
    margin-bottom: var(--space-xl);
}

.lead-text {
    font-family: var(--font-hebrew);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    line-height: 1.8;
    letter-spacing: 0;
}

.intro-text p {
    font-family: var(--font-hebrew);
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.intro-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-lg) 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--space-xl);
}

.stat-item {
    text-align: center;
}

.stat-item .stat-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.stat-item .stat-label {
    font-family: var(--font-hebrew);
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--color-border);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-gold);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.link-arrow:hover {
    gap: var(--space-md);
}

.link-arrow svg {
    transition: transform 0.3s ease;
}

.link-arrow:hover svg {
    transform: translateX(-4px);
}

/* Visual Frame */
.intro-visual {
    position: relative;
}

.visual-frame {
    position: relative;
}

.frame-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-gold);
    z-index: -1;
}

.visual-frame img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
}

.visual-badge {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    background: white;
    padding: var(--space-sm) var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.badge-icon {
    font-size: 1.25rem;
}

/* =====================================================
   SERVICES SECTION - Enhanced Luxury Design
   ===================================================== */
.services-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--color-bg-light) 0%, #FAF8F5 50%, var(--color-bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.services-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 2px 2px, rgba(197, 165, 114, 0.04) 1px, transparent 0),
        linear-gradient(90deg, transparent 49%, rgba(120, 120, 120, 0.02) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(120, 120, 120, 0.02) 50%, transparent 51%);
    background-size: 40px 40px, 200px 200px, 200px 200px;
}

/* Decorative floating elements */
.services-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(120, 120, 120, 0.1);
    transform: rotate(45deg);
    pointer-events: none;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(120, 120, 120, 0.08);
    transform: rotate(45deg);
    pointer-events: none;
}

.section-header {
    margin-bottom: var(--space-3xl);
    position: relative;
    z-index: 1;
}

.section-header.center {
    text-align: center;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.service-card {
    background: white;
    border: 1px solid var(--color-border);
    padding: var(--space-xl);
    position: relative;
    transition: all 0.5s var(--ease-smooth);
    border-radius: 4px;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-gold);
    transition: height 0.5s var(--ease-smooth);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle at 30% 20%, rgba(120, 120, 120, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--color-gold);
    box-shadow: 0 25px 60px rgba(120, 120, 120, 0.15), 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    height: 100%;
}

.service-card:hover::after {
    opacity: 1;
}

.service-number {
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--color-gold-muted);
    line-height: 1;
    margin-bottom: var(--space-md);
    transition: all 0.4s ease;
}

.service-card:hover .service-number {
    color: var(--color-gold);
    transform: scale(1.05);
}

.service-icon {
    width: 80px;
    height: 80px;
    color: var(--color-gold);
    margin-bottom: var(--space-lg);
    transition: all 0.5s var(--ease-expo);
    position: relative;
}

/* Premium Icon Enhancement */
.service-icon.premium-icon {
    width: 90px;
    height: 90px;
    padding: 12px;
    background: linear-gradient(145deg, rgba(120, 120, 120, 0.08) 0%, rgba(100, 100, 100, 0.03) 100%);
    border-radius: 16px;
    border: 1px solid rgba(120, 120, 120, 0.15);
    position: relative;
    overflow: visible;
}

.service-icon.premium-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(120, 120, 120, 0.3) 0%, transparent 50%, rgba(120, 120, 120, 0.3) 100%);
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.service-icon.premium-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(120, 120, 120, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.service-icon.premium-icon svg,
.service-icon.premium-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s var(--ease-expo);
}

.service-card:hover .service-icon {
    transform: scale(1.08) translateY(-5px);
    filter: drop-shadow(0 8px 25px rgba(120, 120, 120, 0.35));
}

.service-card:hover .service-icon.premium-icon {
    background: linear-gradient(145deg, rgba(120, 120, 120, 0.12) 0%, rgba(100, 100, 100, 0.06) 100%);
    border-color: rgba(120, 120, 120, 0.35);
    box-shadow: 0 10px 40px rgba(120, 120, 120, 0.2);
}

.service-card:hover .service-icon.premium-icon::before {
    opacity: 1;
}

.service-card:hover .service-icon.premium-icon::after {
    opacity: 1;
}

.service-card:hover .service-icon.premium-icon svg,
.service-card:hover .service-icon.premium-icon img {
    transform: scale(1.05);
}

.service-title {
    font-family: var(--font-hebrew-display);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-bottom: var(--space-sm);
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: var(--color-gold-dark);
}

.service-desc {
    font-family: var(--font-hebrew);
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.service-features {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.service-features li {
    padding: var(--space-xs) 0;
    color: var(--color-text-muted);
    font-size: 0.85rem;
    position: relative;
    padding-right: var(--space-md);
}

.service-features li::before {
    content: '—';
    position: absolute;
    right: 0;
    color: var(--color-gold);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: var(--space-sm);
}

/* =====================================================
   PROJECTS SECTION - Premium Luxury Design
   ===================================================== */
.projects-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, #FCFBF8 30%, #FAF9F6 70%, var(--color-bg) 100%);
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 10%;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(120, 120, 120, 0.04);
    border-radius: 50%;
    pointer-events: none;
    animation: floatSoft 20s ease-in-out infinite;
}

@keyframes floatSoft {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.projects-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(120, 120, 120, 0.06);
    transform: rotate(45deg);
    pointer-events: none;
}

/* Decorative gold line at section top */
.projects-section .container::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--gradient-gold);
}

/* Project Featured Card Enhancement */
.project-featured {
    position: relative;
}

.project-featured::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-gold) 0%, transparent 50%, var(--color-gold) 100%);
    border-radius: 6px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.project-featured:hover::before {
    opacity: 0.3;
}

/* Project Card Enhancement */
.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.project-card .project-info::after {
    content: '';
    position: absolute;
    bottom: 10px;
    right: var(--space-md);
    width: 30px;
    height: 30px;
    border: 1px solid rgba(120, 120, 120, 0.1);
    transform: rotate(45deg);
    pointer-events: none;
}

.projects-showcase {
    display: grid;
    gap: var(--space-xl);
}

.project-featured {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--space-xl);
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
}

.project-image {
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

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

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-image:hover .project-overlay {
    opacity: 1;
}

.project-view {
    width: 60px;
    height: 60px;
    background: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transform: scale(0);
    transition: transform 0.4s var(--ease-bounce);
}

.project-image:hover .project-view {
    transform: scale(1);
}

.project-info {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-category {
    font-size: 0.75rem;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-sm);
}

.project-title {
    font-family: var(--font-hebrew-display);
    font-size: 2rem;
    margin-bottom: var(--space-xs);
}

.project-location {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.project-desc {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.project-tags {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.project-tags span {
    padding: var(--space-xs) var(--space-sm);
    background: var(--color-gold-muted);
    border: 1px solid var(--color-border-gold);
    color: var(--color-gold-dark);
    font-size: 0.75rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.project-card {
    background: white;
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
    border-radius: 4px;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-border-gold);
    box-shadow: var(--shadow-luxury);
}

.project-card .project-image {
    aspect-ratio: 4/3;
}

.project-card .project-info {
    padding: var(--space-md);
}

.project-card .project-title {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.section-footer {
    text-align: center;
    margin-top: var(--space-3xl);
}

/* =====================================================
   PHILOSOPHY SECTION - Premium Artistic Design
   ===================================================== */
.philosophy-section {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #FAF8F5 0%, #F5F0E8 50%, #FAF8F5 100%);
}

.philosophy-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(120, 120, 120, 0.04) 0%, transparent 60%),
        linear-gradient(145deg, #FAF8F5 0%, #F5F0E8 50%, #FAF8F5 100%);
}

/* Decorative side elements */
.philosophy-decoration {
    position: absolute;
    width: 300px;
    height: 300px;
    pointer-events: none;
    opacity: 0.6;
}

.philosophy-decoration.left {
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    background:
        repeating-linear-gradient(45deg, transparent 0, transparent 10px, rgba(120, 120, 120, 0.03) 10px, rgba(120, 120, 120, 0.03) 11px),
        radial-gradient(circle at center, rgba(120, 120, 120, 0.05) 0%, transparent 70%);
}

.philosophy-decoration.right {
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    background:
        repeating-linear-gradient(-45deg, transparent 0, transparent 10px, rgba(120, 120, 120, 0.03) 10px, rgba(120, 120, 120, 0.03) 11px),
        radial-gradient(circle at center, rgba(120, 120, 120, 0.05) 0%, transparent 70%);
}

.philosophy-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.philosophy-icon {
    margin-bottom: var(--space-md);
    color: var(--color-gold);
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.philosophy-tag {
    display: inline-block;
    font-family: var(--font-hebrew);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-xl);
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(120, 120, 120, 0.3);
    background: rgba(120, 120, 120, 0.05);
}

.philosophy-quote {
    font-family: 'Suez One', 'Heebo', serif;
    font-size: clamp(1.8rem, 4.5vw, 3rem);
    font-style: normal;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.02em;
    color: var(--color-text);
    margin-bottom: var(--space-xl);
    position: relative;
    padding: 0 var(--space-lg);
}

.philosophy-quote .quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--color-gold);
    opacity: 0.6;
    line-height: 0;
    vertical-align: middle;
}

.philosophy-quote .quote-mark.opening {
    margin-left: 0.25em;
}

.philosophy-quote .quote-mark.closing {
    margin-right: 0.25em;
}

.philosophy-quote .highlight {
    display: block;
    background: linear-gradient(135deg, var(--color-gold-dark) 0%, var(--color-gold) 50%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-style: normal;
    font-weight: 400;
    margin: var(--space-sm) 0;
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.philosophy-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.philosophy-footer .footer-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.philosophy-signature {
    font-family: 'Suez One', 'Heebo', serif;
    font-size: 1.4rem;
    color: var(--color-gold);
    letter-spacing: 0.05em;
}

/* Backwards compatibility for testimonial section */
.testimonial-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.testimonial-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #F8F6F2 0%, #FAF9F6 40%, #FDFCFA 70%, #FAF8F5 100%);
}

.testimonial-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.quote-icon {
    margin-bottom: var(--space-lg);
    color: var(--color-gold);
}

.testimonial-quote {
    font-family: 'Suez One', 'Heebo', serif;
    font-size: clamp(1.6rem, 4vw, 2.7rem);
    font-style: normal;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: 0.01em;
    color: var(--color-text);
    margin-bottom: var(--space-xl);
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    color: var(--color-gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.author-line {
    width: 40px;
    height: 1px;
    background: var(--color-gold);
}

/* =====================================================
   WHY SECTION - Premium Luxury Design
   ===================================================== */
.why-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, #FCFBF9 40%, #FAF9F6 60%, var(--color-bg) 100%);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    border: 1px solid rgba(120, 120, 120, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-4xl);
    align-items: start;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: white;
    border: 1px solid var(--color-border);
    transition: all 0.4s var(--ease-smooth);
    border-radius: 4px;
}

.feature-card:hover {
    border-color: var(--color-border-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    color: var(--color-gold);
}

.feature-content h4 {
    font-family: var(--font-hebrew-display);
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

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

/* =====================================================
   CTA SECTION - Premium Luxury Design
   ===================================================== */
.cta-section {
    position: relative;
    padding: 7rem 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.9);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(15, 15, 15, 0.95) 0%,
            rgba(20, 18, 15, 0.88) 40%,
            rgba(25, 22, 18, 0.8) 100%);
}

/* Gold accent line */
.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    z-index: 2;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    z-index: 2;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.cta-title {
    font-family: var(--font-hebrew-display);
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-lg);
    color: white;
}

.cta-title span {
    color: var(--color-gold-light);
}

.cta-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* =====================================================
   FOOTER - Premium Luxury Design
   ===================================================== */
.footer {
    background: linear-gradient(180deg, #0D0D0D 0%, #121212 50%, #0A0A0A 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(120, 120, 120, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.footer-top {
    padding: var(--space-4xl) 0;
    border-bottom: 1px solid rgba(120, 120, 120, 0.15);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-3xl);
}

/* Footer Logo - Premium Style */
.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    text-decoration: none;
    margin-bottom: var(--space-lg);
    position: relative;
}

.footer-logo .logo-frame {
    width: 56px;
    height: 56px;
    background: transparent;
    animation: logoBreath 4s ease-in-out infinite;
}

.footer-logo .logo-letter {
    font-size: 1.6rem;
    color: var(--color-gold-light);
    text-shadow: 0 0 30px rgba(120, 120, 120, 0.5);
}

.footer-logo .logo-text-wrapper {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-text {
    font-family: var(--font-logo);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-light);
    letter-spacing: 0.03em;
    line-height: 1.2;
}

.footer-logo .logo-tagline {
    font-family: var(--font-hebrew);
    font-size: 0.65rem;
    color: var(--color-gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.9;
}

/* Legacy footer logo support */
.footer-logo .logo-icon {
    width: 40px;
    height: 40px;
    color: var(--color-gold);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.9;
    margin-bottom: var(--space-lg);
    font-family: var(--font-hebrew);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(120, 120, 120, 0.08);
    border: 1px solid rgba(120, 120, 120, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.social-link:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(120, 120, 120, 0.3);
}

.social-link:hover::before {
    opacity: 1;
}

.social-link svg {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.social-link:hover svg {
    color: white;
}

.footer-links-group h4,
.footer-contact h4 {
    font-family: var(--font-hebrew-display);
    font-size: 1.05rem;
    margin-bottom: var(--space-lg);
    color: var(--color-gold-light);
    position: relative;
    display: inline-block;
}

.footer-links-group h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-gold);
}

.footer-links-group ul,
.footer-contact ul {
    list-style: none;
}

.footer-links-group li,
.footer-contact li {
    margin-bottom: var(--space-sm);
}

.footer-links-group a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-family: var(--font-hebrew);
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links-group a::before {
    content: '◂';
    position: absolute;
    right: -20px;
    opacity: 0;
    color: var(--color-gold);
    transition: all 0.3s ease;
}

.footer-links-group a:hover {
    color: var(--color-gold-light);
    padding-right: 25px;
}

.footer-links-group a:hover::before {
    opacity: 1;
    right: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(255, 255, 255, 0.65);
    font-family: var(--font-hebrew);
}

.footer-contact li svg {
    color: var(--color-gold);
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding: var(--space-lg) 0;
    padding-bottom: var(--space-md);
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
    font-family: var(--font-hebrew);
}

.footer-certification {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-gold);
}

/* =====================================================
   SCROLL TO TOP
   ===================================================== */
.scroll-top {
    position: fixed;
    bottom: var(--space-xl);
    left: var(--space-xl);
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s var(--ease-smooth);
    z-index: 100;
    box-shadow: var(--shadow-gold);
}

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

.scroll-top:hover {
    background: var(--color-gold-dark);
    transform: translateY(-5px);
}

/* =====================================================
   REVEAL ANIMATIONS
   ===================================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}

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

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .why-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
}

@media (max-width: 992px) {
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 400px;
        flex-direction: column;
        background: linear-gradient(180deg, #FDFBF7 0%, #FAF8F5 50%, #F8F6F2 100%);
        padding: var(--space-4xl) var(--space-xl);
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-smooth);
        border-left: 1px solid var(--color-border-gold);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        min-height: 100vh;
        overflow-y: auto;
    }

    .nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--gradient-gold);
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-lg);
        margin-top: var(--space-xl);
    }

    .nav-link {
        font-size: 1.35rem;
        font-family: var(--font-hebrew-display);
        font-weight: 500;
        color: var(--color-text) !important;
        padding: var(--space-sm) 0;
        border-bottom: 1px solid var(--color-border);
        transition: all 0.3s ease;
        display: block;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--color-gold) !important;
        border-bottom-color: var(--color-gold);
        padding-right: var(--space-sm);
    }

    .nav-link::before {
        display: none;
    }

    .nav-link::after {
        display: none;
    }

    /* Mobile Nav Header */
    .nav .btn {
        margin-top: var(--space-xl);
        width: 100%;
        justify-content: center;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .intro-visual {
        order: -1;
    }

    .project-featured {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {

    /* Base Mobile Enhancements - Reduced Text Sizes */
    html {
        font-size: 14px;
    }

    /* Global Mobile Text Reductions */
    body {
        line-height: 1.65;
    }

    .section-title-xl {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .section-tag {
        font-size: 0.65rem;
        letter-spacing: 0.12em;
    }

    /* Intro Section - Optimized Image */
    .intro-visual {
        max-width: 280px;
        margin: 0 auto var(--space-lg);
    }

    .intro-visual img {
        max-height: 320px;
        object-fit: contain;
    }

    .intro-content p {
        font-size: 0.95rem;
    }

    /* Service Cards Mobile */
    .service-icon.premium-icon {
        width: 70px;
        height: 70px;
        padding: 8px;
    }

    .service-title {
        font-size: 1.15rem;
    }

    .service-desc {
        font-size: 0.88rem;
    }

    .service-features li {
        font-size: 0.8rem;
    }

    .container {
        padding: 0 var(--space-md);
    }

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

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .why-features {
        grid-template-columns: 1fr;
    }

    .intro-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .stat-divider {
        width: 50px;
        height: 1px;
    }

    /* Hero Carousel - Mobile Optimized */
    .carousel-controls {
        bottom: var(--space-lg);
        gap: var(--space-md);
    }

    .carousel-btn {
        width: 44px;
        height: 44px;
        background: rgba(255, 255, 255, 0.2);
        border-color: rgba(255, 255, 255, 0.6);
    }

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

    .carousel-dots {
        gap: var(--space-xs);
    }

    .carousel-dot {
        width: 30px;
    }

    .carousel-dot.active {
        width: 45px;
    }

    /* Scroll Indicator - Hide on mobile */
    .hero-side-info,
    .scroll-indicator {
        display: none;
    }

    /* Hero Content - Mobile Typography */
    .title-line {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: var(--space-xs) var(--space-sm);
    }

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

    /* Philosophy Section - Mobile Premium */
    .philosophy-section {
        padding: 4rem 0;
    }

    .philosophy-decoration {
        display: none;
    }

    .philosophy-content {
        padding: 0 var(--space-sm);
    }

    .philosophy-icon {
        margin-bottom: var(--space-sm);
    }

    .philosophy-icon svg {
        width: 36px;
        height: 36px;
    }

    .philosophy-tag {
        font-size: 0.65rem;
        padding: 0.5rem 1rem;
        margin-bottom: var(--space-lg);
    }

    .philosophy-quote {
        font-size: clamp(1.3rem, 4vw, 2rem);
        line-height: 1.7;
        padding: 0;
    }

    .philosophy-quote .quote-mark {
        font-size: 2rem;
    }

    .philosophy-quote .highlight {
        font-size: clamp(1.5rem, 4.5vw, 2.2rem);
        margin: var(--space-xs) 0;
    }

    .philosophy-footer {
        gap: var(--space-md);
        margin-top: var(--space-lg);
    }

    .philosophy-footer .footer-line {
        width: 40px;
    }

    .philosophy-signature {
        font-size: 1.1rem;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 4rem 0;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    /* Service Cards Mobile */
    .service-card {
        padding: var(--space-lg);
    }

    .service-number {
        font-size: 3rem;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .footer-top {
        padding: var(--space-2xl) 0;
    }

    /* Intro Section Mobile */
    .intro-section {
        padding: var(--space-2xl) 0;
    }

    .section-title-xl {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    /* Project Cards Mobile */
    .project-featured {
        grid-template-columns: 1fr;
    }

    .project-featured .project-info {
        padding: var(--space-lg);
    }

    .project-title {
        font-size: 1.5rem;
    }

    /* Why Section Mobile */
    .why-grid {
        gap: var(--space-xl);
    }

    .feature-card {
        padding: var(--space-md);
    }

    /* Buttons Mobile Touch Targets */
    .btn {
        min-height: 48px;
        padding: 0.9rem 1.5rem;
    }

    .btn-lg {
        padding: 1rem 1.75rem;
    }

    /* Header Mobile */
    .header {
        padding: var(--space-sm) 0;
    }

    .logo-mark {
        width: 48px;
        height: 48px;
    }

    .logo-letter {
        font-size: 1.8rem;
    }

    .logo-text {
        font-size: 1.3rem;
    }

    .logo-tagline {
        font-size: 0.55rem;
    }

    /* Mobile Menu Toggle */
    .mobile-menu-toggle span {
        background: var(--color-text-light);
    }

    .header.scrolled .mobile-menu-toggle span {
        background: var(--color-text);
    }
}

/* Extra small devices (480px and below) */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 var(--space-sm);
    }

    .philosophy-quote {
        font-size: 1.2rem;
    }

    .philosophy-quote .highlight {
        font-size: 1.4rem;
    }

    .title-line {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-dot {
        width: 25px;
        height: 3px;
    }

    .carousel-dot.active {
        width: 35px;
    }

    .section-title-xl {
        font-size: 1.6rem;
    }

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

/* =====================================================
   PAGE HERO - Internal Pages - Premium Luxury Design
   ===================================================== */
.page-hero {
    padding: 12rem 0 6rem;
    background: linear-gradient(145deg, #0A0A0A 0%, #141414 40%, #1A1A1A 70%, #121212 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Elegant Background Pattern */
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 20%, rgba(120, 120, 120, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(100, 100, 100, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(120, 120, 120, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* Decorative Gold Lines */
.page-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background:
        linear-gradient(90deg, transparent 49.5%, rgba(120, 120, 120, 0.05) 50%, transparent 50.5%),
        linear-gradient(0deg, transparent 49.5%, rgba(120, 120, 120, 0.05) 50%, transparent 50.5%);
    opacity: 0.6;
    pointer-events: none;
}

/* Subtle Diamond Pattern Overlay */
.page-hero .container::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    right: -100px;
    bottom: -100px;
    background-image:
        repeating-linear-gradient(45deg, transparent 0, transparent 35px, rgba(120, 120, 120, 0.015) 35px, rgba(120, 120, 120, 0.015) 36px),
        repeating-linear-gradient(-45deg, transparent 0, transparent 35px, rgba(120, 120, 120, 0.015) 35px, rgba(120, 120, 120, 0.015) 36px);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Section Tag in Page Hero - Positioned Above Title */
.page-hero .section-tag {
    background: rgba(120, 120, 120, 0.15);
    border-color: rgba(120, 120, 120, 0.35);
    color: var(--color-gold-light);
    margin-bottom: var(--space-lg);
    display: block;
    order: -1;
}

.page-title {
    font-family: var(--font-hebrew-display);
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: var(--space-lg);
    letter-spacing: 0.03em;
    text-shadow: 0 3px 25px rgba(0, 0, 0, 0.35);
    line-height: 1.15;
}

.page-description {
    font-size: 1.2rem;
    font-family: var(--font-hebrew);
    color: rgba(255, 255, 255, 0.75);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.9;
    font-weight: 300;
}

/* =====================================================
   WHY SECTION - REDESIGNED FOR BETTER ALIGNMENT
   ===================================================== */
.why-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, #FCFBF9 40%, #FAF9F6 60%, var(--color-bg) 100%);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    border: 1px solid rgba(120, 120, 120, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.why-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-xl);
}

.why-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: white;
    border: 1px solid var(--color-border);
    transition: all 0.4s var(--ease-smooth);
    border-radius: 8px;
}

.feature-card:hover {
    border-color: var(--color-border-gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.feature-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
}

.feature-content {
    text-align: center;
}

.feature-content h4 {
    font-family: var(--font-hebrew-display);
    font-size: 1.15rem;
    margin-bottom: var(--space-sm);
}

.feature-content p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Responsive for Why Section */
@media (max-width: 1200px) {
    .why-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-features {
        grid-template-columns: 1fr;
    }

    .feature-card {
        flex-direction: row;
        text-align: right;
    }

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

/* =====================================================
   CERTIFICATIONS SECTION - PREMIUM REDESIGN
   ===================================================== */
.certifications-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, #FAF8F5 0%, #F5F3EF 50%, #FAF8F5 100%);
    position: relative;
    overflow: hidden;
}

.certifications-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -50px;
    width: 150px;
    height: 150px;
    border: 1px solid rgba(120, 120, 120, 0.08);
    transform: rotate(45deg);
    pointer-events: none;
}

.certifications-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -50px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(120, 120, 120, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.certifications-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.certification-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.certification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.certification-card:hover {
    border-color: var(--color-border-gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.certification-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    color: var(--color-gold);
    transition: all 0.4s ease;
}

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

.certification-card h4 {
    font-family: var(--font-hebrew-display);
    font-size: 1.2rem;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

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

/* Process Number Badge */
.process-number {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-hebrew-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 20px rgba(120, 120, 120, 0.4);
    transition: all 0.4s var(--ease-smooth);
}

.certification-card:hover .process-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 30px rgba(120, 120, 120, 0.6);
}

@media (max-width: 992px) {
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .certifications-grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   GALLERY PAGE - Premium Luxury Design
   ===================================================== */
.gallery-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, #FAF8F5 30%, #FDFCFA 70%, var(--color-bg) 100%);
    position: relative;
}

/* Decorative pattern */
.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(120, 120, 120, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 20% 80%, rgba(120, 120, 120, 0.03) 0%, transparent 30%);
    pointer-events: none;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-3xl);
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 50px;
    font-family: var(--font-hebrew);
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.5s var(--ease-smooth);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    z-index: 3;
    transition: border-color 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover::before {
    border-color: var(--color-gold);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

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

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

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

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(26, 26, 26, 0.95) 0%,
            rgba(26, 26, 26, 0.6) 40%,
            transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-xl);
}

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

.gallery-overlay h3 {
    font-family: var(--font-hebrew-display);
    font-size: 1.4rem;
    color: white;
    margin-bottom: var(--space-xs);
    transform: translateY(20px);
    transition: transform 0.5s var(--ease-smooth);
}

.gallery-item:hover .gallery-overlay h3 {
    transform: translateY(0);
}

.gallery-overlay p {
    font-size: 0.95rem;
    color: var(--color-gold-light);
    line-height: 1.6;
    transform: translateY(20px);
    transition: transform 0.5s var(--ease-smooth) 0.1s;
}

.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* =====================================================
   PRODUCTS PAGE - Premium Luxury Design
   ===================================================== */
.products-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, #FCFAF7 40%, #FAF8F5 60%, var(--color-bg) 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative luxury accents */
.products-section::before {
    content: '';
    position: absolute;
    top: 5%;
    right: -50px;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(120, 120, 120, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.products-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -30px;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(120, 120, 120, 0.08);
    transform: rotate(45deg);
    pointer-events: none;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--space-xl);
}

.product-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.5s var(--ease-smooth);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-gold);
    border-color: var(--color-border-gold);
}

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

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-smooth);
}

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

.product-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: 0.5rem 1rem;
    background: var(--color-charcoal);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-radius: 30px;
    text-transform: uppercase;
    z-index: 2;
}

.product-badge.gold {
    background: var(--gradient-gold);
}

.product-content {
    padding: var(--space-xl);
}

.product-category {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
    display: inline-block;
}

.product-title {
    font-family: var(--font-hebrew-display);
    font-size: 1.7rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.product-description {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
}

.product-feature {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    background: var(--color-gold-muted);
    color: var(--color-gold-dark);
    font-size: 0.8rem;
    font-weight: 500;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.product-card:hover .product-feature {
    background: var(--color-gold);
    color: white;
}

/* =====================================================
   ABOUT PAGE - Premium Luxury Design
   ===================================================== */
.about-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, #FDFCFA 35%, #FAF8F5 65%, var(--color-bg) 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative luxury elements */
.about-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 5%;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(120, 120, 120, 0.07);
    transform: rotate(45deg);
    pointer-events: none;
    animation: floatSoft 25s ease-in-out infinite;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -80px;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(120, 120, 120, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

/* Additional decorative element */
.about-section .container::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, var(--color-gold), transparent);
    opacity: 0.2;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
    transition: all 0.5s ease;
}

.about-image:hover img {
    box-shadow: var(--shadow-gold);
}

.about-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-gold);
    border-radius: 6px;
    z-index: -1;
    transition: all 0.4s ease;
}

.about-image:hover .about-image-accent {
    top: -25px;
    right: -25px;
}

/* Decorative corner accent */
.about-image::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: -15px;
    width: 60px;
    height: 60px;
    border-left: 2px solid var(--color-gold);
    border-bottom: 2px solid var(--color-gold);
    opacity: 0.4;
    pointer-events: none;
}

.about-content h2 {
    font-family: var(--font-hebrew-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-text);
    margin-bottom: var(--space-lg);
}

.about-content p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-3xl);
}

.value-card {
    text-align: center;
    padding: var(--space-xl);
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Gold top accent bar */
.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

/* Decorative corner element */
.value-card::after {
    content: '';
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(120, 120, 120, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.value-card:hover::after {
    transform: scale(2);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
    border-color: var(--color-border-gold);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    color: var(--color-gold);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.15);
    filter: drop-shadow(0 4px 8px rgba(120, 120, 120, 0.25));
}

.value-card h3 {
    font-family: var(--font-hebrew-display);
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.value-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Enhanced Values Section Styling */
.services-section .values-grid {
    position: relative;
    z-index: 2;
}

.services-section .value-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(120, 120, 120, 0.2);
    position: relative;
}

/* Animated background gradient */
.services-section .value-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(120, 120, 120, 0.08) 0%,
            transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 8px;
    pointer-events: none;
}

.services-section .value-card:hover::after {
    opacity: 1;
}

/* Enhanced icon styling */
.services-section .value-icon {
    position: relative;
    background: linear-gradient(135deg,
            rgba(120, 120, 120, 0.1) 0%,
            rgba(245, 230, 184, 0.15) 100%);
    border-radius: 50%;
    padding: var(--space-md);
    border: 2px solid rgba(120, 120, 120, 0.2);
    box-shadow: 0 8px 25px rgba(120, 120, 120, 0.15);
    transition: all 0.5s var(--ease-expo);
}

.services-section .value-card:hover .value-icon {
    background: linear-gradient(135deg,
            rgba(120, 120, 120, 0.2) 0%,
            rgba(245, 230, 184, 0.25) 100%);
    border-color: rgba(120, 120, 120, 0.4);
    box-shadow:
        0 15px 45px rgba(120, 120, 120, 0.3),
        0 0 60px rgba(120, 120, 120, 0.2);
    transform: scale(1.2) rotate(-8deg);
}

/* Icon glow animation */
.services-section .value-icon svg {
    filter: drop-shadow(0 4px 12px rgba(120, 120, 120, 0.25));
}

.services-section .value-card:hover .value-icon svg {
    filter: drop-shadow(0 8px 20px rgba(120, 120, 120, 0.5));
    animation: icon-float 2s ease-in-out infinite;
}

@keyframes icon-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Typography enhancement */
.services-section .value-card h3 {
    transition: all 0.3s ease;
    position: relative;
}

.services-section .value-card:hover h3 {
    color: var(--color-gold-dark);
    transform: translateY(-2px);
}

/* Decorative corners on hover */
.services-section .value-card:hover::before {
    box-shadow:
        0 0 15px rgba(120, 120, 120, 0.5),
        inset 0 0 15px rgba(120, 120, 120, 0.3);
}

/* =====================================================
   CONTACT PAGE - Premium Luxury Design
   ===================================================== */
.contact-section {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--color-bg) 0%, #FCFAF7 30%, #FAF8F5 70%, var(--color-bg) 100%);
    position: relative;
    overflow: hidden;
}

/* Decorative elements */
.contact-section::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -100px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(120, 120, 120, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: -50px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(120, 120, 120, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
}

.contact-form {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: var(--space-xl);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-hebrew);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-bg-light);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px var(--color-gold-muted);
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.info-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: var(--space-lg);
    display: flex;
    gap: var(--space-md);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--color-border-gold);
    box-shadow: var(--shadow-sm);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--color-gold-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.info-content h4 {
    font-family: var(--font-hebrew-display);
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.info-content p,
.info-content a {
    color: var(--color-text-secondary);
    text-decoration: none;
    line-height: 1.6;
}

.info-content a:hover {
    color: var(--color-gold);
}

/* =====================================================
   SUCCESS & 404 PAGES
   ===================================================== */
.message-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
}

.message-content {
    text-align: center;
    max-width: 500px;
}

.message-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-xl);
    color: var(--color-gold);
}

.message-title {
    font-family: var(--font-hebrew-display);
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.message-text {
    color: var(--color-text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

/* =====================================================
   ADDITIONAL RESPONSIVE
   ===================================================== */
@media (max-width: 992px) {

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* =====================================================
   CONTACT PAGE - FORMS
   ===================================================== */
.contact-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-form-wrapper {
    background: var(--color-surface);
    border-radius: 16px;
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.contact-form-header {
    margin-bottom: var(--space-xl);
}

.contact-form-header h2 {
    font-family: var(--font-hebrew-display);
    font-size: 1.8rem;
    color: var(--color-text);
    margin: var(--space-sm) 0;
}

.contact-form-header p {
    color: var(--color-text-secondary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-weight: 500;
    color: var(--color-text);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-family: var(--font-hebrew);
    font-size: 1rem;
    background: var(--color-bg);
    color: var(--color-text);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px var(--color-gold-muted);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 4.5L6 7.5L9 4.5' stroke='%235A5A5A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 16px center;
    padding-left: 40px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
    margin-top: var(--space-xs);
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--color-gold);
    cursor: pointer;
}

.checkbox-item:hover {
    color: var(--color-text);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Contact Info Cards */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-info-card,
.branches-card {
    background: var(--color-surface);
    border-radius: 16px;
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.contact-info-card h3,
.branches-card h3 {
    font-family: var(--font-hebrew-display);
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--color-border);
}

.contact-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--color-gold-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.contact-text span {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 2px;
}

.contact-text a,
.contact-text p {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    margin: 0;
}

.contact-text a:hover {
    color: var(--color-gold);
}

/* Branches */
.branch-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.branch-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.branch-icon {
    color: var(--color-gold);
    margin-top: 2px;
}

.branch-details h4 {
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 2px;
}

.branch-details p {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

/* WhatsApp CTA */
.whatsapp-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: #25D366;
    color: white;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.whatsapp-cta:hover {
    background: #20BD5C;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

/* Map Section */
.map-section {
    height: 400px;
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-bg-light), var(--color-bg-lighter));
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    text-align: center;
}

.map-content h3 {
    font-family: var(--font-hebrew-display);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.map-content p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
}

/* =====================================================
   GALLERY PAGE
   ===================================================== */
.gallery-section {
    padding: var(--space-2xl) 0 var(--space-4xl);
    background: var(--color-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

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

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

.gallery-item.tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay h3 {
    font-family: var(--font-hebrew-display);
    font-size: 1.2rem;
    color: white;
    margin-bottom: var(--space-xs);
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* =====================================================
   MESSAGE PAGES (SUCCESS / 404)
   ===================================================== */
.message-card {
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
    padding: var(--space-3xl);
    background: var(--color-surface);
    border-radius: 20px;
    box-shadow: var(--shadow-luxury);
    border: 1px solid var(--color-border);
}

.message-card .message-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-xl);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.message-icon.success {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
}

.message-icon.success svg {
    width: 50px;
    height: 50px;
}

.message-icon.error {
    background: var(--color-gold-muted);
}

.message-icon .error-code {
    font-family: var(--font-hebrew-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
}

.message-card h1 {
    font-family: var(--font-hebrew-display);
    font-size: 2rem;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

.message-card .message-lead {
    font-size: 1.2rem;
    color: var(--color-gold);
    margin-bottom: var(--space-md);
}

.message-card .message-text {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.message-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
}

/* =====================================================
   PRODUCTS PAGE STYLES
   ===================================================== */
.products-filter-section {
    background: var(--color-bg-light);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--color-border);
}

.products-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-sm);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-xl);
    padding: var(--space-xl) 0;
}

.product-card {
    background: var(--color-surface);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury);
    border-color: var(--color-border-gold);
}

.product-image {
    position: relative;
    aspect-ratio: 16/10;
    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.05);
}

.product-badge {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    padding: 6px 14px;
    background: var(--color-charcoal);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
}

.product-badge.gold {
    background: var(--color-gold);
}

.product-content {
    padding: var(--space-lg);
}

.product-category {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--color-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-xs);
}

.product-title {
    font-family: var(--font-hebrew-display);
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.product-description {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
}

.product-feature {
    padding: 4px 10px;
    background: var(--color-bg-light);
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--color-text-secondary);
}

/* =====================================================
   VALUES GRID
   ===================================================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.value-card {
    text-align: center;
    padding: var(--space-xl);
    background: var(--color-surface);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-border-gold);
    box-shadow: var(--shadow-gold);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--space-lg);
    color: var(--color-gold);
}

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

.value-card h3 {
    font-family: var(--font-hebrew-display);
    font-size: 1.3rem;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.value-card p {
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* =====================================================
   RESPONSIVE - ADDITIONAL
   ===================================================== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .checkbox-group {
        grid-template-columns: 1fr;
    }

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

    .gallery-item.wide,
    .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .message-card {
        padding: var(--space-xl);
    }

    .message-actions {
        flex-direction: column;
    }

    .message-actions .btn {
        width: 100%;
    }
}

/* =====================================================
   LEGAL PAGES STYLING
   ===================================================== */
.legal-content-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: var(--space-3xl);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.legal-intro {
    padding: var(--space-lg);
    background: linear-gradient(135deg, rgba(120, 120, 120, 0.05) 0%, rgba(120, 120, 120, 0.02) 100%);
    border-right: 4px solid var(--color-gold);
    margin-bottom: var(--space-xl);
    border-radius: 0 8px 8px 0;
}

.legal-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0;
}

.legal-content h2 {
    font-family: var(--font-hebrew-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-gold-pale);
    position: relative;
}

.legal-content h2::before {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 60px;
    height: 2px;
    background: var(--color-gold);
}

.legal-content h3 {
    font-family: var(--font-hebrew);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

.legal-content p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.9;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-md);
}

.legal-content ul {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0;
}

.legal-content ul li {
    position: relative;
    padding-right: var(--space-lg);
    padding-bottom: var(--space-sm);
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.legal-content ul li::before {
    content: '◆';
    position: absolute;
    right: 0;
    color: var(--color-gold);
    font-size: 0.6rem;
    top: 0.5em;
}

.legal-content ul li strong {
    color: var(--color-text);
}

.contact-info-box {
    background: linear-gradient(135deg, #FAF9F7 0%, #F5F3EF 100%);
    padding: var(--space-lg);
    border-radius: 8px;
    margin-top: var(--space-lg);
    border: 1px solid var(--color-border);
}

.contact-info-box p {
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.contact-info-box a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-box a:hover {
    color: var(--color-gold-dark);
}

/* =====================================================
   FOOTER BOTTOM - UPDATED LAYOUT
   ===================================================== */
.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9rem;
    font-family: var(--font-hebrew);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-divider {
    color: rgba(255, 255, 255, 0.3);
}

.footer-credits {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    color: rgba(255, 255, 255, 0.65);
}

.footer-credits a {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--color-gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-credits a:hover {
    color: var(--color-gold-light);
}

.footer-credits .heart-icon {
    color: #e25555;
    animation: heartPulse 1.5s ease-in-out infinite;
}

@keyframes heartPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-sm);
    }

    .footer-legal-links {
        order: 2;
    }

    .footer-credits {
        order: 1;
    }

    .footer-bottom-content>p:last-child {
        order: 3;
    }

    .legal-content {
        padding: var(--space-xl);
    }

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

/* =====================================================
   PHILOSOPHY SECTION - ELEGANT HANDWRITTEN STYLE
   Enhanced with Premium Luxurious Background
   ===================================================== */
.philosophy-section-elegant {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg,
            #FDFCFA 0%,
            #F8F5F0 15%,
            #F5F2EB 50%,
            #F8F5F0 85%,
            #FDFCFA 100%);
}

/* Luxurious Shimmer Effect */
.philosophy-section-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(120, 120, 120, 0.02) 25%,
            rgba(120, 120, 120, 0.06) 50%,
            rgba(120, 120, 120, 0.02) 75%,
            transparent 100%);
    animation: philosophyShimmer 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes philosophyShimmer {
    0% {
        transform: translateX(-33%);
    }

    100% {
        transform: translateX(33%);
    }
}

/* Decorative Pattern Overlay */
.philosophy-section-elegant::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse 60% 40% at 50% 50%, rgba(120, 120, 120, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.philosophy-bg-elegant {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 30% at 50% 50%, rgba(120, 120, 120, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse 80% 50% at 20% 30%, rgba(120, 120, 120, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse 80% 50% at 80% 70%, rgba(120, 120, 120, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

/* Corner Ornaments - More Elegant */
.philosophy-ornament {
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0.2;
    pointer-events: none;
    animation: ornamentGlow 4s ease-in-out infinite;
}

@keyframes ornamentGlow {

    0%,
    100% {
        opacity: 0.15;
    }

    50% {
        opacity: 0.25;
    }
}

.philosophy-ornament::before,
.philosophy-ornament::after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold-light));
}

.philosophy-ornament.top-left {
    top: 2rem;
    right: 2rem;
}

.philosophy-ornament.top-left::before {
    top: 0;
    right: 0;
    width: 50px;
    height: 1.5px;
}

.philosophy-ornament.top-left::after {
    top: 0;
    right: 0;
    width: 1.5px;
    height: 50px;
}

.philosophy-ornament.top-right {
    top: 2rem;
    left: 2rem;
}

.philosophy-ornament.top-right::before {
    top: 0;
    left: 0;
    width: 40px;
    height: 1px;
}

.philosophy-ornament.top-right::after {
    top: 0;
    left: 0;
    width: 1px;
    height: 40px;
}

.philosophy-ornament.bottom-left {
    bottom: 2rem;
    right: 2rem;
}

.philosophy-ornament.bottom-left::before {
    bottom: 0;
    right: 0;
    width: 40px;
    height: 1px;
}

.philosophy-ornament.bottom-left::after {
    bottom: 0;
    right: 0;
    width: 1px;
    height: 40px;
}

.philosophy-ornament.bottom-right {
    bottom: 2rem;
    left: 2rem;
}

.philosophy-ornament.bottom-right::before {
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
}

.philosophy-ornament.bottom-right::after {
    bottom: 0;
    left: 0;
    width: 1px;
    height: 40px;
}

.philosophy-wrapper {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-lg);
}

/* Header with decorative lines */
.philosophy-header-elegant {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.decorative-line {
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--color-gold-light), transparent);
}

.decorative-line.left {
    background: linear-gradient(90deg, transparent, var(--color-gold));
}

.decorative-line.right {
    background: linear-gradient(270deg, transparent, var(--color-gold));
}

.philosophy-label {
    font-family: var(--font-hebrew);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-gold);
    white-space: nowrap;
}

/* Quote Styling - Elegant & Refined */
.philosophy-quote-elegant {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

.philosophy-quote-elegant .quote-line {
    font-family: 'Heebo', var(--font-hebrew);
    font-size: clamp(1.2rem, 2.8vw, 1.5rem);
    font-weight: 300;
    line-height: 2;
    letter-spacing: 0.02em;
    color: var(--color-text-secondary);
}

.philosophy-quote-elegant .quote-line.first {
    margin-bottom: var(--space-sm);
}

.philosophy-quote-elegant .quote-line.last {
    margin-top: var(--space-sm);
}

/* Emphasized Line - Handwritten Style */
.quote-emphasis-elegant {
    font-family: 'Amatic SC', 'Heebo', cursive;
    font-size: clamp(2.2rem, 5.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.4;
    background: linear-gradient(135deg,
            var(--color-gold-dark) 0%,
            var(--color-gold) 40%,
            var(--color-gold-light) 60%,
            var(--color-gold) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: var(--space-md) 0;
    padding: var(--space-xs) 0;
    position: relative;
    animation: textShimmer 6s ease-in-out infinite;
}

@keyframes textShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Decorative quotes (subtle) */
.quote-emphasis-elegant::before,
.quote-emphasis-elegant::after {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--color-gold);
    opacity: 0.4;
    position: relative;
    vertical-align: super;
    line-height: 0;
}

.quote-emphasis-elegant::before {
    content: '״';
    margin-left: 0.3em;
}

.quote-emphasis-elegant::after {
    content: '״';
    margin-right: 0.3em;
}

/* Signature Section */
.philosophy-signature-elegant {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.signature-ornament {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold-light), transparent);
    position: relative;
}

.signature-ornament::before {
    content: '◆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.4rem;
    color: var(--color-gold);
    opacity: 0.6;
}

.signature-ornament:first-child::before {
    right: -8px;
}

.signature-ornament:last-child::before {
    left: -8px;
}

.signature-name {
    font-family: 'Amatic SC', var(--font-hebrew-display), cursive;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.1em;
}

/* Responsive */
@media (max-width: 768px) {
    .philosophy-section-elegant {
        padding: 4rem 0;
    }

    .philosophy-wrapper {
        padding: var(--space-lg) var(--space-md);
    }

    .philosophy-ornament {
        width: 50px;
        height: 50px;
    }

    .philosophy-ornament.top-left,
    .philosophy-ornament.top-right,
    .philosophy-ornament.bottom-left,
    .philosophy-ornament.bottom-right {
        top: 1rem;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }

    .philosophy-ornament::before {
        width: 25px;
    }

    .philosophy-ornament::after {
        height: 25px;
    }

    .decorative-line {
        width: 30px;
    }

    .philosophy-quote-elegant .quote-line {
        font-size: 1rem;
        line-height: 1.8;
    }

    .quote-emphasis-elegant {
        font-size: 1.8rem;
    }

    .quote-emphasis-elegant::before,
    .quote-emphasis-elegant::after {
        font-size: 1rem;
    }

    .signature-name {
        font-size: 1.4rem;
    }

    .signature-ornament {
        width: 25px;
    }
}

/* =====================================================
   PREMIUM LUXURY ENHANCEMENTS - 2025 LUXURY EDITION
   Ultra-premium styling for an extraordinary experience
   ===================================================== */

/* =====================================================
   ENHANCED PREMIUM VARIABLES
   ===================================================== */
:root {
    /* Ultra Premium Gradients */
    --gradient-luxury-gold: linear-gradient(135deg,
            #E6D4A3 0%,
            #7A7A7A 25%,
            #6B6B6B 50%,
            #7A7A7A 75%,
            #E6D4A3 100%);
    --gradient-luxury-overlay: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(120, 120, 120, 0.03) 50%,
            rgba(0, 0, 0, 0) 100%);
    --gradient-premium-radial: radial-gradient(ellipse 60% 40% at 50% 0%,
            rgba(120, 120, 120, 0.12) 0%,
            transparent 60%);
    --gradient-shine: linear-gradient(120deg,
            transparent 0%,
            rgba(255, 255, 255, 0.15) 30%,
            rgba(255, 255, 255, 0.25) 50%,
            rgba(255, 255, 255, 0.15) 70%,
            transparent 100%);

    /* Premium Shadows */
    --shadow-premium: 0 25px 80px rgba(0, 0, 0, 0.08),
        0 10px 30px rgba(120, 120, 120, 0.08);
    --shadow-glow-gold: 0 0 40px rgba(120, 120, 120, 0.25),
        0 0 80px rgba(120, 120, 120, 0.1);
    --shadow-inner-luxury: inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}

/* =====================================================
   PREMIUM SECTION DIVIDERS
   ===================================================== */
.section-divider-premium {
    position: relative;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.section-divider-premium::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
}

.section-divider-premium::after {
    content: '◆';
    font-size: 0.6rem;
    color: var(--color-gold);
    position: relative;
    z-index: 1;
    background: var(--color-bg);
    padding: 0 1rem;
    animation: diamondPulse 3s ease-in-out infinite;
}

@keyframes diamondPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Elegant Section Borders */
.premium-section-border-top {
    border-top: 1px solid rgba(120, 120, 120, 0.15);
    position: relative;
}

.premium-section-border-top::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: var(--gradient-gold);
}

/* =====================================================
   PREMIUM PAGE HERO ENHANCEMENTS
   ===================================================== */
.page-hero {
    position: relative;
}

/* Animated Gold Particles in Hero */
.page-hero .container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(1.5px 1.5px at 15% 25%, rgba(120, 120, 120, 0.35) 0%, transparent 100%),
        radial-gradient(2px 2px at 75% 35%, rgba(120, 120, 120, 0.4) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 45% 65%, rgba(120, 120, 120, 0.3) 0%, transparent 100%),
        radial-gradient(2px 2px at 85% 75%, rgba(120, 120, 120, 0.35) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 25% 85%, rgba(120, 120, 120, 0.3) 0%, transparent 100%);
    animation: floatParticlesSoft 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes floatParticlesSoft {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.8;
    }

    33% {
        transform: translateY(-15px) translateX(10px);
        opacity: 1;
    }

    66% {
        transform: translateY(-5px) translateX(-8px);
        opacity: 0.7;
    }
}

/* Enhanced Page Title */
.page-title {
    position: relative;
    display: inline-block;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -0.3em;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
    opacity: 0;
    animation: fadeSlideUp 0.8s 0.5s forwards;
}

@keyframes fadeSlideUp {
    to {
        opacity: 1;
    }
}

/* =====================================================
   PREMIUM CARD EFFECTS
   ===================================================== */
/* Service Cards - Ultra Premium */
.service-card {
    position: relative;
    backdrop-filter: blur(5px);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-shine);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    border-radius: inherit;
}

.service-card:hover::after {
    opacity: 1;
    animation: shineEffect 1.5s ease-in-out;
}

@keyframes shineEffect {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.service-card:hover {
    box-shadow: var(--shadow-premium);
}

/* Enhanced Service Number */
.service-number {
    position: relative;
}

.service-card:hover .service-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 1px solid rgba(120, 120, 120, 0.2);
    border-radius: 50%;
    animation: expandFade 0.6s ease-out;
}

@keyframes expandFade {
    0% {
        width: 40px;
        height: 40px;
        opacity: 0.5;
    }

    100% {
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}

/* Product Cards - Ultra Premium */
.product-card {
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top,
            rgba(120, 120, 120, 0.03) 0%,
            transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: -1;
}

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

/* Feature Cards - Premium Enhancement */
.feature-card {
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at top right,
            rgba(120, 120, 120, 0.08) 0%,
            transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.feature-card:hover {
    box-shadow: var(--shadow-premium);
}

/* Value Cards - Luxury Hover */
.value-card {
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

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

.value-card:hover .value-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 5px 15px rgba(120, 120, 120, 0.4));
}

.value-icon {
    transition: all 0.4s ease;
}

/* =====================================================
   PREMIUM INTRO SECTION ENHANCEMENTS
   ===================================================== */
.intro-section {
    position: relative;
}

/* Floating Decorative Lines */
.intro-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 8%;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(120, 120, 120, 0.1);
    transform: rotate(45deg);
    animation: floatRotate 20s linear infinite;
}

@keyframes floatRotate {
    0% {
        transform: rotate(45deg) translateY(0);
    }

    50% {
        transform: rotate(65deg) translateY(-10px);
    }

    100% {
        transform: rotate(45deg) translateY(0);
    }
}

/* Enhanced Stats Display */
.intro-stats {
    position: relative;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(120, 120, 120, 0.03) 20%,
            rgba(120, 120, 120, 0.05) 50%,
            rgba(120, 120, 120, 0.03) 80%,
            transparent 100%);
    border-radius: 8px;
}

.stat-item {
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.4s ease, width 0.4s ease;
}

.stat-item:hover::after {
    opacity: 1;
    width: 50px;
}

.stat-item .stat-number {
    transition: all 0.4s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 10px rgba(120, 120, 120, 0.3));
}

/* =====================================================
   PREMIUM SERVICES SECTION ENHANCEMENTS
   ===================================================== */
.services-section::before,
.services-section::after {
    transition: all 8s ease-in-out;
}

.services-section:hover::before {
    transform: rotate(50deg);
}

.services-section:hover::after {
    transform: rotate(50deg);
}

/* Services Grid Premium Styling */
.services-grid {
    position: relative;
}

/* Luxury Connecting Lines */
.services-grid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(120, 120, 120, 0.1) 20%,
            rgba(120, 120, 120, 0.15) 50%,
            rgba(120, 120, 120, 0.1) 80%,
            transparent 100%);
    z-index: -1;
}

/* =====================================================
   PREMIUM PROJECTS SECTION ENHANCEMENTS
   ===================================================== */
.project-featured {
    position: relative;
}

.project-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(120, 120, 120, 0.02) 0%,
            transparent 50%,
            rgba(120, 120, 120, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.project-featured:hover::before {
    opacity: 1;
}

.project-featured:hover {
    box-shadow: var(--shadow-premium);
}

/* Project Tags Premium Style */
.project-tags span {
    position: relative;
    overflow: hidden;
}

.project-tags span::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.2) 50%,
            transparent 100%);
    transition: left 0.6s ease;
}

.project-tags span:hover::before {
    left: 100%;
}

/* =====================================================
   PREMIUM GALLERY ENHANCEMENTS
   ===================================================== */
.gallery-section {
    position: relative;
}

/* Premium Gallery Grid Pattern */
.gallery-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border: 1px solid rgba(120, 120, 120, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

/* Gallery Item Premium Hover */
.gallery-item {
    position: relative;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    transition: all 0.4s ease;
    border-radius: inherit;
    pointer-events: none;
    z-index: 5;
}

.gallery-item:hover::after {
    border-color: var(--color-gold);
    box-shadow: inset 0 0 30px rgba(120, 120, 120, 0.1);
}

/* Gallery Overlay Premium Enhancement */
.gallery-overlay {
    background: linear-gradient(to top,
            rgba(13, 13, 13, 0.95) 0%,
            rgba(26, 26, 26, 0.7) 30%,
            rgba(26, 26, 26, 0.3) 60%,
            transparent 100%);
}

.gallery-overlay::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-overlay::before {
    transform: scaleX(1);
}

/* =====================================================
   PREMIUM CONTACT FORM ENHANCEMENTS
   ===================================================== */
.contact-form-wrapper {
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
}

.contact-form-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle,
            rgba(120, 120, 120, 0.05) 0%,
            transparent 70%);
    pointer-events: none;
}

/* Premium Form Inputs */
.form-group input,
.form-group select,
.form-group textarea {
    position: relative;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 3px rgba(120, 120, 120, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

/* Contact Info Cards Premium */
.contact-info-card,
.branches-card {
    position: relative;
    overflow: hidden;
}

.contact-info-card::before,
.branches-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle,
            rgba(120, 120, 120, 0.08) 0%,
            transparent 50%);
    transition: all 0.6s ease;
    pointer-events: none;
}

.contact-info-card:hover::before,
.branches-card:hover::before {
    top: -30%;
    right: -30%;
}

/* Contact Icon Premium Animation */
.contact-icon {
    position: relative;
    overflow: hidden;
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(120, 120, 120, 0.2);
    transition: transform 0.3s ease;
}

.contact-details li:hover .contact-icon::before {
    transform: translate(-50%, -50%) scale(1);
}

/* =====================================================
   PREMIUM CTA SECTION ENHANCEMENTS
   ===================================================== */
.cta-section {
    position: relative;
}

/* Animated Gold Border Effect */
.cta-section::before {
    animation: borderShimmer 3s ease-in-out infinite;
}

@keyframes borderShimmer {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* Floating Gold Accents in CTA */
.cta-content::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -100px;
    width: 200px;
    height: 200px;
    border: 1px solid rgba(120, 120, 120, 0.15);
    border-radius: 50%;
    animation: floatCTA 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatCTA {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.cta-title {
    position: relative;
}

.cta-title span {
    position: relative;
    display: inline-block;
}

.cta-title span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s ease;
}

.cta-section:hover .cta-title span::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* =====================================================
   PREMIUM FOOTER ENHANCEMENTS
   ===================================================== */
.footer {
    position: relative;
}

/* Animated Top Border */
.footer::before {
    animation: shimmerBorder 4s ease-in-out infinite;
    background-size: 200% 100%;
}

@keyframes shimmerBorder {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Premium Footer Links Hover */
.footer-links-group a {
    position: relative;
    display: inline-block;
}

.footer-links-group a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold-light);
    transition: width 0.3s ease;
}

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

/* Social Links Premium Enhancement */
.social-link {
    position: relative;
}

.social-link::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid transparent;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.social-link:hover::after {
    border-color: rgba(120, 120, 120, 0.3);
    transform: scale(1.1);
}

/* =====================================================
   PREMIUM WHY SECTION ENHANCEMENTS
   ===================================================== */
.why-section {
    position: relative;
}

.why-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(120, 120, 120, 0.15) 50%,
            transparent 100%);
}

.why-content {
    position: relative;
}

.why-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 60px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

/* =====================================================
   PREMIUM BUTTON ENHANCEMENTS
   ===================================================== */
.btn {
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.btn-gold:hover {
    animation: none;
    box-shadow: 0 15px 40px rgba(120, 120, 120, 0.4);
}

/* Premium Button Ripple Effect */
.btn-primary::after,
.btn-gold::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-primary:hover::after,
.btn-gold:hover::after {
    width: 300px;
    height: 300px;
}

/* Outline Button Premium Enhancement */
.btn-outline-dark {
    position: relative;
    z-index: 1;
}

.btn-outline-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--color-charcoal);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.btn-outline-dark:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* =====================================================
   PREMIUM MARQUEE ENHANCEMENTS
   ===================================================== */
.marquee-section {
    position: relative;
    background-size: 200% 100%;
    animation: marqueeGradient 8s ease-in-out infinite;
}

@keyframes marqueeGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.marquee-content span {
    position: relative;
}

.marquee-content span:not(.marquee-dot)::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.marquee-content span:not(.marquee-dot):hover::after {
    transform: scaleX(1);
}

/* =====================================================
   PREMIUM SCROLL TO TOP ENHANCEMENT
   ===================================================== */
.scroll-top {
    position: relative;
    overflow: hidden;
}

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

.scroll-top:hover::before {
    left: 100%;
    transition: left 0.5s ease;
}

.scroll-top::after {
    content: '';
    position: absolute;
    inset: -3px;
    border: 1px solid rgba(120, 120, 120, 0.3);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.scroll-top:hover::after {
    opacity: 1;
    inset: -6px;
}

/* =====================================================
   PREMIUM VISUAL FRAME ENHANCEMENTS
   ===================================================== */
.visual-frame {
    position: relative;
}

.visual-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    border: 1px solid rgba(120, 120, 120, 0.2);
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: all 0.5s ease;
}

.visual-frame:hover::before {
    top: 5px;
    right: 5px;
    bottom: 5px;
    left: 5px;
    opacity: 1;
}

.frame-accent {
    transition: all 0.5s ease;
}

.visual-frame:hover .frame-accent {
    top: -30px;
    right: -30px;
}

/* Visual Badge Premium */
.visual-badge {
    position: relative;
    overflow: hidden;
}

.visual-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(120, 120, 120, 0.3) 50%,
            transparent 100%);
    animation: badgeShine 3s ease-in-out infinite;
}

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

    100% {
        left: 200%;
    }
}

/* =====================================================
   PREMIUM PRODUCTS FILTER ENHANCEMENTS
   ===================================================== */
.products-filter {
    position: relative;
    padding: var(--space-md) 0;
}

.products-filter::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(120, 120, 120, 0.2) 50%,
            transparent 100%);
}

.filter-btn {
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.filter-btn:hover::before {
    transform: scaleX(1);
}

.filter-btn.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    border-radius: inherit;
    z-index: -1;
    animation: filterActiveGlow 2s ease-in-out infinite;
}

@keyframes filterActiveGlow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(120, 120, 120, 0.3);
    }

    50% {
        box-shadow: 0 0 20px rgba(120, 120, 120, 0.5);
    }
}

/* =====================================================
   PREMIUM LINK ARROW ENHANCEMENTS
   ===================================================== */
.link-arrow {
    position: relative;
}

.link-arrow::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.4s ease;
}

.link-arrow:hover::before {
    width: 100%;
}

.link-arrow svg {
    transition: all 0.3s ease;
}

.link-arrow:hover svg {
    transform: translateX(-6px);
    filter: drop-shadow(0 0 5px rgba(120, 120, 120, 0.5));
}

/* =====================================================
   PROJECT SHOWCASE SECTIONS - Premium Gallery Design
   ===================================================== */
.project-showcase-section {
    padding: var(--space-4xl) 0;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.project-showcase-section.alt-bg {
    background: linear-gradient(180deg, #FAF8F5 0%, #F8F6F2 50%, #FAF8F5 100%);
}

.project-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(120, 120, 120, 0.03) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(120, 120, 120, 0.03) 0%, transparent 30%);
    pointer-events: none;
}

.project-showcase-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    position: relative;
}

.project-showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0.5rem 1.25rem;
    background: rgba(120, 120, 120, 0.1);
    border: 1px solid rgba(120, 120, 120, 0.3);
    border-radius: 50px;
    margin-bottom: var(--space-md);
    font-size: 0.85rem;
    color: var(--color-gold-rich);
}

.project-showcase-badge.gold {
    background: linear-gradient(135deg, rgba(120, 120, 120, 0.15) 0%, rgba(100, 100, 100, 0.1) 100%);
    border-color: var(--color-gold);
}

.project-showcase-badge svg {
    width: 18px !important;
    height: 18px !important;
    max-width: 18px;
    max-height: 18px;
    min-width: 18px;
    min-height: 18px;
    flex-shrink: 0;
    color: var(--color-gold);
}

.project-showcase-title {
    font-family: var(--font-hebrew-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    letter-spacing: 0.02em;
}

.project-showcase-location {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 1.1rem;
    color: var(--color-text-secondary);
}

.project-showcase-location svg {
    color: var(--color-gold);
}

.project-showcase-content {
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
}

.project-showcase-description p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: var(--space-xl);
}

.project-showcase-stats {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
}

.project-showcase-stats .stat {
    text-align: center;
    padding: var(--space-md) var(--space-lg);
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    min-width: 120px;
    transition: all 0.3s ease;
}

.project-showcase-stats .stat:hover {
    border-color: var(--color-border-gold);
    box-shadow: var(--shadow-gold);
    transform: translateY(-4px);
}

.project-showcase-stats .stat-value {
    display: block;
    font-family: var(--font-hebrew-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-gold);
    margin-bottom: var(--space-xs);
}

.project-showcase-stats .stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Project Gallery Grid - Premium Masonry Style */
.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.project-gallery-grid .gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.5s var(--ease-smooth);
}

.project-gallery-grid .gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

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

.project-gallery-grid .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-smooth);
}

.project-gallery-grid .gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

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

.project-gallery-grid .gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    z-index: 3;
    transition: border-color 0.4s ease;
    pointer-events: none;
}

.project-gallery-grid .gallery-item:hover::before {
    border-color: var(--color-gold);
}

.project-gallery-grid .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 60%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-label {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(120, 120, 120, 0.9);
    border-radius: 6px;
}

/* Premium Section Divider */
.section-divider-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl) 0;
    position: relative;
}

.section-divider-premium::before,
.section-divider-premium::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-border) 20%, var(--color-border) 80%, transparent 100%);
    max-width: 200px;
}

.divider-ornament {
    width: 12px;
    height: 12px;
    background: var(--gradient-gold);
    transform: rotate(45deg);
    margin: 0 var(--space-lg);
    position: relative;
}

.divider-ornament::before {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--color-bg);
    transform: rotate(0deg);
}

/* =====================================================
   WHY SECTION - ENHANCED WITH DECORATIVE ELEMENTS
   ===================================================== */
.why-section::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 100px;
    height: 100px;
    border: 1px solid rgba(120, 120, 120, 0.08);
    transform: rotate(45deg);
    pointer-events: none;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    position: relative;
}

.why-features::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(120, 120, 120, 0.15) 50%, transparent 100%);
    pointer-events: none;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: white;
    border: 1px solid var(--color-border);
    transition: all 0.4s var(--ease-smooth);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.feature-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(120, 120, 120, 0.05) 0%, transparent 70%);
    transition: all 0.4s ease;
    pointer-events: none;
}

.feature-card:hover::after {
    bottom: -30px;
    right: -30px;
}

.feature-card:hover {
    border-color: var(--color-border-gold);
    transform: translateY(-10px);
    box-shadow: var(--shadow-gold);
}

.feature-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    color: var(--color-gold);
    margin-bottom: var(--space-sm);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(120, 120, 120, 0.3));
}

/* Responsive for Project Gallery */
@media (max-width: 992px) {
    .project-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .project-gallery-grid .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }

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

@media (max-width: 576px) {
    .project-gallery-grid {
        grid-template-columns: 1fr;
    }

    .project-gallery-grid .gallery-item.large,
    .project-gallery-grid .gallery-item.wide {
        grid-column: span 1;
    }

    .project-showcase-stats {
        gap: var(--space-sm);
    }

    .project-showcase-stats .stat {
        min-width: 100px;
        padding: var(--space-sm);
    }

    .why-features {
        grid-template-columns: 1fr;
    }

    .why-features::before {
        display: none;
    }
}

/* =====================================================
   PREMIUM MOBILE RESPONSIVE ADJUSTMENTS
   ===================================================== */
@media (max-width: 768px) {

    /* Reduce animation complexity on mobile for performance */
    .page-hero .container::after,
    .intro-section::before,
    .cta-content::before {
        display: none;
    }

    /* Simplified hover effects on touch devices */
    .service-card:hover::after,
    .product-card:hover::after,
    .feature-card:hover::before {
        display: none;
    }

    /* Keep essential gold accents */
    .contact-form-wrapper::before,
    .value-card:hover::before,
    .gallery-overlay::before {
        display: block;
    }
}

/* =====================================================
   PREMIUM ACCESSIBILITY ENHANCEMENTS
   ===================================================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .marquee {
        animation: none;
    }

    .preloader {
        display: none;
    }
}

/* =====================================================
   FIXES AND PATCHES
   ===================================================== */

/* 1. Mobile Menu Background Fix */
@media (max-width: 992px) {
    .nav {
        /* Ensure specific mobile sizing and background coverage */
        height: 100vh !important;
        height: 100dvh !important;
        /* Robust for mobile browsers */
        overflow-y: auto;
        padding-bottom: 100px;
        /* Extra padding for bottom items */
        /* Ensure background is solid and covers full area */
        background: var(--color-bg) !important;
        background-image: linear-gradient(180deg, #FDFBF7 0%, #FAF8F5 100%) !important;
        /* Ensure gradient doesn't repeat/cutoff */
        background-attachment: scroll;
        background-size: cover;
    }
}

/* 2. Intro Section Spacing Fix */
@media (max-width: 992px) {
    .intro-grid {
        gap: var(--space-lg) !important;
        /* Reduce from 4xl (8rem) to lg (2rem) */
    }

    .intro-section {
        padding: var(--space-2xl) 0 !important;
        /* Reduce vertical padding */
    }

    /* Pull the image closer to the text */
    .intro-visual {
        margin-top: calc(var(--space-md) * -1);
    }
}

/* 3. Services Section Mobile Fix */
@media (max-width: 768px) {
    .service-card {
        overflow: hidden;
        position: relative;
    }

    /* Fix icon sizing to prevent overlap */
    .service-icon.premium-icon {
        width: 65px !important;
        height: 65px !important;
        padding: 10px !important;
        margin-bottom: var(--space-md) !important;
        flex-shrink: 0;
    }

    .service-icon.premium-icon img {
        width: 100% !important;
        height: 100% !important;
        max-width: 45px;
        max-height: 45px;
        object-fit: contain !important;
    }

    /* Fix service card padding and layout */
    .service-card {
        padding: var(--space-md) !important;
    }

    .service-title {
        font-size: 1.1rem !important;
        margin-bottom: var(--space-sm) !important;
    }

    .service-desc {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
    }

    .service-features {
        margin-top: var(--space-sm) !important;
    }

    .service-features li {
        font-size: 0.78rem !important;
        padding: 4px 0 !important;
    }

    /* Fix services grid background positioning */
    .services-section {
        padding: var(--space-2xl) 0 !important;
    }

    .services-bg-pattern {
        background-size: 30px 30px, 150px 150px, 150px 150px !important;
    }

    /* Remove decorative elements that may cause layout issues */
    .services-section::before,
    .services-section::after {
        display: none;
    }
}

/* 4. Marquee Continuous Scroll Enhancement */
.marquee {
    display: flex;
    width: fit-content;
    gap: 0;
    animation: marqueeScroll 20s linear infinite;
}

.marquee-content {
    display: inline-flex;
    align-items: center;
    gap: 2rem;
    flex-shrink: 0;
    white-space: nowrap;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Ensure marquee fills viewport */
.marquee-section {
    overflow: hidden;
    width: 100%;
}

/* =====================================================
   PREMIUM SERVICES SECTION - Ultra Luxury Redesign
   ===================================================== */

/* Premium Services Grid */
.services-grid-premium {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

/* Premium Service Card - Glassmorphism Design */
.service-card-luxury {
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.85) 50%,
            rgba(250, 248, 245, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(120, 120, 120, 0.15);
    border-radius: 24px;
    padding: var(--space-2xl);
    position: relative;
    overflow: hidden;
    transition: all 0.6s var(--ease-expo);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.03),
        0 4px 20px rgba(120, 120, 120, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Golden shimmer overlay */
.service-card-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent 0%,
            rgba(120, 120, 120, 0.08) 50%,
            transparent 100%);
    transition: left 0.8s ease;
    pointer-events: none;
}

/* Animated corner accents */
.service-card-luxury::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--color-gold-light) 20%,
            var(--color-gold) 50%,
            var(--color-gold-light) 80%,
            transparent 100%);
    opacity: 0;
    transform: scaleX(0);
    transition: all 0.5s var(--ease-expo);
    border-radius: 24px 24px 0 0;
}

.service-card-luxury:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(120, 120, 120, 0.4);
    box-shadow:
        0 25px 80px rgba(120, 120, 120, 0.15),
        0 15px 40px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.service-card-luxury:hover::before {
    left: 150%;
}

.service-card-luxury:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

/* Premium Icon Container */
.service-icon-luxury {
    width: 100px;
    height: 100px;
    margin-bottom: var(--space-xl);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-luxury .icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg,
            rgba(120, 120, 120, 0.08) 0%,
            rgba(100, 100, 100, 0.04) 100%);
    border-radius: 20px;
    border: 1px solid rgba(120, 120, 120, 0.12);
    transition: all 0.5s var(--ease-expo);
}

.service-icon-luxury .icon-bg::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg,
            rgba(120, 120, 120, 0.25) 0%,
            transparent 40%,
            transparent 60%,
            rgba(120, 120, 120, 0.25) 100%);
    border-radius: 23px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.service-icon-luxury img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.5s var(--ease-expo);
    filter: drop-shadow(0 4px 12px rgba(120, 120, 120, 0.2));
}

.service-card-luxury:hover .service-icon-luxury .icon-bg {
    background: linear-gradient(145deg,
            rgba(120, 120, 120, 0.15) 0%,
            rgba(100, 100, 100, 0.08) 100%);
    border-color: rgba(120, 120, 120, 0.3);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(120, 120, 120, 0.2);
}

.service-card-luxury:hover .service-icon-luxury .icon-bg::before {
    opacity: 1;
}

.service-card-luxury:hover .service-icon-luxury img {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 25px rgba(120, 120, 120, 0.35));
}

/* Title Styling */
.service-title-luxury {
    font-family: var(--font-hebrew-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    transition: all 0.4s ease;
    position: relative;
}

.service-card-luxury:hover .service-title-luxury {
    color: var(--color-gold-dark);
}

/* Description */
.service-desc-luxury {
    font-family: var(--font-hebrew);
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

/* Premium Features List */
.service-features-luxury {
    list-style: none;
    margin-bottom: var(--space-xl);
    padding: 0;
}

.service-features-luxury li {
    padding: var(--space-xs) 0;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    position: relative;
    padding-right: var(--space-lg);
    transition: all 0.3s ease;
}

.service-features-luxury li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.service-card-luxury:hover .service-features-luxury li {
    color: var(--color-text-secondary);
}

.service-card-luxury:hover .service-features-luxury li::before {
    width: 12px;
}

/* Premium Link */
.service-link-luxury {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--color-gold);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    padding: var(--space-sm) var(--space-lg);
    background: linear-gradient(145deg,
            rgba(120, 120, 120, 0.08) 0%,
            rgba(120, 120, 120, 0.04) 100%);
    border-radius: 50px;
    border: 1px solid rgba(120, 120, 120, 0.2);
    transition: all 0.4s ease;
}

.service-link-luxury svg {
    transition: transform 0.4s ease;
}

.service-link-luxury:hover {
    background: linear-gradient(145deg,
            rgba(120, 120, 120, 0.15) 0%,
            rgba(120, 120, 120, 0.1) 100%);
    border-color: rgba(120, 120, 120, 0.4);
    color: var(--color-gold-dark);
    box-shadow: 0 4px 20px rgba(120, 120, 120, 0.2);
}

.service-link-luxury:hover svg {
    transform: translateX(-4px);
}

/* Mobile Responsive - Services Premium */
@media (max-width: 1200px) {
    .services-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (max-width: 768px) {
    .services-grid-premium {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        padding: 0 var(--space-sm);
    }

    .service-card-luxury {
        padding: var(--space-xl);
        border-radius: 20px;
    }

    .service-icon-luxury {
        width: 80px;
        height: 80px;
        margin-bottom: var(--space-lg);
    }

    .service-title-luxury {
        font-size: 1.3rem;
    }

    .service-desc-luxury {
        font-size: 0.9rem;
    }

    .service-features-luxury li {
        font-size: 0.85rem;
    }

    /* Add horizontal scroll option for cards */
    .services-scroll-container {
        display: flex;
        gap: var(--space-lg);
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: var(--space-md);
        margin: 0 calc(-1 * var(--space-lg));
    }

    .services-scroll-container::-webkit-scrollbar {
        display: none;
    }

    .services-scroll-container .service-card-luxury {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }
}

@media (max-width: 480px) {
    .service-card-luxury {
        padding: var(--space-lg);
    }

    .service-icon-luxury {
        width: 70px;
        height: 70px;
    }

    .service-title-luxury {
        font-size: 1.2rem;
    }
}

/* =====================================================
   PARTNER COMPANIES GRID
   ===================================================== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.partner-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: var(--space-lg);
    text-align: center;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

a.partner-card,
a.partner-card:hover,
a.partner-card:visited,
a.partner-card:focus,
a.partner-card:active {
    text-decoration: none;
    color: inherit;
    outline: none;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.4s var(--ease-expo);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-border-gold);
}

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

.partner-logo-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-light);
    border-radius: 12px;
    padding: var(--space-sm);
    transition: all 0.4s ease;
}

.partner-card:hover .partner-logo-wrapper {
    background: var(--color-gold-muted);
}

.partner-logo-wrapper img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: grayscale(0%);
    transition: all 0.4s ease;
}

.partner-card:hover .partner-logo-wrapper img {
    filter: grayscale(0%) drop-shadow(0 0 12px rgba(120, 120, 120, 0.4)) drop-shadow(0 0 25px rgba(120, 120, 120, 0.2));
    transform: scale(1.05);
}

.partner-name {
    font-family: var(--font-hebrew-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
}

.partner-desc {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

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

@media (max-width: 576px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .partner-card {
        padding: var(--space-md);
    }

    .partner-logo-wrapper {
        width: 80px;
        height: 80px;
    }
}

/* =====================================================
   NEW PREMIUM SERVICES SECTION - FULL WIDTH MODERN DESIGN
   Black & White Luxury with Gold Accents
   ===================================================== */

.container-full {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.services-section-new {
    padding: 100px 0 120px;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.services-section-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
}

/* Elegant Section Tag */
.section-tag-elegant {
    display: inline-block;
    font-family: var(--font-hebrew);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    padding: 10px 28px;
    background: linear-gradient(135deg, rgba(120, 120, 120, 0.08) 0%, rgba(100, 100, 100, 0.04) 100%);
    border: 1px solid rgba(120, 120, 120, 0.2);
    border-radius: 30px;
    margin-bottom: var(--space-lg);
}

/* Modern Title with Gradient */
.section-title-modern {
    font-family: var(--font-hebrew-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.text-gold-gradient {
    background: linear-gradient(135deg, #7A7A7A 0%, #6B6B6B 50%, #4A4A4A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc-elegant {
    font-family: var(--font-hebrew);
    font-size: 1.1rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Modern Services Grid - Full Width */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 70px;
}

/* Modern Service Card */
.service-card-modern {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0a0a0a, #7A7A7A, #0a0a0a);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    border-color: transparent;
}

.service-card-modern:hover::before {
    opacity: 1;
}

/* Service Image at Top */
.service-image-wrapper {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
    padding: 40px;
    overflow: hidden;
}

.service-image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(120, 120, 120, 0.3), transparent);
}

.service-image {
    max-width: 120px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.08));
}

.service-card-modern:hover .service-image {
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 15px 35px rgba(120, 120, 120, 0.2));
}

.service-image-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(120, 120, 120, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-modern:hover .service-image-overlay {
    opacity: 1;
}

/* Service Content */
.service-content-modern {
    padding: 35px 30px 30px;
    text-align: center;
}

.service-title-modern {
    font-family: var(--font-hebrew-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card-modern:hover .service-title-modern {
    color: var(--color-gold-dark);
}

.service-desc-modern {
    font-family: var(--font-hebrew);
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Modern Features List */
.service-features-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.service-features-modern li {
    font-size: 0.8rem;
    color: #555;
    padding: 6px 14px;
    background: #f5f5f5;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-features-modern li {
    background: rgba(120, 120, 120, 0.08);
    border-color: rgba(120, 120, 120, 0.15);
}

/* Modern Elegant Link Button */
.service-link-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-hebrew);
    font-size: 0.9rem;
    font-weight: 600;
    color: #0a0a0a;
    text-decoration: none;
    padding: 10px 22px;
    border: 1px solid #0a0a0a;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.service-link-modern svg {
    transition: transform 0.3s ease;
}

.service-link-modern:hover {
    background: #0a0a0a;
    color: #fff;
}

.service-link-modern:hover svg {
    transform: translateX(-4px);
}

/* Services Mobile Responsive */
@media (max-width: 1024px) {
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .service-image-wrapper {
        height: 180px;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .services-section-new {
        padding: 70px 0 80px;
    }

    .container-full {
        padding: 0 var(--space-md);
    }

    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 450px;
        margin: 50px auto 0;
    }

    .service-card-modern {
        text-align: center;
    }

    .service-content-modern {
        padding: 25px 20px;
    }

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

    .section-desc-elegant {
        font-size: 1rem;
        padding: 0 var(--space-sm);
    }
}

/* =====================================================
   ENHANCED MARQUEE SECTION - THINNER & MORE ELEGANT
   ===================================================== */

.marquee-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
    padding: 12px 0 !important;
    overflow: hidden;
    position: relative;
}

.marquee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(120, 120, 120, 0.4), transparent);
}

.marquee-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(120, 120, 120, 0.4), transparent);
}

.marquee-content span {
    font-size: 1rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.05em;
}

.marquee-dot {
    font-size: 0.5rem !important;
    color: var(--color-gold) !important;
    opacity: 1 !important;
}

/* =====================================================
   PREMIUM PARTNERS SHOWCASE - LUXURY LOGO DISPLAY
   Enhanced with elegant decorative elements & always-visible content
   ===================================================== */

.partners-section {
    padding: 100px 0 120px !important;
    background: linear-gradient(180deg, #fdfcfa 0%, #f8f6f2 50%, #fdfcfa 100%);
    position: relative;
    overflow: hidden;
}

/* Elegant decorative corner ornaments */
.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(120, 120, 120, 0.4) 50%, transparent 90%);
}

.partners-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(120, 120, 120, 0.4) 50%, transparent 90%);
}

/* Subtle radial glow background */
.partners-section .container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse at center, rgba(120, 120, 120, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Premium Partners Grid */
.partners-grid {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 35px 45px;
    margin-top: 60px !important;
    padding: 30px 0;
    position: relative;
    z-index: 1;
}

/* Premium Partner Card - Elegant Glass Effect */
.partner-card {
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(120, 120, 120, 0.12) !important;
    border-radius: 16px;
    padding: 28px 24px 22px !important;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    min-width: 180px;
    max-width: 220px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(120, 120, 120, 0.5), transparent);
    border-radius: 2px;
    opacity: 0;
    transition: all 0.4s ease;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(120, 120, 120, 0.12), 0 8px 25px rgba(0, 0, 0, 0.06) !important;
    border-color: rgba(120, 120, 120, 0.25) !important;
    background: rgba(255, 255, 255, 0.95) !important;
}

.partner-card:hover::before {
    opacity: 1;
    width: 60%;
}

/* Premium Logo Wrapper */
.partner-logo-wrapper {
    width: 130px !important;
    height: 85px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 0;
    padding: 0 !important;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Gold underline accent */
.partner-logo-wrapper::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 2px;
    background: linear-gradient(90deg, rgba(120, 120, 120, 0.3), rgba(120, 120, 120, 0.6), rgba(120, 120, 120, 0.3));
    border-radius: 2px;
    transition: all 0.4s ease;
}

.partner-card:hover .partner-logo-wrapper::after {
    width: 60px;
    background: linear-gradient(90deg, rgba(120, 120, 120, 0.5), rgba(120, 120, 120, 0.9), rgba(120, 120, 120, 0.5));
}

/* Premium Logo Styling - Always Full Color */
.partner-logo-wrapper img {
    max-width: 100% !important;
    max-height: 75px !important;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%) brightness(1) !important;
    opacity: 1 !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Elegant Gold Glow on Hover */
.partner-card:hover .partner-logo-wrapper img {
    transform: scale(1.06);
    filter: grayscale(0%) brightness(1.02) drop-shadow(0 0 15px rgba(120, 120, 120, 0.35)) drop-shadow(0 0 30px rgba(120, 120, 120, 0.15)) !important;
}

/* Partner Name - Always Visible & Refined */
.partner-name {
    font-family: var(--font-hebrew-display);
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    opacity: 1;
    transition: all 0.3s ease;
}

.partner-card:hover .partner-name {
    color: #6B6B6B;
}

/* Partner Description - Always Visible */
.partner-desc {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.6;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0;
}

.partner-card:hover .partner-desc {
    color: #555;
}

/* Partners Section for Products Page - Specific Styling */
#partners .partners-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

#partners .partner-card {
    padding: 25px 18px 20px !important;
    max-width: unset;
}

#partners .partner-logo-wrapper {
    width: 120px !important;
    height: 75px !important;
}

#partners .partner-desc {
    font-size: 0.85rem;
}

/* Partners Mobile Responsive */
@media (max-width: 1024px) {
    .partners-grid {
        gap: 40px 50px;
    }

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

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

    .partners-grid {
        gap: 25px 35px;
    }

    #partners .partners-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .partner-card {
        padding: 15px !important;
    }

    .partner-logo-wrapper {
        width: 100px !important;
        height: 70px !important;
    }

    .partner-logo-wrapper img {
        max-height: 60px !important;
    }

    .partner-name {
        font-size: 0.9rem;
    }

    .partner-desc {
        font-size: 0.8rem;
        display: block;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        gap: 15px;
    }

    #partners .partners-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .partner-card {
        padding: 16px 12px !important;
        min-width: unset;
        max-width: unset;
        border-radius: 12px;
    }

    .partner-logo-wrapper {
        width: 80px !important;
        height: 55px !important;
    }

    .partner-logo-wrapper img {
        max-height: 50px !important;
    }

    .partner-logo-wrapper::after {
        display: none;
    }

    .partner-name {
        font-size: 0.8rem;
        margin-bottom: 4px;
    }

    .partner-desc {
        font-size: 0.7rem;
        max-height: 26px;
    }
}

/* =====================================================
   ENHANCED WHY US SECTION - LUXURY UPGRADE
   ===================================================== */

.why-section {
    padding: 100px 0 !important;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%) !important;
    position: relative;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.06), transparent);
}

.why-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    border-color: rgba(120, 120, 120, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--color-gold);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #7A7A7A 0%, #6B6B6B 100%);
    transform: scale(1.1);
}

.feature-card:hover .feature-icon svg {
    stroke: #ffffff;
}

.feature-content h4 {
    font-family: var(--font-hebrew-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 12px;
}

.feature-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

/* Why Section Mobile */
@media (max-width: 1024px) {
    .why-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-section {
        padding: 70px 0 !important;
    }

    .why-features {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 40px auto 0;
    }

    .feature-card {
        padding: 30px 25px;
        display: flex;
        align-items: center;
        text-align: right;
        gap: 20px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;
        margin: 0;
    }

    .feature-content {
        flex: 1;
    }

    .feature-content h4 {
        font-size: 1.05rem;
        margin-bottom: 8px;
    }

    .feature-content p {
        font-size: 0.85rem;
    }
}

/* =====================================================
   INTRO SECTION MOBILE IMPROVEMENTS
   ===================================================== */

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

    .intro-grid {
        text-align: center;
    }

    .intro-content {
        text-align: center;
    }

    .intro-stats {
        justify-content: center;
    }

    .visual-badge {
        left: 50%;
        transform: translateX(-50%);
    }

    .stat-plus {
        font-size: 1.5rem;
        color: var(--color-gold);
        font-weight: 700;
        margin-right: -8px;
    }
}

/* Stat Plus styling */
.stat-plus {
    font-size: 2rem;
    color: var(--color-gold);
    font-weight: 700;
    vertical-align: top;
    margin-right: -5px;
}

/* =====================================================
   GLOBAL MOBILE CENTERING
   ===================================================== */

@media (max-width: 768px) {
    .section-header.center {
        text-align: center !important;
    }

    .section-header .section-tag,
    .section-header .section-tag-elegant {
        display: inline-block;
    }

    .section-title-xl,
    .section-title-modern {
        text-align: center !important;
    }

    .section-desc,
    .section-desc-elegant {
        text-align: center !important;
        padding: 0 var(--space-md);
    }

    /* Center footer content on mobile */
    .footer-grid {
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

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

    .footer-links-group {
        text-align: center;
    }

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

    .footer-contact ul li {
        justify-content: center;
    }
}

/* =====================================================
   ABOUT PAGE - Enhanced Premium Sections
   ===================================================== */

/* Expertise Section with Animated Background */
.intro-section.expertise-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg,
            var(--color-bg) 0%,
            rgba(120, 120, 120, 0.03) 20%,
            rgba(120, 120, 120, 0.05) 50%,
            rgba(120, 120, 120, 0.03) 80%,
            var(--color-bg) 100%);
}

/* Section CTA Button Styling */
.section-cta {
    padding: var(--space-2xl) var(--space-xl);
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(120, 120, 120, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s var(--ease-smooth);
}

.section-cta:hover {
    transform: translateY(-5px);
    box-shadow:
        0 20px 60px rgba(120, 120, 120, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(120, 120, 120, 0.4);
}

.section-cta .cta-text {
    font-family: var(--font-hebrew-display);
    font-weight: 500;
}

@media (max-width: 768px) {
    .section-cta {
        padding: var(--space-xl) var(--space-md);
    }

    .section-cta .cta-text {
        font-size: 1rem !important;
    }
}

.intro-section.expertise-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(120, 120, 120, 0.08) 0%, transparent 70%);
    animation: float-left 20s ease-in-out infinite;
    pointer-events: none;
}

.intro-section.expertise-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(100, 100, 100, 0.06) 0%, transparent 70%);
    animation: float-right 25s ease-in-out infinite;
    pointer-events: none;
}

@keyframes float-left {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-30px) translateX(20px);
    }
}

@keyframes float-right {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(30px) translateX(-20px);
    }
}

/* Enhanced Service Cards for Expertise */
.intro-section .service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(120, 120, 120, 0.15);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.intro-section .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s var(--ease-expo);
}

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

/* Decorative corner elements */
.intro-section .service-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background:
        linear-gradient(to bottom, var(--color-gold-pale) 0%, transparent 100%),
        linear-gradient(to left, var(--color-gold-pale) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.intro-section .service-card:hover::after {
    opacity: 0.3;
}

/* Icon styling for expertise cards */
.intro-section .service-icon {
    position: relative;
    margin: 0 auto var(--space-lg);
    background: linear-gradient(145deg,
            rgba(120, 120, 120, 0.08) 0%,
            rgba(245, 230, 184, 0.12) 50%,
            rgba(120, 120, 120, 0.08) 100%);
    border-radius: 20px;
    padding: var(--space-md);
    border: 2px solid rgba(120, 120, 120, 0.2);
    box-shadow:
        0 8px 25px rgba(120, 120, 120, 0.15),
        inset 0 2px 8px rgba(255, 255, 255, 0.8);
}

.intro-section .service-card:hover .service-icon {
    background: linear-gradient(145deg,
            rgba(120, 120, 120, 0.15) 0%,
            rgba(245, 230, 184, 0.2) 50%,
            rgba(120, 120, 120, 0.15) 100%);
    border-color: rgba(120, 120, 120, 0.4);
    box-shadow:
        0 15px 45px rgba(120, 120, 120, 0.3),
        inset 0 2px 12px rgba(255, 255, 255, 0.9),
        0 0 60px rgba(120, 120, 120, 0.2);
    transform: scale(1.1) translateY(-10px) rotate(5deg);
}

/* Animated icon glow effect */
.intro-section .service-icon svg {
    filter: drop-shadow(0 4px 12px rgba(120, 120, 120, 0.3));
    transition: all 0.5s var(--ease-expo);
}

.intro-section .service-card:hover .service-icon svg {
    filter: drop-shadow(0 8px 20px rgba(120, 120, 120, 0.5));
    transform: scale(1.05);
}

/* Process Section with Premium Background */
.services-section.process-section {
    position: relative;
    background:
        linear-gradient(180deg,
            var(--color-bg-light) 0%,
            rgba(248, 245, 239, 0.95) 50%,
            var(--color-bg-light) 100%),
        repeating-linear-gradient(90deg,
            transparent,
            transparent 50px,
            rgba(120, 120, 120, 0.02) 50px,
            rgba(120, 120, 120, 0.02) 52px);
}

/* Decorative geometric elements */
.services-section.process-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(120, 120, 120, 0.15);
    border-radius: 50%;
    animation: pulse-ring 4s ease-in-out infinite;
}

.services-section.process-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(120, 120, 120, 0.15);
    transform: rotate(45deg);
    animation: rotate-square 6s linear infinite;
}

@keyframes pulse-ring {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

@keyframes rotate-square {
    0% {
        transform: rotate(45deg);
    }

    100% {
        transform: rotate(405deg);
    }
}

/* Enhanced Process Cards */
.services-section.process-section .certification-card {
    position: relative;
    background: white;
    border: 1px solid rgba(120, 120, 120, 0.2);
    overflow: visible;
    transition: all 0.5s var(--ease-expo);
}

/* Connecting lines between process steps */
.services-section.process-section .certification-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(120, 120, 120, 0.3) 20%,
            rgba(120, 120, 120, 0.3) 80%,
            transparent 100%);
    transform: translateY(-50%);
    z-index: -1;
}

.services-section.process-section .certification-card:first-child::after {
    display: none;
}

.services-section.process-section .certification-card:last-child::after {
    display: none;
}

.services-section.process-section .certification-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow:
        0 25px 60px rgba(120, 120, 120, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(120, 120, 120, 0.3);
    border-color: var(--color-gold);
}

/* Enhanced process icon with animated ring */
.services-section.process-section .certification-icon {
    position: relative;
}

.services-section.process-section .certification-icon::before {
    content: '';
    position: absolute;
    inset: -15px;
    border: 2px dashed rgba(120, 120, 120, 0.2);
    border-radius: 50%;
    animation: rotate-icon-ring 20s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.services-section.process-section .certification-card:hover .certification-icon::before {
    opacity: 1;
}

@keyframes rotate-icon-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Partners Section with Luxury Styling */
.intro-section.partners-section {
    background:
        linear-gradient(180deg,
            var(--color-bg) 0%,
            rgba(253, 251, 247, 0.98) 20%,
            rgba(248, 245, 239, 0.95) 50%,
            rgba(253, 251, 247, 0.98) 80%,
            var(--color-bg) 100%);
    position: relative;
    overflow: hidden;
}

/* Animated gold dust particles effect */
.intro-section.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle, rgba(120, 120, 120, 0.15) 1px, transparent 1px),
        radial-gradient(circle, rgba(100, 100, 100, 0.1) 1px, transparent 1px);
    background-size: 50px 50px, 80px 80px;
    background-position: 0 0, 40px 40px;
    animation: particles-float 30s linear infinite;
    opacity: 0.4;
    pointer-events: none;
}

@keyframes particles-float {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100px);
    }
}

/* Diagonal light rays */
.intro-section.partners-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(45deg,
            transparent,
            transparent 100px,
            rgba(120, 120, 120, 0.03) 100px,
            rgba(120, 120, 120, 0.03) 120px);
    animation: light-rays 40s linear infinite;
    pointer-events: none;
}

@keyframes light-rays {
    0% {
        transform: translateX(-50%) translateY(-50%) rotate(45deg);
    }

    100% {
        transform: translateX(-40%) translateY(-40%) rotate(45deg);
    }
}

/* Enhanced partner cards */
.intro-section.partners-section .value-card {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(120, 120, 120, 0.25);
    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    overflow: hidden;
}

/* Shimmer effect on hover */
.intro-section.partners-section .value-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(120deg,
            transparent 30%,
            rgba(120, 120, 120, 0.15) 50%,
            transparent 70%);
    transform: translateX(-100%) translateY(-100%) rotate(30deg);
    transition: transform 0.8s ease;
}

.intro-section.partners-section .value-card:hover::before {
    transform: translateX(100%) translateY(100%) rotate(30deg);
}

.intro-section.partners-section .value-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--color-gold);
    box-shadow:
        0 25px 70px rgba(120, 120, 120, 0.25),
        0 10px 30px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 80px rgba(120, 120, 120, 0.15);
}

/* Partner icon with premium styling */
.intro-section.partners-section .value-icon {
    position: relative;
    margin: 0 auto var(--space-lg);
    background:
        linear-gradient(145deg,
            rgba(120, 120, 120, 0.1) 0%,
            rgba(245, 230, 184, 0.15) 50%,
            rgba(120, 120, 120, 0.1) 100%);
    border-radius: 50%;
    padding: var(--space-lg);
    border: 3px solid rgba(120, 120, 120, 0.25);
    box-shadow:
        0 10px 30px rgba(120, 120, 120, 0.2),
        inset 0 2px 10px rgba(255, 255, 255, 0.8);
    transition: all 0.5s var(--ease-expo);
}

.intro-section.partners-section .value-card:hover .value-icon {
    background:
        linear-gradient(145deg,
            rgba(120, 120, 120, 0.2) 0%,
            rgba(245, 230, 184, 0.3) 50%,
            rgba(120, 120, 120, 0.2) 100%);
    border-color: rgba(120, 120, 120, 0.5);
    box-shadow:
        0 20px 50px rgba(120, 120, 120, 0.4),
        inset 0 2px 15px rgba(255, 255, 255, 1),
        0 0 80px rgba(120, 120, 120, 0.3);
    transform: scale(1.15) rotate(-5deg);
}

/* Animated icon glow pulse */
@keyframes icon-glow-pulse {

    0%,
    100% {
        box-shadow:
            0 10px 30px rgba(120, 120, 120, 0.2),
            inset 0 2px 10px rgba(255, 255, 255, 0.8);
    }

    50% {
        box-shadow:
            0 15px 40px rgba(120, 120, 120, 0.35),
            inset 0 2px 12px rgba(255, 255, 255, 0.9),
            0 0 40px rgba(120, 120, 120, 0.2);
    }
}

.intro-section.partners-section .value-icon {
    animation: icon-glow-pulse 3s ease-in-out infinite;
}

/* Typography enhancements */
.intro-section.partners-section .value-card h3 {
    position: relative;
    background: var(--gradient-gold-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    transition: all 0.3s ease;
}

.intro-section.partners-section .value-card:hover h3 {
    letter-spacing: 0.5px;
    transform: translateY(-2px);
}

/* Responsive adjustments for about page sections */
@media (max-width: 1200px) {
    .intro-section.expertise-section .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
}

@media (max-width: 992px) {
    .services-section.process-section .certification-card::after {
        display: none;
    }

    .intro-section.expertise-section .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .intro-section.partners-section .values-grid {
        grid-template-columns: 1fr;
    }

    .services-section.process-section .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-section.process-section .certifications-grid {
        grid-template-columns: 1fr;
    }

    .intro-section .service-card {
        padding: var(--space-lg);
    }

    .intro-section .service-icon {
        width: 70px;
        height: 70px;
        padding: var(--space-sm);
    }
}

/* =====================================================
   MOBILE HOMEPAGE - HIDE ABOUT IMAGE AND TEXT
   ===================================================== */

@media (max-width: 768px) {

    /* Hide the intro visual (about image) on mobile */
    .intro-section>.container>.intro-grid>.intro-visual {
        display: none !important;
    }

    /* Hide the text about import partners in intro section */
    .intro-section .intro-text p:last-child {
        display: none !important;
    }

    /* Adjust intro grid to single column on mobile when visual is hidden */
    .intro-section .intro-grid {
        grid-template-columns: 1fr !important;
    }
}

/* =====================================================
   ENHANCED WHY US FEATURE CARDS - LUXURY UPGRADE
   ===================================================== */

.feature-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%) !important;
    padding: 45px 35px !important;
    border-radius: 24px !important;
    text-align: center !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
    border: 1px solid rgba(120, 120, 120, 0.08) !important;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.04),
        0 2px 8px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    position: relative !important;
    overflow: hidden !important;
}

.feature-card::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, #6B6B6B 0%, #7A7A7A 30%, #C0C0C0 50%, #7A7A7A 70%, #6B6B6B 100%) !important;
    transform: scaleX(0) !important;
    transform-origin: center !important;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.feature-card::after {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    background: radial-gradient(ellipse 150% 80% at 50% 120%, rgba(120, 120, 120, 0.08) 0%, transparent 60%) !important;
    opacity: 0 !important;
    transition: opacity 0.5s ease !important;
    pointer-events: none !important;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02) !important;
    box-shadow:
        0 30px 80px rgba(120, 120, 120, 0.15),
        0 15px 40px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(120, 120, 120, 0.3) !important;
}

.feature-card:hover::before {
    transform: scaleX(1) !important;
}

.feature-card:hover::after {
    opacity: 1 !important;
}

/* Enhanced Feature Icons - Luxurious Circles */
.feature-icon {
    width: 80px !important;
    height: 80px !important;
    margin: 0 auto 28px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%) !important;
    border-radius: 50% !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
    position: relative !important;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.05) !important;
}

.feature-icon::before {
    content: '' !important;
    position: absolute !important;
    inset: 3px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(120, 120, 120, 0.3) !important;
    transition: all 0.4s ease !important;
}

.feature-icon::after {
    content: '' !important;
    position: absolute !important;
    inset: -4px !important;
    border-radius: 50% !important;
    border: 1px solid rgba(120, 120, 120, 0.15) !important;
    opacity: 0 !important;
    transition: all 0.4s ease !important;
}

.feature-icon svg {
    width: 36px !important;
    height: 36px !important;
    stroke: var(--color-gold) !important;
    stroke-width: 1.5 !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
    filter: drop-shadow(0 2px 4px rgba(120, 120, 120, 0.3)) !important;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(145deg, #7A7A7A 0%, #6B6B6B 50%, #4A4A4A 100%) !important;
    transform: scale(1.15) rotate(5deg) !important;
    box-shadow:
        0 15px 40px rgba(120, 120, 120, 0.4),
        0 8px 20px rgba(120, 120, 120, 0.2),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2),
        inset 0 2px 4px rgba(255, 255, 255, 0.3) !important;
}

.feature-card:hover .feature-icon::before {
    border-color: rgba(255, 255, 255, 0.4) !important;
}

.feature-card:hover .feature-icon::after {
    opacity: 1 !important;
    inset: -8px !important;
    border-color: rgba(120, 120, 120, 0.25) !important;
}

.feature-card:hover .feature-icon svg {
    stroke: #ffffff !important;
    filter: drop-shadow(0 2px 6px rgba(255, 255, 255, 0.4)) !important;
    transform: scale(1.1) !important;
}

/* Enhanced Feature Content Styling */
.feature-content h4 {
    font-family: var(--font-hebrew-display) !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: #0a0a0a !important;
    margin-bottom: 15px !important;
    transition: color 0.4s ease !important;
}

.feature-content p {
    font-size: 0.95rem !important;
    color: #555 !important;
    line-height: 1.8 !important;
}

.feature-card:hover .feature-content h4 {
    color: #6B6B6B !important;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {

    /* Why Us - Center aligned stack */
    .feature-card {
        padding: 35px 20px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 20px !important;
    }

    .feature-icon {
        width: 70px !important;
        height: 70px !important;
        min-width: 70px !important;
        margin: 0 auto !important;
    }

    .feature-icon svg {
        width: 30px !important;
        height: 30px !important;
    }

    .feature-content {
        width: 100% !important;
    }

    .feature-content h4 {
        justify-content: center !important;
        text-align: center !important;
        font-size: 1.15rem !important;
        margin-bottom: 10px !important;
    }

    .feature-content p {
        text-align: center !important;
        font-size: 0.9rem !important;
    }

    .feature-card:hover .feature-icon {
        transform: scale(1.1) rotate(0deg) !important;
    }

    /* CTA Section - Centered */
    .cta-content {
        text-align: center !important;
        padding: 0 var(--space-sm) !important;
    }

    .cta-title {
        text-align: center !important;
    }

    .cta-desc {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .cta-buttons {
        justify-content: center !important;
        flex-direction: column !important;
        gap: 15px !important;
    }

    .cta-buttons .btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* =====================================================
   ABOUT PAGE - PARTIAL PARTNERS GRID
   ===================================================== */

.partners-grid-partial {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 30px;
}

.intro-section.partners-section .section-footer {
    margin-top: var(--space-xl);
}

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

@media (max-width: 576px) {
    .partners-grid-partial {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* =====================================================
   MOBILE HOMEPAGE FIXES - Hide & Center
   ===================================================== */

@media (max-width: 768px) {

    /* Hide intro visual (image + badge) on mobile */
    .intro-visual {
        display: none !important;
    }

    /* Center "Why Us" section on mobile */
    .why-section {
        text-align: center;
    }

    .why-features {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
    }

    .feature-card {
        text-align: center !important;
        align-items: center !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .feature-content {
        text-align: center !important;
    }

    .feature-icon {
        margin: 0 auto 15px auto !important;
    }

    /* Center "Join Us" social section on mobile */
    .social-follow-section {
        text-align: center;
    }

    .social-follow-wrapper {
        text-align: center;
    }

    .social-follow-header {
        text-align: center !important;
    }

    .social-links-elegant {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }

    .social-link-elegant {
        justify-content: center !important;
        width: 100% !important;
        max-width: 300px !important;
    }

    .social-info {
        text-align: right !important;
    }
}