/*
 * ZEHAVI GALLERY - LUXURY LANDING PAGE STYLESHEET (LIGHT MODE - VIDEO BACKGROUND)
 * Created: June 2026
 * Description: Premium light mode design system with a floating glassmorphic pill header and a centered video background hero.
 */

/* ==========================================================================
   0. FONTS & RESETS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

:root {
    /* Color Palette - Light Mode Pivot */
    --color-bg-dark: #0A0A0A;
    /* Used for dark footer */
    --color-bg-white: #FFFFFF;
    /* Primary background */
    --color-bg-light: #F6F6F6;
    /* Secondary background */
    --color-bg-card: #FFFFFF;
    /* Card background */
    --color-gold: #C5A880;
    /* Champagne / Accent Gold */
    --color-gold-hover: #B59870;
    --color-border-light: rgba(0, 0, 0, 0.07);
    --color-border-dark: rgba(255, 255, 255, 0.08);
    --color-text-dark: #121212;
    /* Primary text color */
    --color-text-muted: #666666;
    /* Secondary text */
    --color-text-light: #F5F5F5;
    /* Used in dark elements */
    --color-whatsapp: #25D366;

    /* Typography */
    --font-primary: 'Google Sans', 'Google Sans Hebrew', sans-serif;

    /* Spacing & Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-smooth: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-white);
    color: var(--color-text-dark);
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
}

body {
    direction: rtl;
    overflow-x: hidden;
    background-color: var(--color-bg-white);
}

/* Accessibility Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold);
    color: #FFFFFF;
    padding: 12px 24px;
    z-index: 99999;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: top 0.2s ease;
}

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

/* Base Container */
.max-width-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Typography styles */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--color-text-dark);
}

p {
    line-height: 1.65;
    color: var(--color-text-muted);
}

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

/* RTL Phone Number Safety Container */
.ltr-dir {
    direction: ltr;
    display: inline-block;
}

/* ==========================================================================
   1. BUTTONS & UI ELEMENTS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-align: center;
}

.btn-primary {
    background-color: var(--color-gold);
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.15);
    color: var(--color-text-dark);
}

.btn-outline:hover {
    background-color: rgba(0, 0, 0, 0.02);
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: transparent;
    border-color: var(--color-gold);
    color: var(--color-gold);
}

.btn-accent:hover {
    background-color: var(--color-gold);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* ==========================================================================
   2. FLOATING PILL HEADER
   ========================================================================== */
.main-header {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1200px;
    height: 70px;
    z-index: 1000;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border-light);
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.main-header.scrolled {
    top: 12px;
    background-color: rgba(255, 255, 255, 0.92);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 24px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}

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

/* Desktop Navigation */
.desktop-nav {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

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

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

/* Desktop Quick Contact Cluster */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-whatsapp-link {
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.header-whatsapp-link:hover {
    color: var(--color-whatsapp);
}

.header-phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-muted);
    font-size: 0.88rem;
    font-weight: 500;
}

.header-phone-link:hover {
    color: var(--color-gold);
}

.header-phone-icon {
    width: 15px;
    height: 15px;
}

.btn-header {
    padding: 10px 22px;
    font-size: 0.85rem;
    border-radius: var(--radius-full);
}

/* Hamburger button for Mobile */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
    z-index: 1100;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text-dark);
    position: absolute;
    transition: var(--transition-smooth);
}

.hamburger-line:nth-child(1) {
    top: 0;
}

.hamburger-line:nth-child(2) {
    top: 9px;
}

.hamburger-line:nth-child(3) {
    bottom: 0;
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 9px;
}

/* Mobile Fullscreen Nav Overlay */
.mobile-nav-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--color-bg-white);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

.mobile-nav-list {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.mobile-nav-link {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

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

.mobile-btn-link {
    display: inline-block;
    font-size: 1.15rem;
    margin-top: 16px;
    padding: 12px 36px;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    border-radius: var(--radius-full);
}

/* ==========================================================================
   3. HERO SECTION (VIDEO BACKGROUND & CENTERED CONTENT)
   ========================================================================== */
.hero-section {
    position: relative;
    padding-top: 160px;
    padding-bottom: 110px;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-white);
}

/* Hero Social Proof Badges */
.hero-badge-right {
    position: absolute;
    bottom: 36px;
    right: 48px;
    z-index: 5;
    transition: var(--transition-smooth);
}

.hero-badge-right:hover {
    transform: translateY(-4px) scale(1.03);
}

.hero-badge-img {
    height: 185px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35));
    margin-bottom: -55px;
}

.hero-badge-left {
    position: absolute;
    bottom: 36px;
    left: 48px;
    z-index: 5;
    transition: var(--transition-smooth);
}

.hero-badge-left:hover {
    transform: translateY(-4px) scale(1.03);
}

.google-rating-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    background-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 12px 18px;
    color: #FFFFFF;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    direction: ltr;
    /* Google rating left-to-right look is clean and international */
}

.google-badge-logo {
    display: flex;
    align-items: center;
    gap: 6px;
}

.google-icon-svg {
    flex-shrink: 0;
}

.google-text {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.9);
}

.google-rating-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-number {
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.star-icon {
    width: 13px;
    height: 13px;
    color: #FFC107;
    /* Golden rating stars */
}

/* Absolute Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

/* Video semi-transparent dark cover for hero video background contrast */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.62);
    /* dark translucent mask */
    z-index: 2;
    pointer-events: none;
}

/* Huge Faded Text in Background (Reference Detail) */
.hero-bg-text-faded {
    position: absolute;
    bottom: -2%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.035);
    text-transform: uppercase;
    line-height: 0.8;
    pointer-events: none;
    z-index: 2;
    letter-spacing: -0.03em;
    user-select: none;
    width: 100%;
    text-align: center;
}

.hero-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.06) 0%, rgba(255, 255, 255, 0) 75%);
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    max-width: 840px;
    margin: 0 auto;
}

.hero-tagline {
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.15;
    color: #FFFFFF;
    /* High contrast white for dark video background */
    font-weight: 800;
    max-width: 780px;
}

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

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.82);
    /* High contrast white-grey for dark video background */
    max-width: 640px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 12px;
    width: 100%;
}

.hero-btns .btn-primary {
    border-radius: var(--radius-full);
    padding: 14px 40px;
}

.hero-btns .btn-outline {
    border-radius: var(--radius-full);
    padding: 14px 34px;
    background-color: rgba(255, 255, 255, 0.08);
    /* Dark mode style outline button */
    border-color: rgba(255, 255, 255, 0.35);
    color: #FFFFFF;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-btns .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.18);
    border-color: var(--color-gold);
    color: var(--color-gold);
}

/* ==========================================================================
   4. SCROLL QUOTE SECTION & VIDEO TRIGGER
   ========================================================================== */
.quote-section {
    padding: 110px 0;
    background-color: var(--color-bg-light);
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
}

.quote-container {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

/* Scroll-linked text highlighting */
.scroll-quote {
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 1.55;
    letter-spacing: -0.01em;
    text-align: center;
    margin-bottom: 60px;
}

/* Splitted spans for JS coloring */
.scroll-quote span {
    color: rgba(18, 18, 18, 0.14);
    transition: color 0.3s ease;
    display: inline-block;
    margin-left: 5px;
}

.scroll-quote span.active {
    color: var(--color-text-dark);
}

.scroll-quote span.gold {
    color: var(--color-gold);
}

/* Video Thumbnail Container */
.video-preview-wrapper {
    position: relative;
    width: 100%;
    max-width: 840px;
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 16/9;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.02);
    transition: var(--transition-smooth);
}

.video-preview-wrapper:hover .video-thumbnail {
    transform: scale(1.02);
    filter: brightness(0.95);
}

/* Play Button Badge */
.play-btn-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    z-index: 5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.play-icon-svg {
    width: 22px;
    height: 22px;
    margin-right: 3px;
}

.play-btn-circle::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    border: 1px dashed rgba(197, 168, 128, 0.5);
    animation: rotatePlayRing 25s linear infinite;
}

.video-preview-wrapper:hover .play-btn-circle {
    background-color: var(--color-gold);
    color: #FFFFFF;
    transform: translate(-50%, -50%) scale(1.06);
}

/* ==========================================================================
   5. FEATURES (COUNTERS) SECTION
   ========================================================================== */
.features-section {
    padding: 120px 0;
    background-color: var(--color-bg-light);
    /* Light grey section background as in reference */
}

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

.section-tagline {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-gold);
    margin-bottom: 12px;
    display: block;
}

.section-main-title {
    font-size: 2.3rem;
    color: var(--color-text-dark);
    max-width: 600px;
    margin: 0 auto;
}

.counters-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    /* Increased gap for breathing room */
    max-width: 1040px;
    margin: 0 auto;
    width: 100%;
}

.counter-bar-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-bg-card);
    /* Pure white cards */
    border: none;
    /* Borderless design for premium look */
    padding: 50px 70px;
    /* Generous card padding from reference image */
    border-radius: 40px;
    /* Very rounded pill-like corners */
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
    /* Extremely soft luxury shadow */
    gap: 60px;
}

.counter-bar-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 4px;
    background-color: var(--color-gold);
    transform: scaleY(0);
    transition: var(--transition-smooth);
}

.counter-bar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.04);
}

.counter-bar-card:hover::before {
    transform: scaleY(1);
}

.counter-info-col {
    flex: 1;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.counter-desc {
    font-size: 1.15rem;
    /* Larger, readable body text as in reference */
    color: var(--color-text-dark);
    /* Darker and cleaner charcoal */
    line-height: 1.65;
    max-width: 680px;
    margin: 0;
}

.counter-num-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* RTL: aligns everything rightwards (towards center of card) */
    justify-content: center;
    min-width: 200px;
    flex-shrink: 0;
}

.counter-number-wrapper {
    font-size: 5.5rem;
    /* Huge numbers as in the reference image */
    font-weight: 700;
    color: var(--color-text-dark);
    /* Jet black/charcoal numbers */
    display: flex;
    align-items: baseline;
    /* Align bottom baseline of digits and suffix */
    line-height: 1;
    margin-bottom: 6px;
    direction: ltr;
    /* Force left-to-right representation for numbers e.g. 50+ */
    font-feature-settings: "tnum";
}

.counter-suffix {
    font-size: 3rem;
    /* Large suffix */
    font-weight: 500;
    margin-left: 2px;
}

.counter-label {
    font-size: 1rem;
    /* Slightly larger, readable label text */
    font-weight: 500;
    color: var(--color-text-muted);
    /* Muted gray text below number */
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

/* Mobile responsive collapse for metrics */
@media (max-width: 768px) {
    .features-section {
        padding: 80px 0;
    }

    .counters-list {
        gap: 20px;
    }

    .counter-bar-card {
        flex-direction: column-reverse;
        /* Put the big counter number on top */
        gap: 24px;
        padding: 40px 28px;
        border-radius: 28px;
        text-align: center;
        align-items: center;
    }

    .counter-info-col {
        text-align: center;
        align-items: center;
    }

    .counter-desc {
        font-size: 1.05rem;
        text-align: center;
    }

    .counter-num-col {
        align-items: center;
        text-align: center;
        min-width: unset;
    }

    .counter-number-wrapper {
        font-size: 4rem;
        /* Scaled down for mobile screen width */
        justify-content: center;
        margin-bottom: 4px;
    }

    .counter-suffix {
        font-size: 2.5rem;
    }

    .counter-label {
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   6. ABOUT SECTION CAROUSEL (REDESIGNED EDITORIAL SPLIT LAYOUT)
   ========================================================================== */
.about-section {
    padding: 120px 0;
    background-color: var(--color-bg-light);
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
    overflow: hidden;
}

.about-grid-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    /* Split ratio matching mockup */
    gap: 80px;
    align-items: center;
}

/* Right Column: Text Content */
.about-carousel-content {
    display: flex;
    flex-direction: column;
    text-align: right;
}

.about-pagination {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
}

.pagination-line-wrapper {
    flex: 1;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.pagination-line-progress {
    position: absolute;
    top: 0;
    right: 0;
    /* RTL progress expands from the right */
    height: 100%;
    width: 0%;
    /* Dynamically animated in JS */
    background-color: var(--color-gold);
    transition: width 0.1s linear;
}

.page-num {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-num.active {
    color: var(--color-text-dark);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--color-text-dark);
    font-weight: 700;
    cursor: default;
}

.page-num:not(.active):hover {
    color: var(--color-text-dark);
    transform: translateY(-1px);
}

.about-slide-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

.about-slide-tagline {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gold);
    display: block;
    margin-bottom: 16px;
}

.about-slide-title {
    font-size: 2.8rem;
    /* Huge title as in mockup */
    font-weight: 700;
    line-height: 1.25;
    color: var(--color-text-dark);
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.carousel-navigation {
    display: flex;
    gap: 16px;
    align-items: center;
}

.carousel-nav-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background-color: transparent;
    color: var(--color-text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

/* Next button (left arrow inside filled circle) */
.carousel-nav-btn.next {
    background-color: var(--color-text-dark);
    color: #ffffff;
    border-color: var(--color-text-dark);
}

.carousel-nav-btn:hover {
    transform: scale(1.05);
}

.carousel-nav-btn.next:hover {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: #ffffff;
}

.carousel-nav-btn.prev:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background-color: rgba(0, 0, 0, 0.02);
}

.carousel-nav-icon {
    width: 20px;
    height: 20px;
    stroke-width: 2.5;
}

/* Left Column: Media */
.about-carousel-media {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1 / 1;
    /* Squarish aspect ratio */
}

.about-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 36px;
    /* High-end rounded image corners */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.03);
}

/* Overlapping Info Card */
.about-image-card {
    position: absolute;
    bottom: -24px;
    left: -24px;
    /* RTL overlaps bottom-left */
    display: flex;
    width: 330px;
    height: 120px;
    border-radius: 24px;
    overflow: hidden;
    background-color: #ffffff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    z-index: 10;
    transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.3s ease;
}

.about-image-card:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Split Card Right Side (RTL): Thumbnail Image */
.about-card-img-wrapper {
    width: 120px;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    flex-shrink: 0;
}

.about-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Split Card Left Side (RTL): Dark block with details & timer */
.about-card-info {
    flex: 1;
    background-color: #121212;
    /* Charcoal black background */
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #ffffff;
    text-align: right;
}

.about-card-index {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-gold);
    letter-spacing: 0.05em;
    display: block;
}

.about-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 4px;
    margin-bottom: auto;
    line-height: 1.3;
}

.about-card-timer {
    width: 100%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    margin-top: 8px;
}

.about-timer-bar {
    position: absolute;
    top: 0;
    right: 0;
    /* RTL fill progress starts from the right */
    height: 100%;
    width: 0%;
    /* Dynamically animated in JS */
    background-color: var(--color-gold);
    transition: width 0.1s linear;
}

/* Transition utility classes */
.about-slide-desc,
.about-slide-tagline,
.about-slide-title,
.about-card-title {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.about-main-image,
.about-card-img {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-out {
    opacity: 0 !important;
    transform: translateY(10px) !important;
}

.image-fade-out {
    opacity: 0 !important;
    transform: scale(0.98) !important;
}

/* Mobile responsive collapse for About Carousel */
@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }

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

    .about-carousel-media {
        order: 1;
        /* Image on top */
        margin-bottom: 105px;
    }

    .about-image-wrapper {
        max-width: 380px;
    }

    .about-image-card {
        left: 50%;
        transform: translateX(-50%);
        /* Center the card horizontally on mobile */
        bottom: -85px;
        width: 290px;
        height: 100px;
    }

    .about-image-card:hover {
        transform: translateX(-50%) translateY(-3px);
    }

    .about-card-img-wrapper {
        width: 100px;
        padding: 10px;
    }

    .about-card-info {
        padding: 14px 16px;
    }

    .about-card-title {
        font-size: 0.9rem;
    }

    .about-carousel-content {
        order: 2;
        /* Text on bottom */
        text-align: center;
        align-items: center;
    }

    .about-pagination {
        justify-content: center;
        margin-bottom: 30px;
    }

    .about-slide-desc {
        text-align: center;
        margin-bottom: 24px;
        font-size: 1.05rem;
    }

    .about-slide-title {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 30px;
    }

    .carousel-navigation {
        justify-content: center;
    }
}

/* ==========================================================================
   7. GALLERY (BENTO GRID) SECTION
   ========================================================================== */
.gallery-section {
    padding: 100px 0;
    background-color: var(--color-bg-white);
}

/* Bento grid definition */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 230px;
    gap: 20px;
}

.bento-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
}

.bento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* Item hover info mask */
.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

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

.bento-category {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-gold);
    margin-bottom: 4px;
}

.bento-title {
    font-size: 1.05rem;
    color: #FFFFFF;
    font-weight: 600;
}

/* Specific Bento Layout configurations for luxury feel */
.bento-col-2 {
    grid-column: span 2;
}

.bento-row-2 {
    grid-row: span 2;
}

/* ==========================================================================
   8. CALL TO ACTION SECTION & FORM (REDESIGNED LANDSCAPE CARD WITH VIDEO BG)
   ========================================================================== */
.cta-section {
    padding: 120px 0;
    background-image: url('zehavi_footer.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 680px;
}

.cta-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark screen overlay to highlight white card */
    z-index: 2;
}

.cta-container {
    position: relative;
    z-index: 3;
    width: 100%;
}

/* White Lead Card overlaid on the video (Aligned Left) */
.cta-form-card {
    position: relative;
    width: 440px;
    background-color: rgba(255, 255, 255, 0.96);
    /* Opaque white */
    backdrop-filter: blur(10px);
    border-radius: 28px;
    padding: 36px 40px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    margin-left: 0;
    margin-right: auto;
    /* Aligns form card to the left on desktop in RTL/LTR */
    overflow-y: auto;
    /* Fallback scroll for smaller vertical frames */
    text-align: center;
    /* Centered title and description text */
}

/* Force Google Sans Font for all form card content */
.cta-form-card,
.cta-form-card * {
    font-family: 'Google Sans', 'Google Sans Hebrew', sans-serif !important;
}

.cta-form-card .form-header {
    margin-bottom: 24px;
}

.cta-form-card .form-header-title {
    font-size: 2rem;
    /* Bigger title */
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.25;
    margin-bottom: 8px;
    text-align: center;
}

.cta-form-card .form-header-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.45;
    text-align: center;
}

.cta-form-card .lead-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: right;
    /* Form elements align to the right */
}

.cta-form-card .form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

/* Modern borderless inputs with solid bottom borders (Right aligned) */
.cta-form-card .form-input {
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12) !important;
    border-radius: 0 !important;
    padding: 10px 0 !important;
    font-size: 0.95rem !important;
    color: var(--color-text-dark) !important;
    width: 100% !important;
    transition: var(--transition-fast) !important;
    text-align: right !important;
    /* Align value and placeholder text to the right */
}

.cta-form-card .form-input:focus {
    outline: none !important;
    border-bottom-color: var(--color-gold) !important;
}

/* Error validation bottom border override */
.cta-form-card .form-group.has-error .form-input {
    border-bottom-color: #FF3B30 !important;
    background-color: transparent !important;
}

/* Error Message (Hidden by default, aligns to the right) */
.cta-form-card .error-msg {
    display: none;
    color: #FF3B30;
    font-size: 0.72rem;
    text-align: right !important;
    margin-top: 5px;
    font-weight: 500;
}

.cta-form-card .form-group.has-error .error-msg {
    display: block;
}

/* Checkbox alignment (RTL aligned right) */
.cta-form-card .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 4px;
    text-align: right;
    justify-content: flex-start;
}

.cta-form-card .form-checkbox {
    margin-top: 3px;
    accent-color: var(--color-gold);
    cursor: pointer;
}

.cta-form-card .checkbox-label {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.35;
    text-align: right;
}

.cta-form-card .checkbox-label a {
    color: var(--color-gold);
    text-decoration: underline;
}

/* Pill submit button styling (Align right in RTL) */
.cta-btn-submit {
    background-color: #121212;
    color: #ffffff;
    border-radius: var(--radius-full);
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 8px;
    width: fit-content;
    align-self: flex-start;
    /* Aligns to the right side (start of RTL) */
}

.cta-btn-submit:hover {
    background-color: var(--color-gold);
    transform: translateY(-2px);
}

.submit-arrow-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.cta-btn-submit:hover .submit-arrow-circle {
    background-color: #121212;
    color: #ffffff;
}

/* WhatsApp/Phone direct quick contacts after the form (Centered) */
.form-direct-contacts {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 16px;
    margin-top: 16px;
    justify-content: center;
    /* Centered */
}

.direct-label {
    font-weight: 500;
}

.direct-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--color-text-dark);
    font-weight: 600;
    transition: var(--transition-fast);
}

.direct-contact-btn:hover {
    color: var(--color-gold);
}

.direct-icon {
    flex-shrink: 0;
}

.divider {
    color: rgba(0, 0, 0, 0.15);
}

/* Success panel sizing inside card container */
.cta-form-card .form-success-overlay {
    position: absolute;
    inset: 0;
    background-color: #ffffff;
    border-radius: 28px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.cta-form-card .form-success-overlay.active {
    opacity: 1;
    visibility: visible;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Mobile responsive collapse for CTA Section */
@media (max-width: 768px) {
    .cta-section {
        padding: 222px 0 0 0;
        min-height: auto;
        background-size: 124%;
        background-position: top center;
    }

    .cta-video-overlay {
        background: linear-gradient(180deg, rgba(3, 11, 25, 0) 0%, rgba(10, 10, 10, 1) 49%);
    }

    .cta-form-card {
        width: 100%;
        max-width: 440px;
        padding: 30px 20px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        margin: 0 auto;
        /* Center on mobile viewports */
    }

    .form-direct-contacts {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
}

/* ==========================================================================
   9. FOOTER (DARK CONTRAST)
   ========================================================================== */
.main-footer {
    background-color: var(--color-bg-dark);
    border-top: 1px solid var(--color-border-dark);
    padding: 80px 0 120px 0;
    /* extra padding bottom for mobile action bar */
    color: var(--color-text-light);
}

.main-footer h3 {
    color: #FFFFFF;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 32px;
    width: auto;
    object-fit: contain;
    align-self: flex-start;
}

.footer-desc {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    max-width: 360px;
}

.footer-social-links {
    display: flex;
    gap: 14px;
    margin-top: 4px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background-color: rgba(255, 255, 255, 0.02);
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-icon:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background-color: rgba(255, 255, 255, 0.04);
}

.social-icon-svg {
    width: 16px;
    height: 16px;
}

.footer-col-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #FFFFFF;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-links-list a:hover {
    color: var(--color-gold);
    padding-right: 4px;
}

.footer-contact-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

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

.footer-contact-icon {
    width: 15px;
    height: 15px;
    color: var(--color-gold);
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copy {
    font-size: 0.78rem;
    color: var(--color-text-muted);
}

/* ==========================================================================
   10. LIGHTBOX & MODALS
   ========================================================================== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(5, 5, 5, 0.96);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    padding: 30px;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    background-color: #000;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-container.image-mode {
    aspect-ratio: auto;
    max-height: 80vh;
    max-width: 800px;
}

.lightbox-media {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -45px;
    left: 0;
    background: none;
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 500;
}

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

.lightbox-close-icon {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   11. CONVERSION WIDGETS
   ========================================================================== */

/* Widget 1: Desktop Bottom-Left Fixed WhatsApp Widget */
.desktop-whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    z-index: 999;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.desktop-whatsapp-float:hover {
    transform: scale(1.06) translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.desktop-whatsapp-float::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1.5px solid #25D366;
    opacity: 0.7;
    animation: whatsappRipple 2.2s cubic-bezier(0.1, 0.8, 0.3, 1) infinite;
}

@keyframes whatsappRipple {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Widget 2: Mobile Glassmorphic Capsule Actions Dock (Light theme) */
.mobile-action-bar {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    max-width: 320px;
    height: 64px;
    border-radius: 32px;
    display: none;
    /* Hidden on desktop */
    z-index: 9999;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.mobile-action-bar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding: 0 8px;
}

.action-item {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.action-item:hover,
.action-item:active {
    color: var(--color-text-dark);
    background-color: rgba(0, 0, 0, 0.02);
}

.action-item.highlight {
    background-color: var(--color-gold);
    color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(197, 168, 128, 0.3);
}

.action-item.highlight:hover,
.action-item.highlight:active {
    background-color: var(--color-gold-hover);
    color: #FFFFFF;
}

.action-icon {
    width: 18px;
    height: 18px;
}

/* Safety CSS Rule for Solid Fills (whatsapp logos, etc) */
.header-whatsapp-icon,
.header-whatsapp-icon path,
.desktop-whatsapp-float svg,
.desktop-whatsapp-float svg path,
.mobile-action-bar svg[fill="currentColor"],
.mobile-action-bar svg[fill="currentColor"] path,
.social-links svg,
.social-links svg path,
.footer-social-links svg,
.footer-social-links svg path {
    fill: currentColor !important;
    stroke: none !important;
}

/* ==========================================================================
   12. MEDIA RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* Max Width 1024px (Tablets & Smaller Desktops) */
@media (max-width: 1024px) {
    .main-header {
        width: calc(100% - 32px);
    }

    .hero-container {
        padding: 0 24px;
    }

    .hero-title {
        font-size: 3.2rem;
    }

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

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

    .about-intro-col {
        align-items: center;
        text-align: center;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .bento-col-2 {
        grid-column: span 2;
    }

    .bento-row-2 {
        grid-row: span 2;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cta-info {
        text-align: center;
        align-items: center;
    }
}

/* Max Width 768px (Mobile & Tablets Viewport) */
@media (max-width: 768px) {
    body {
        padding-bottom: 100px;
        /* buffer spacer */
    }

    .max-width-container {
        padding: 0 24px;
    }

    .main-header {
        height: 64px;
        top: 16px;
        width: calc(100% - 24px);
    }

    .desktop-nav,
    .header-actions {
        display: none;
    }

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

    .desktop-whatsapp-float {
        display: none !important;
    }

    .mobile-action-bar {
        display: block;
    }

    .hero-section {
        padding-top: 130px;
        padding-bottom: 140px;
        /* Extra room for bottom badges */
    }

    .hero-badge-right {
        bottom: 24px;
        right: 24px;
    }

    .hero-badge-left {
        bottom: 24px;
        left: 24px;
    }

    .hero-badge-img {
        height: 110px;
        /* Scale down for tablet viewports */
        margin-bottom: -35px;
    }

    .google-rating-badge {
        padding: 8px 12px;
        border-radius: 12px;
        gap: 4px;
    }

    .google-text {
        font-size: 0.75rem;
    }

    .google-rating-info {
        gap: 6px;
    }

    .rating-number {
        font-size: 0.95rem;
    }

    .rating-stars {
        gap: 1px;
    }

    .star-icon {
        width: 10px;
        height: 10px;
    }

    /* Style badges on small mobile screens */
    @media (max-width: 480px) {
        .hero-section {
            padding-bottom: 180px;
            /* Extra room for larger badges */
        }

        .hero-badge-left {
            bottom: 20px;
            left: 20px;
        }

        .hero-badge-right {
            bottom: 20px;
            right: 20px;
        }

        .hero-badge-img {
            height: 115px;
            margin-bottom: -36px;
        }

        .google-rating-badge {
            padding: 8px 12px;
            border-radius: 12px;
            gap: 3px;
        }

        .google-badge-logo svg {
            width: 13px !important;
            height: 13px !important;
        }

        .google-text {
            font-size: 0.7rem;
        }

        .google-rating-info {
            gap: 5px;
        }

        .rating-number {
            font-size: 0.9rem;
        }

        .rating-stars {
            gap: 0.5px;
        }

        .star-icon {
            width: 10px;
            height: 10px;
        }
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-desc {
        font-size: 1.05rem;
    }

    .scroll-quote {
        font-size: 1.5rem;
        line-height: 1.45;
    }

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

    .about-slide {
        padding: 30px 24px;
    }

    .slide-title {
        font-size: 1.25rem;
    }

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

    .form-card {
        padding: 30px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-logo {
        align-self: center;
    }

    .footer-desc {
        max-width: 100%;
    }

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

    .footer-contact-item {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Max Width 480px (Small Mobile Phones) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

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

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

    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 180px;
    }

    .bento-col-2,
    .bento-row-2 {
        grid-column: span 1;
        grid-row: span 1;
    }
}

/* ==========================================================================
   9. CREDITS BAR SECTION
   ========================================================================== */
.credits-bar {
    padding: 16px 0;
    background-color: #0A0A0A;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
}

.credits-link {
    display: inline-flex;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.credits-link:hover {
    opacity: 1;
}

.credits-link svg {
    display: block;
}

/* ==========================================================================
   10. THANK YOU PAGE STYLING
   ========================================================================== */
.thankyou-body {
    margin: 0;
    padding: 0;
    font-family: var(--font-primary);
    background-color: #0c0c0c;
    overflow-x: hidden;
}

.thankyou-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('zehavi_thanks.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 20px;
    box-sizing: border-box;
}

.thankyou-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.thankyou-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 520px;
}

.thanks-logo-wrapper {
    margin-bottom: 40px;
    transition: transform 0.3s ease;
}

.thanks-logo-wrapper:hover {
    transform: scale(1.05);
}

.thanks-logo {
    height: 38px;
    width: auto;
    display: block;
}

.thanks-card {
    width: 100%;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 36px;
    padding: 48px 40px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.35);
    text-align: center;
    box-sizing: border-box;
    animation: thanksSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes thanksSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.thanks-icon-ring {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background-color: rgba(181, 148, 86, 0.1);
    /* Soft gold tint */
    border: 1px solid rgba(181, 148, 86, 0.25);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 28px;
    color: #b59456;
    /* Gold brand color */
}

.thanks-check-icon {
    width: 32px;
    height: 32px;
    stroke: #b59456;
}

.thanks-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #121212;
    margin: 0 0 16px;
    line-height: 1.3;
}

.thanks-desc {
    font-size: 1.1rem;
    color: #555555;
    margin: 0 0 32px;
    line-height: 1.6;
}

.thanks-action-btn-wrapper {
    display: flex;
    justify-content: center;
}

.thanks-btn {
    min-width: 200px;
    padding: 16px 32px;
    font-size: 1.05rem;
    border-radius: 50px;
    background-color: #121212;
    color: #FFFFFF;
    border: 1px solid #121212;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.thanks-btn:hover {
    background-color: transparent;
    color: #121212;
    border-color: #121212;
}

@media (max-width: 480px) {
    .thanks-card {
        padding: 36px 24px;
        border-radius: 28px;
    }

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

    .thanks-desc {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .thanks-logo-wrapper {
        margin-bottom: 30px;
    }
}