/* ============================================
   רוני בירמן חלואני - Landing Page Styles
   Premium Design - FULL RTL Support
   ============================================ */

/* CSS Variables - Nude/Sage/Gold Palette */
:root {
    /* Background Colors - Warm Nudes */
    --bg-primary: #f5ebe0;
    --bg-secondary: #faf8f5;
    --bg-white: #ffffff;
    --bg-dark: #4a423c;
    --bg-gradient: linear-gradient(135deg, #f5ebe0 0%, #faf8f5 50%, #fef0ec 100%);

    /* Text Colors */
    --text-primary: #3e3632;
    --text-secondary: #5c524a;
    --text-muted: #8d7b6c;
    --text-light: #c4b7a6;
    --text-white: #ffffff;

    /* Accent Colors - Sage Green & Gold */
    --accent-color: #9caf88;
    --accent-dark: #7a9165;
    --accent-light: #dce5d4;
    --accent-green: #9caf88;
    --accent-orange: #c4a35a;

    /* Gold Accent */
    --gold-accent: #c4a35a;
    --gold-soft: #f5ecd7;

    /* Rose Accent (subtle) */
    --rose-accent: #e8b4b8;
    --rose-soft: #f8dde0;

    --success-color: #25D366;
    --success-hover: #1da851;

    --font-main: 'Rubik', sans-serif;

    --section-padding: 100px 0;
    --container-max: 1200px;

    --shadow-sm: 0 2px 8px rgba(78, 66, 60, 0.06);
    --shadow-md: 0 4px 20px rgba(78, 66, 60, 0.08);
    --shadow-lg: 0 8px 40px rgba(78, 66, 60, 0.12);
    --shadow-card: 0 10px 30px rgba(156, 175, 136, 0.15);
    --shadow-glow: 0 0 30px rgba(196, 163, 90, 0.25);
    --shadow-soft: 0 4px 16px rgba(78, 66, 60, 0.08);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.7;
    overflow-x: hidden;
    direction: rtl;
}

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

/* Accessibility: Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn-primary:focus-visible,
.btn-cta:focus-visible,
.video-card:focus-visible,
.service-step:focus-visible,
.path-step:focus-visible {
    outline: 3px solid var(--accent-dark);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Skip link for screen readers */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-dark);
    color: var(--text-white);
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    z-index: 10000;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 10px;
}

ul,
ol {
    list-style: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.container {
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Navigation - RTL FIXED
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(245, 235, 224, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.2rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    padding: 0.15rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
    flex-direction: row;
}

/* Logo with subtitle */
/* Logo with subtitle */
.logo-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* Center horizontal */
    text-decoration: none;
    line-height: 1.2;
}

/* Logo Image - Professional integration */
.logo-img {
    height: 90px;
    width: auto;
    display: block;
    mix-blend-mode: multiply;
    /* Remove white JPEG background */
    transition: var(--transition);
    object-fit: contain;
}

.logo-img:hover {
    transform: scale(1.03);
}

/* Mobile menu logo */
.mobile-logo-img {
    height: 55px;
}

/* Hide old text elements */
.logo,
.logo-name,
.logo-title {
    display: none;
}

.logo-subtitle {
    display: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent-dark);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
}

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

/* Hamburger - RIGHT SIDE for RTL */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
    padding: 0.5rem;
    order: -1;
    /* Move to start (right side in RTL) */
}

/* Mobile Menu - Opens from RIGHT */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-white);
    padding: 0;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-logo {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.mobile-menu-close {
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    padding: 0.5rem;
}

.mobile-menu a:not(.mobile-logo) {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.mobile-menu a:hover {
    background: var(--bg-primary);
    color: var(--accent-dark);
}

/* Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* ============================================
   Section Titles
   ============================================ */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--accent-dark));
    margin: 1rem auto 0;
    border-radius: 2px;
}

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

.section-title.light::after {
    background: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Hero Section - Enhanced
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--bg-primary);
    /* Fallback */
    position: relative;
    overflow: hidden;
    /* Abstract Background Image */
    background-image: url('./assets/images/תמונה לרקע מופשט.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Overlay for text readability */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 245, 245, 0.85);
    /* 85% opacity over the image */
    z-index: 1;
}

.hero-decoration {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
}

.hero-decoration-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-decoration-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-dark);
    bottom: -50px;
    left: -50px;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {

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

    50% {
        transform: translate(20px, 20px);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Desktop Split Layout with Diagonal */
@media (min-width: 993px) {
    .hero-section::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 45%;
        height: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
        clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
        z-index: 1;
        pointer-events: none;
    }
}

.hero-content {
    max-width: 500px;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

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

.hero-badge {
    display: inline-block;
    background: rgba(212, 165, 165, 0.2);
    color: var(--accent-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    animation: pulse-subtle 2s ease-in-out infinite;
}

@keyframes pulse-subtle {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    /* Gradient Text Effect */
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--text-primary) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Reveal Animation */
    opacity: 0;
    animation: revealText 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
    /* Reveal Animation */
    opacity: 0;
    animation: revealText 0.8s ease forwards;
    animation-delay: 0.5s;
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    /* Reveal Animation */
    opacity: 0;
    animation: revealText 0.8s ease forwards;
    animation-delay: 0.8s;
}

/* Keyframe for Text Reveal */
@keyframes revealText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.hero-badge {
    /* Reveal Animation */
    opacity: 0;
    animation: revealText 0.6s ease forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--text-primary);
    color: var(--text-white);
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-primary i {
    font-size: 1.3rem;
}

.hero-image {
    position: relative;
    animation: fadeInLeft 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

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

/* Cinematic Wrapper - organic blob shape like profile photo */
.hero-parallax {
    overflow: hidden;
    border-radius: 60% 40% 50% 50% / 50% 50% 50% 50%;
    box-shadow: 0 20px 60px rgba(78, 66, 60, 0.25);
    perspective: 800px;
    max-width: 140%;
    min-width: 380px;
}

.hero-parallax::before {
    content: '';
    position: absolute;
    top: -8px;
    right: -8px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-color);
    border-radius: 60% 40% 50% 50% / 50% 50% 50% 50%;
    z-index: -1;
}

/* Ken Burns + Float container */
.hero-img-cinema {
    animation: heroFloat 6s ease-in-out infinite;
}

.hero-img-cinema img {
    width: 100%;
    display: block;
    animation: kenBurns3D 25s ease-in-out infinite alternate;
    transform-origin: center center;
}

/* 3D Ken Burns: zoom + rotation in space */
@keyframes kenBurns3D {
    0% {
        transform: scale(1) rotateY(0deg) rotateX(0deg) translate(0, 0);
    }

    20% {
        transform: scale(1.15) rotateY(5deg) rotateX(2deg) translate(-2%, 1%);
    }

    40% {
        transform: scale(1.22) rotateY(-3deg) rotateX(-2.5deg) translate(1.5%, -1%);
    }

    60% {
        transform: scale(1.18) rotateY(4deg) rotateX(1.5deg) translate(-1%, 1.5%);
    }

    80% {
        transform: scale(1.25) rotateY(-4deg) rotateX(-1deg) translate(2%, -0.5%);
    }

    100% {
        transform: scale(1.12) rotateY(2deg) rotateX(0.5deg) translate(-0.5%, 0.5%);
    }
}

/* Float / Breathe: gentle up-down movement */
@keyframes heroFloat {

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

    50% {
        transform: translateY(-10px) rotateZ(0.5deg);
    }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {

    .hero-img-cinema,
    .hero-img-cinema img {
        animation: none !important;
    }
}

/* ============================================
   About Section - Enhanced with Side Decorations
   ============================================ */
.about-section {
    padding: var(--section-padding);
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.about-decoration-side {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 300px;
    background-image: url('./assets/images/תמונת מסע וולנס.png');
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.right-side {
    right: -50px;
    background-position: center right;
    mask-image: linear-gradient(to left, black 20%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 20%, transparent 100%);
}

.left-side {
    left: -50px;
    background-position: center left;
    transform: scaleX(-1);
    /* Mirror for symmetry */
    mask-image: linear-gradient(to left, black 20%, transparent 100%);
    /* Mask direction stays due to mirror */
    -webkit-mask-image: linear-gradient(to left, black 20%, transparent 100%);
}

.about-floating-element {
    position: absolute;
    font-size: 3rem;
    opacity: 0.15;
    pointer-events: none;
    animation: float-element 6s ease-in-out infinite;
}

.about-float-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.about-float-2 {
    bottom: 20%;
    right: 8%;
    animation-delay: 2s;
}

@keyframes float-element {

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

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

.about-intro {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.about-image-wrapper {
    flex: 0 0 280px;
}

.profile-image-frame {
    position: relative;
}

.profile-image-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-color);
    border-radius: 60% 40% 50% 50% / 50% 50% 50% 50%;
    z-index: -1;
}

.profile-image-placeholder {
    width: 280px;
    height: 350px;
    background: linear-gradient(135deg, var(--bg-primary), var(--accent-light));
    border-radius: 60% 40% 50% 50% / 50% 50% 50% 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--accent-dark);
    border: 3px dashed var(--accent-color);
    transition: var(--transition);
}

.profile-image-placeholder:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-glow);
}

.profile-image-placeholder i {
    font-size: 4rem;
    opacity: 0.6;
}

.profile-image-placeholder span {
    font-size: 1rem;
    font-weight: 500;
}

/* Actual Branding Image - Organic Shape */
.profile-branding-img {
    width: 280px;
    height: 350px;
    object-fit: cover;
    border-radius: 60% 40% 50% 50% / 50% 50% 50% 50%;
    border: 3px solid var(--accent-color);
    transition: var(--transition);
    box-shadow: var(--shadow-soft);
}

.profile-branding-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-glow);
}

.about-intro-text {
    flex: 1;
    min-width: 300px;
}

.quote-box {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, var(--bg-primary), transparent);
    border-radius: var(--radius-lg);
}

.quote-mark {
    position: absolute;
    top: 0;
    right: 1rem;
    font-size: 5rem;
    color: var(--accent-color);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.4;
}

.intro-quote {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Journey Cards */
.about-journey {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.journey-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.journey-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color), var(--accent-dark));
    opacity: 0;
    transition: var(--transition);
}

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

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

.journey-card.highlight-card {
    background: linear-gradient(135deg, var(--bg-primary), var(--accent-light));
    border: none;
}

.journey-card.highlight-card::before {
    opacity: 1;
    background: linear-gradient(180deg, var(--accent-dark), var(--gold-accent));
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: var(--accent-dark);
}

.highlight-card .card-icon {
    background: var(--bg-white);
}

.journey-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.journey-card p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.specialization-title {
    font-size: 1.1rem;
    color: var(--accent-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.experience-list {
    margin-top: 1rem;
}

.experience-list li {
    position: relative;
    padding-right: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.experience-list li::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0.6rem;
    width: 6px;
    height: 6px;
    background: var(--accent-dark);
    border-radius: 50%;
}

.experience-list li strong {
    color: var(--text-primary);
}

/* ============================================
   Belief Section - Enhanced with Floating Elements
   ============================================ */
.belief-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

.belief-floating {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.15;
    pointer-events: none;
}

.belief-float-1 {
    top: 15%;
    right: 10%;
    animation: belief-float 5s ease-in-out infinite;
}

.belief-float-2 {
    top: 40%;
    left: 8%;
    animation: belief-float 7s ease-in-out infinite reverse;
}

.belief-float-3 {
    bottom: 20%;
    right: 15%;
    animation: belief-float 6s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes belief-float {

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

    50% {
        transform: translateY(-15px) scale(1.1);
    }
}

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

.belief-card {
    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(212, 165, 165, 0.15);
    position: relative;
    transition: var(--transition);
}

.belief-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(212, 165, 165, 0.25);
}

.belief-icon {
    position: absolute;
    top: -20px;
    right: 50%;
    transform: translateX(50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.belief-icon i {
    color: var(--text-white);
    font-size: 1.2rem;
}

.belief-text {
    font-size: 1.25rem;
    line-height: 2;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.belief-highlight {
    /* Pull Quote Style */
    background: linear-gradient(135deg, rgba(156, 175, 136, 0.12), rgba(196, 163, 90, 0.08));
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    padding-right: 2.5rem;
    border-right: 6px solid var(--accent-dark);
    position: relative;
    transition: var(--transition);
}

.belief-highlight:hover {
    border-right-width: 8px;
    transform: translateX(-5px);
}

.belief-highlight .belief-text {
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 2;
}

.belief-highlight p {
    font-size: 1.15rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 0;
}

/* ============================================
   Videos Section - Carousel with Center Focus
   ============================================ */
.videos-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.videos-intro {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

/* Carousel Wrapper */
.video-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0 10px;
}

/* Track: shows 3 videos side by side */
.video-carousel-track {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

/* Each card */
.video-card {
    flex: 0 0 30%;
    aspect-ratio: 9/16;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.5s ease,
        box-shadow 0.5s ease;
    cursor: pointer;
    position: relative;
    opacity: 0.55;
    transform: scale(0.88);
    display: none;
    /* hidden by default, JS shows 3 */
}

.video-card.visible {
    display: block;
}

.video-card.active-center {
    opacity: 1;
    transform: scale(1.12);
    box-shadow: 0 12px 50px rgba(78, 66, 60, 0.25);
    z-index: 3;
}

.video-card.side-card {
    opacity: 0.6;
    transform: scale(0.88);
    z-index: 1;
    pointer-events: none;
    /* Side cards are not interactive */
}

.video-card.side-card .video-play-btn {
    display: none;
}

/* Custom Play Button Overlay */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.video-play-btn i {
    color: #fff;
    font-size: 1.6rem;
    margin-right: -3px;
    /* optical center for play icon */
}

.video-play-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translate(-50%, -50%) scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hide play button when video is playing */
.video-card.is-playing .video-play-btn {
    opacity: 0;
    pointer-events: none;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* Navigation Arrows */
.carousel-arrow {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--accent-dark);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 5;
    box-shadow: 0 2px 12px rgba(78, 66, 60, 0.1);
}

.carousel-arrow:hover {
    background: var(--accent-color);
    color: var(--text-white);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(156, 175, 136, 0.4);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

/* Dot Indicators */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 2rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    transform: scale(1.25);
}

.carousel-dot:hover {
    background: var(--accent-color);
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.instagram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--text-white);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    width: fit-content;
    margin: 0 auto;
    transition: var(--transition);
}

.instagram-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(225, 48, 108, 0.4);
}

.instagram-link i {
    font-size: 1.3rem;
}

/* Mobile: Video Carousel */
@media (max-width: 768px) {
    .video-carousel-track {
        gap: 0.75rem;
    }

    .video-card {
        flex: 0 0 70%;
    }

    .video-card.active-center {
        transform: scale(1.05);
    }

    .video-card.side-card {
        flex: 0 0 15%;
        transform: scale(0.85);
        opacity: 0.4;
    }

    .carousel-arrow {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }
}

/* Timeline Journey */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--accent-light);
    transform: translateX(-50%);
    border-radius: 4px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px;
    margin-bottom: 4rem;
    box-sizing: border-box;
}

/* Right Side Items (Even) - In RTL context, this is actually Left visually? 
   Let's use nth-child logic relative to direction rtl */

.timeline-item:nth-child(odd) {
    left: 0;
    text-align: left;
    /* RTL: item on right side of container */
    margin-right: 0;
    margin-left: auto;
    padding-left: 0;
    padding-right: 40px;
}

.timeline-item:nth-child(even) {
    left: 0;
    /* RTL: item on left side of container */
    margin-right: auto;
    margin-left: 0;
    padding-right: 0;
    padding-left: 40px;
    text-align: right;
}

.timeline-dot {
    position: absolute;
    top: 20px;
    width: 24px;
    height: 24px;
    background: var(--bg-white);
    border: 4px solid var(--accent-color);
    border-radius: 50%;
    z-index: 2;
    transition: var(--transition);
    box-shadow: 0 0 0 4px rgba(250, 236, 236, 0.5);
}

/* Dot positioning for RTL */
.timeline-item:nth-child(odd) .timeline-dot {
    right: -14px;
    /* Center on line */
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -14px;
    /* Center on line */
}

.timeline-item:hover .timeline-dot {
    background: var(--accent-color);
    transform: scale(1.2);
    box-shadow: 0 0 0 8px rgba(212, 165, 165, 0.3);
}

.timeline-content {
    background: var(--bg-white);
    padding: 2rem;
    /* Sharp corners - different from other sections */
    border-radius: 4px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
    /* Thick right border instead of top */
    border-right: 5px solid var(--accent-color);
    border-top: none;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-right-color: var(--accent-dark);
}

/* Connector Arrow */
.timeline-content::before {
    content: '';
    position: absolute;
    top: 24px;
    width: 0;
    height: 0;
    border-style: solid;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -12px;
    border-width: 12px 0 12px 12px;
    border-color: transparent transparent transparent var(--bg-white);
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -12px;
    border-width: 12px 12px 12px 0;
    border-color: transparent var(--bg-white) transparent transparent;
}

.timeline-icon {
    display: inline-flex;
    width: 50px;
    height: 50px;
    background: var(--bg-primary);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--accent-dark);
    font-size: 1.2rem;
}

/* Special Highligh Item */
.highlight-item .timeline-content {
    background: linear-gradient(135deg, var(--bg-white), var(--bg-primary));
    border-top-color: var(--accent-dark);
}

.special-dot {
    border-color: var(--accent-dark);
}

.special-icon {
    background: var(--bg-white);
    color: var(--accent-dark);
    box-shadow: var(--shadow-sm);
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline-line {
        right: 30px;
        left: auto;
        transform: none;
    }

    .timeline-item {
        width: 100%;
        padding-right: 70px;
        padding-left: 0;
        margin-right: 0 !important;
        margin-left: 0 !important;
        text-align: right !important;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        padding-right: 70px;
        padding-left: 0;
    }

    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        right: 18px;
        left: auto;
    }

    .timeline-item:nth-child(odd) .timeline-content::before,
    .timeline-item:nth-child(even) .timeline-content::before {
        right: -12px;
        left: auto;
        border-width: 12px 0 12px 12px;
        border-color: transparent transparent transparent var(--bg-white);
    }
}

/* ============================================
   Method Section (80/20) - Enhanced
   ============================================ */
.method-section {
    padding: var(--section-padding);
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.method-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.method-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    mask-image: linear-gradient(to right, black 20%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 20%, transparent 100%);
}

/* Mobile: Method background - full-width centered */
@media (max-width: 768px) {
    .method-bg-image {
        width: 100%;
        left: 0;
        opacity: 0.1;
    }

    .method-bg-image img {
        mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
        -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
        object-position: center;
    }
}

.relative-z {
    position: relative;
    z-index: 2;
}

.method-intro-box {
    background: linear-gradient(135deg, var(--bg-primary), var(--accent-light));
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-md);
}

.method-highlight {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.method-highlight.accent {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-dark);
    margin-bottom: 0;
}

.method-explanation {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.method-question {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.method-explanation p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1rem;
}

.method-visual {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
    justify-content: center;
}

.method-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    width: 100%;
}

.method-card {
    flex: 1;
    min-width: 280px;
    padding: 3.5rem 2rem;
    /* Organic blob shape - unique to this section */
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    text-align: center;
    transition: var(--transition);
    position: relative;
    /* Removed overflow: hidden to prevent text clipping */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.method-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    pointer-events: none;
}

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

.card-80 {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    box-shadow: 0 15px 40px rgba(124, 184, 124, 0.25);
}

.card-20 {
    background: linear-gradient(135deg, #fff3e0, #ffe0b2);
    box-shadow: 0 15px 40px rgba(224, 160, 96, 0.25);
}

.method-percentage {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    line-height: 1;
}

.method-label {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.method-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.method-card p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Donut Chart - Enhanced */
.donut-chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.donut-chart {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: conic-gradient(var(--accent-green) 0deg 288deg,
            var(--accent-orange) 288deg 360deg);
    position: relative;
    box-shadow: var(--shadow-lg);
    animation: chart-appear 1s ease-out forwards;
}

@keyframes chart-appear {
    from {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }

    to {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

.donut-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.donut-label {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.1rem;
}

.donut-sublabel {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.donut-legend {
    display: flex;
    gap: 2rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

.color-80 {
    background: var(--accent-green);
}

.color-20 {
    background: var(--accent-orange);
}

/* ============================================
   Services Section - Dark Warm Theme
   ============================================ */
.services-section {
    padding: 0;
    background: #4a3f3f;
    /* Warm dark pink-gray */
}

.services-hero {
    background: linear-gradient(135deg, #4a3f3f 0%, #3d3333 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 0 L100 50 L50 100 L0 50 Z' fill='rgba(255,255,255,0.02)'/%3E%3C/svg%3E");
    background-size: 50px 50px;
    opacity: 0.5;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

.services-content {
    padding: 60px 0 100px;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    /* Deeper shadows - unique to this section */
    box-shadow: 0 10px 40px rgba(74, 63, 63, 0.15);
    transition: var(--transition);
    margin-bottom: 2rem;
    /* Left gradient border */
    border-left: 5px solid;
    border-image: linear-gradient(to bottom, var(--accent-color), var(--accent-dark)) 1;
}

.service-card:hover {
    box-shadow: 0 15px 50px rgba(74, 63, 63, 0.25);
    transform: translateX(-5px);
}

.service-card.main-service {
    background: linear-gradient(135deg, var(--bg-white), var(--bg-secondary));
    border: 2px solid var(--accent-light);
    border-left: 6px solid var(--accent-dark);
    position: relative;
    margin-top: -40px;
    z-index: 5;
}

.service-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

/* Icon Glow Effect on Hover */
.service-card:hover .service-icon {
    box-shadow: 0 0 20px rgba(212, 165, 165, 0.4);
    transform: scale(1.05);
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--accent-dark);
    transition: var(--transition);
}

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

.service-icon.whatsapp-icon {
    background: rgba(37, 211, 102, 0.1);
}

.service-icon.whatsapp-icon i {
    color: var(--success-color);
}

.service-title-wrapper h3 {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
}

.service-subtitle {
    display: block;
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.service-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--accent-dark);
    font-weight: 600;
    background: var(--bg-primary);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
}

.service-duration i {
    font-size: 0.85rem;
}

.service-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.service-details li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.service-details li:hover {
    background: var(--accent-light);
}

.service-details li i {
    color: var(--success-color);
    font-size: 1rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.service-details li div {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.service-details li strong {
    color: var(--text-primary);
}

/* ============================================
   Services Section - New Folder Style Layout
   ============================================ */
.service-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

/* Connecting Line Background */
.service-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    z-index: 1;
    border-radius: 4px;
}

.service-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    color: var(--accent-dark);
    border: 4px solid var(--accent-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: -25px;
    z-index: 5;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.step-card {
    /* Folder Shape - Top Radius Only */
    border-radius: 16px 16px 4px 4px;
    padding: 3rem 1.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    width: 100%;
    position: relative;
    overflow: hidden;
    height: 100%;
    /* Strong Top Border is handled by specific card colors */
    border-top: 8px solid;
}

/* Specific Card Colors - Folder Style */
.service-step:nth-child(1) .step-card {
    background: #fff5f5;
    /* Very pale pink */
    border-top-color: #d4a5a5;
}

.service-step:nth-child(2) .step-card {
    background: #fdf6ec;
    /* Very pale orange/sand */
    border-top-color: #e6b89c;
}

.service-step:nth-child(3) .step-card {
    background: #f0fdf4;
    /* Very pale green */
    border-top-color: #8cba92;
}

.service-step:nth-child(4) .step-card {
    background: #fffbef;
    /* Very pale gold/yellow */
    border-top-color: #eec04b;
}

/* Hover Effects - Glow */
.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.15);
    /* Soft white glow against dark background */
}

.step-number.whatsapp-number {
    background: #25D366;
    color: #fff;
    border-color: #fff;
}

.step-number.goal-number {
    background: #FFD700;
    color: #fff;
    border-color: #fff;
}

.step-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

/* Hide Icons inside cards since we have numbers outside */
.step-icon {
    display: none;
}

.step-badge {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    /* Squared badge to match folder */
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.step-badge.whatsapp-badge {
    background: rgba(37, 211, 102, 0.15);
    color: #128C7E;
}

.step-badge.goal-badge {
    background: rgba(255, 215, 0, 0.15);
    color: #b59804;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 800;
}

.step-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.step-features {
    text-align: right;
    list-style: none;
    padding: 0;
    margin-top: auto;
}

.step-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

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

.step-features li i {
    color: var(--accent-dark);
    /* Unified checkmark color */
    font-size: 0.9rem;
}

.step-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}


/* Services Footer Layout - Refined */
.services-outro-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 5rem auto 2rem;
    padding: 0 2rem;
}

.services-outro-text {
    flex: 1;
    text-align: right;
    color: #fff;
    min-width: 300px;
}

.outro-line-1 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: var(--gold-accent);
    /* Make both lines gold */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.outro-line-2 {
    font-size: 1.6rem;
    font-weight: 700;
    padding-right: 3rem;
    /* Stagger effect */
    color: var(--gold-accent);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 0;
}

/* Success Image with Unique Crop */
.services-outro-image {
    flex: 0 0 280px;
    /* Reduced size */
    position: relative;
    /* Glow effect container */
    padding: 0;
}

.services-outro-image img {
    display: block;
    width: 100%;
    /* Unique Organic Shape */
    border-radius: 64% 36% 27% 73% / 55% 58% 42% 45%;
    box-shadow: 0 0 50px rgba(196, 163, 90, 0.3);
    transition: var(--transition);
    animation: successFloat 4s ease-in-out infinite;
}

.services-outro-image:hover img {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 0 70px rgba(196, 163, 90, 0.6);
}

@keyframes successFloat {

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

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


/* Mobile: Services Steps */
@media (max-width: 768px) {
    .service-steps {
        grid-template-columns: 1fr;
        gap: 3rem;
        /* More space for numbers */
        margin-top: -30px;
    }

    .service-steps::before {
        display: none;
        /* Hide connecting line on mobile */
    }

    .step-card {
        padding: 2.5rem 1.5rem 1.5rem;
    }

    /* Outro Mobile */
    .services-outro-container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        margin-top: 3rem;
    }

    .services-outro-text {
        text-align: center;
        padding: 0;
    }

    .outro-line-2 {
        padding-right: 0;
        /* Remove stagger on mobile for centering */
        font-size: 1.3rem;
    }

    .outro-line-1 {
        font-size: 1.2rem;
    }

    .services-outro-image {
        flex: 0 0 auto;
        width: 220px;
    }
}

/* ============================================
   Programs Section - Path Journey Design
   ============================================ */
.programs-section {
    padding: var(--section-padding);
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.programs-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   Programs Section - Magazine Grid Layout
   ============================================ */
.programs-section {
    padding: var(--section-padding);
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.programs-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
    font-size: 1.25rem;
    /* Slightly larger */
    color: var(--text-primary);
    /* Darker for better contrast */
    line-height: 1.8;
}

/* Journey Path Container - Now a Grid */
.journey-path {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 auto;
    padding: 0;
    gap: 0;
    /* No gap, borders handle separation */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Individual Step - Magazine Column */
.path-step {
    display: flex;
    flex-direction: column;
    padding: 3rem 1.5rem;
    position: relative;
    /* Vertical Divider */
    border-right: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    background: transparent;
}

.path-step:last-child {
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    /* Close the grid */
}

.path-step:hover {
    background: rgba(0, 0, 0, 0.02);
    /* Very subtle highlight */
}

/* Large Number Typography */
.node-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    /* Huge, transparent number background */
    position: absolute;
    top: 1rem;
    right: 1rem;
    line-height: 1;
    z-index: 0;
    font-family: var(--font-primary);
}

.path-node,
.path-line {
    display: none;
    /* Hide the old circle nodes and connecting lines */
}

/* Icons */
.path-icon {
    width: 60px;
    height: 60px;
    background: transparent;
    /* No background box */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Left aligned (RTL context -> Right) */
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.path-icon i {
    font-size: 2.5rem;
    /* Larger Icon */
    color: var(--accent-dark);
    transition: var(--transition);
}

.path-step:hover .path-icon i {
    transform: scale(1.1);
    color: var(--accent-color);
}

/* Content */
.path-content {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0;
    width: 100%;
    position: relative;
    z-index: 1;
    text-align: right;
}

.path-content h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* Step Duration - Minimalist Tag */
.step-duration {
    display: inline-block;
    background: transparent;
    color: var(--accent-dark);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0;
    margin-top: auto;
    border-bottom: 2px solid var(--accent-light);
}

/* Specific Adjustments */
.whatsapp-step .path-icon i {
    color: var(--success-color);
}

.final-step .path-icon i {
    color: #ffd700;
    /* Gold */
}

/* Mobile: Programs Grid */
@media (max-width: 900px) {
    .journey-path {
        grid-template-columns: 1fr;
        border: none;
    }

    .path-step {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding: 2.5rem 1rem;
        text-align: center;
        align-items: center;
        /* Center align on mobile */
    }

    .path-content {
        text-align: center;
        /* Center align on mobile */
    }

    .path-icon {
        justify-content: center;
    }

    .node-number {
        right: 50%;
        transform: translateX(50%);
        top: 2rem;
    }
}



/* Success Image at the bottom */
.programs-success-image {
    max-width: 400px;
    margin: 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.programs-success-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.programs-highlight h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.programs-highlight p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

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

.program-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

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

.program-card.featured {
    border: 2px solid var(--accent-dark);
    background: linear-gradient(to bottom, var(--bg-white), var(--bg-primary));
}

.program-badge {
    position: absolute;
    top: -12px;
    right: 50%;
    transform: translateX(50%);
    background: var(--accent-dark);
    color: var(--text-white);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.program-icon {
    width: 70px;
    height: 70px;
    background: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.program-icon i {
    font-size: 1.8rem;
    color: var(--accent-dark);
}

.program-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.program-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}


/* ============================================
   Prep Section - Floating Icons (No Cards)
   ============================================ */
.prep-cards {
    display: flex;
    /* Changed from grid to flex row */
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.prep-card {
    background: transparent;
    /* No background */
    box-shadow: none;
    /* No shadow */
    padding: 0;
    text-align: center;
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    transition: var(--transition);
}

.prep-card:hover {
    transform: translateY(-5px);
    /* Gentle float */
}

/* Icon is the main element now */
.prep-icon {
    width: 80px;
    height: 80px;
    background: transparent;
    /* Remove circle background */
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.prep-icon i {
    font-size: 3rem;
    /* Larger icon */
    color: var(--accent-color);
    filter: drop-shadow(0 4px 6px rgba(212, 165, 165, 0.4));
    /* Soft colored shadow */
}

.prep-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.prep-card p {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Mobile: Prep Section */
@media (max-width: 768px) {
    .prep-cards {
        flex-direction: column;
        align-items: center;
        /* Center cards horizontally */
        gap: 3rem;
    }

    .prep-card {
        min-width: unset;
        /* Reset desktop 200px min-width */
        max-width: 250px;
        width: 100%;
    }

    .prep-icon {
        width: 60px;
        height: 60px;
    }

    .prep-icon i {
        font-size: 2.5rem;
    }
}

/* ============================================
   True Change (Testimonials) Section
   ============================================ */
.true-change-section {
    padding: var(--section-padding);
    padding-top: 5rem;
    /* Standard spacing for header alignment */
    padding-bottom: 0;
    /* Minimal bottom padding */
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0 4rem;
    /* Removed vertical gap completely */
    padding: 3rem 0 0 0;
    margin-top: 12rem;
    /* Increased to ensure top card clears title */
    margin-bottom: 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonial Card Styling */
.testimonial-wrapper {
    position: relative;
    transition: transform 0.1s linear, opacity 0.6s ease;
    /* Base fade-in state managed by JS observer */
}

/* Asymmetric Layout - Percentage Based */
@media (min-width: 900px) {

    /* Right Card (RTL-First) */
    .testimonial-wrapper:nth-child(1) {
        margin-top: 0;
        margin-right: 5%;
    }

    /* Center Card */
    .testimonial-wrapper:nth-child(2) {
        margin-top: 10%;
        margin-left: 5%;
    }

    /* Left Card - Pushed down to clear title completely */
    .testimonial-wrapper:nth-child(3) {
        margin-top: 65%;
        margin-right: 15%;
        z-index: 10;
    }

    /* Second Row - "Food Stopped Managing Me" (Right) */
    .testimonial-wrapper:nth-child(4) {
        margin-top: -10%;
        /* Negative margin to pull up */
        margin-right: 5%;
        /* More edge space */
        z-index: 10;
        grid-column: 1 / -1;
        /* Span full container width */
        max-width: 40%;
        /* Reduced width significantly */
        justify-self: start;
        /* Align Right (RTL) */
        margin-left: auto;
    }

    /* Second Row - "Health Returned" (Left) - Pulled UP strongly */
    .testimonial-wrapper:nth-child(5) {
        margin-top: -18%;
        /* Adjusted to prevent overlap with card above */
        margin-left: 5%;
        /* More edge space */
        grid-column: 1 / -1;
        /* Span full container width */
        max-width: 40%;
        /* Reduced width significantly */
        justify-self: end;
        /* Align Left (RTL) */
        margin-right: auto;
    }
}

.testimonial-card {
    padding: 3rem 2.5rem;

    position: relative;
    z-index: 2;
    text-align: right;
    transition: transform 0.3s ease;
    border-radius: var(--radius-lg);
    /* Soft Background Pigments */
}

.testimonial-card:hover {
    transform: scale(1.03);
    /* Slight grow on hover */
}

/* Soft Background Pigments */
.card-pigment-1 {
    background-color: rgba(245, 235, 224, 0.4);
}

/* Nude */
.card-pigment-2 {
    background-color: rgba(220, 229, 212, 0.4);
}

/* Sage Light */
.card-pigment-3 {
    background-color: rgba(245, 236, 215, 0.3);
}

/* Soft Gold */
.card-pigment-4 {
    background-color: rgba(248, 221, 224, 0.25);
}

/* Rose Soft */
.card-pigment-5 {
    background-color: rgba(250, 248, 245, 0.8);
}

/* Off-white */

/* Background Options for Section */
.bg-option-1 {
    background: linear-gradient(135deg, #fffcf8 0%, #f7f3ee 100%);
}

.bg-option-2 {
    background-color: #fcfcfc;
    background-image: radial-gradient(#d4c5b0 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    opacity: 0.8;
}

/* Double Quote Marks (Background) */
.testimonial-card::before,
.testimonial-card::after {
    font-family: var(--font-primary);
    color: var(--accent-color);
    line-height: 1;
    position: absolute;
    z-index: -1;
    pointer-events: none;
    opacity: 0.1;
    /* Slightly more visible */
}

/* Top-Right Quote */
.testimonial-card::before {
    content: '"';
    top: -15px;
    right: 10px;
    font-size: 8rem;
}

/* Bottom-Left Quote */
.testimonial-card::after {
    content: '"';
    bottom: -40px;
    left: 10px;
    font-size: 8rem;
    transform: rotate(180deg);
    /* Inverted for closing/bottom feel */
}

.testimonial-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--accent-dark);
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin: 0 0 1.5rem;
    font-weight: 400;
}

.testimonial-card cite {
    display: block;
    font-style: normal;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.privacy-note {
    text-align: center;
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: -12rem;
    /* Extreme negative margin to close final gap completely */
    padding-top: 1rem;
    padding-bottom: 2rem;
    /* Add some space below the note itself */
    opacity: 0.8;
    font-weight: 400;
    position: relative;
    z-index: 5;
}

/* Mobile: Testimonials - Stacked & Centered */
@media (max-width: 768px) {
    .true-change-section {
        padding-top: 3rem;
        padding-bottom: 2rem;
    }

    .testimonials-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        /* Reduced from 4rem for tighter layout */
        align-items: center;
        margin-top: 2rem !important;
        /* Reset desktop 12rem */
        margin-bottom: 1rem;
    }

    .testimonial-wrapper {
        width: 100%;
        max-width: 400px;
        margin-top: 0 !important;
        /* Reset all scatter margins */
        margin-left: 0 !important;
        margin-right: 0 !important;
        grid-column: auto !important;
        /* Reset grid-column spans */
        max-width: 90% !important;
        /* Override desktop 40% */
        justify-self: center !important;
    }

    .testimonial-card {
        text-align: center;
        padding: 1.5rem;
    }

    .testimonial-card::before {
        right: 50%;
        transform: translateX(50%);
        top: -40px;
    }

    .privacy-note {
        margin-top: 1rem !important;
        /* Reset desktop -12rem */
        padding-bottom: 1rem;
    }
}

.cta-coffe-container {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-md);
    margin-top: 5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Ensure image is set here or inline */
    background-image: url('./assets/images/כוס קפה - יד אישה.png');
    background-size: cover;
    background-position: center;
    display: flex;
    /* Setup for alignment */
    align-items: center;
    /* Vertically center */
    padding: 0;
    /* Let inner spacing handle it */
    min-height: 500px;
}

/* Gradient Overlay - Dark on Right (Text) to transparent (Coffee Art) */
.cta-coffe-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 65%;
    /* Nearly 2/3 coverage for text area */
    background: linear-gradient(to left, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.cta-card {
    /* No Glass Card - Text directly on image */
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    box-shadow: none;

    padding: 3rem;
    max-width: 550px;
    margin-right: 0;
    /* Align to right edge */
    margin-left: auto;
    position: relative;
    z-index: 2;
    text-align: right;
    color: var(--text-white);
}

.cta-content {
    padding: 0;
    text-align: right;
}

.cta-card h3 {
    font-size: 3rem;
    /* Larger for impact */
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    /* Stronger shadow */
    font-weight: 900;
}

.cta-text {
    font-size: 1.3rem;
    color: #f0f0f0;
    margin-bottom: 2.5rem;
    font-weight: 600;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

/* Info items - transparent highlight */
.info-mini-item {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    /* Very subtle dark bg for readability */
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    color: #fff;
    font-size: 1rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hide original image inside card as we use bg */
.cta-image {
    display: none;
}

/* Button override */
.btn-cta {
    background: var(--success-color);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    font-size: 1.3rem;
    padding: 1.2rem 3.5rem;
    font-weight: 800;
}

.btn-cta:hover {
    background: #1ebc57;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Mobile: Stack layout */
@media (max-width: 768px) {
    .cta-coffe-container::before {
        width: 100%;
        background: rgba(0, 0, 0, 0.75);
        /* Full darken on mobile */
    }

    .cta-card {
        margin: 2rem auto;
        text-align: center;
        width: 100%;
        padding: 2rem;
    }

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

    .info-mini-item {
        justify-content: center;
    }
}

/* Notification Strip */
.insurance-note {
    margin-top: 3rem;
    background: var(--bg-primary);
    /* Light background strip */
    border-left: 4px solid var(--accent-dark);
    /* Accent strip */
    border-radius: 4px;
    /* Minimal radius */
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: var(--shadow-sm);
}

.insurance-note i {
    font-size: 1.2rem;
    color: var(--accent-dark);
}

.insurance-note p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 3rem 0;
    text-align: center;
}

.footer p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.credit {
    font-size: 0.85rem !important;
    opacity: 0.5;
}

/* ============================================
   Accessibility Styles
   ============================================ */
/* Skip-to-content link */
.skip-link {
    position: absolute;
    top: -100%;
    right: 0;
    background: var(--accent-dark);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    z-index: 10000;
    font-weight: 600;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    text-decoration: none;
    transition: top 0.3s ease;
}

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

/* Enhanced focus outlines for keyboard navigation */
*:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
    border-radius: 3px;
}

/* Accessibility declaration in footer */
.accessibility-statement {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.85rem;
}

.accessibility-statement p {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
}

.accessibility-statement a {
    color: var(--accent-light);
    text-decoration: underline;
}

.accessibility-statement a:hover {
    color: var(--accent-color);
}

.accessibility-updated {
    opacity: 0.5;
    font-size: 0.75rem !important;
    margin-top: 0.5rem;
}

/* ============================================
   Floating WhatsApp Button
   ============================================ */
.whatsapp-wrapper {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}

.whatsapp-float {
    width: 60px;
    height: 60px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: floatBounce 3s ease-in-out infinite;
}

@keyframes floatBounce {

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

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

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    animation: floatBounce 3s ease-in-out infinite;
}

/* Mobile Glow Effect for WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        box-shadow: 0 0 20px rgba(37, 211, 102, 0.6), 0 0 40px rgba(37, 211, 102, 0.4);
        animation: mobileGlow 2s ease-in-out infinite;
    }
}

@keyframes mobileGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(37, 211, 102, 0.6), 0 0 40px rgba(37, 211, 102, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 30px rgba(37, 211, 102, 0.8), 0 0 60px rgba(37, 211, 102, 0.6);
        transform: scale(1.05);
    }
}

@keyframes floatBounce {

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

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

.whatsapp-float i {
    font-size: 2rem;
    color: var(--text-white);
}

/* WhatsApp Popup Tooltip */
.whatsapp-popup {
    position: absolute;
    bottom: 70px;
    left: 0;
    background: #fff;
    color: var(--text-dark);
    padding: 0.65rem 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    animation: popupSlide 0.5s ease forwards;
    animation-delay: 2s;
    opacity: 0;
    pointer-events: none;
}

.whatsapp-popup::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 25px;
    width: 12px;
    height: 12px;
    background: #fff;
    transform: rotate(45deg);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

@keyframes popupSlide {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }

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

/* ============================================
   Responsive Design - FULL RTL
   ============================================ */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
        order: 1;
        text-align: center;
        /* Force center alignment */
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Center flex items (buttons) */
    }

    .hero-buttons {
        justify-content: center;
        /* Center buttons row */
    }

    .hero-image {
        order: 2;
        display: flex;
        justify-content: center;
        /* Center the parallax blob */
    }

    .hero-parallax {
        min-width: unset;
        /* Reset desktop min-width: 380px that overflows on 375px screens */
        max-width: 85%;
        margin: 0 auto;
    }

    .about-intro {
        flex-direction: column;
        text-align: center;
    }

    .quote-box {
        text-align: center;
    }

    .quote-mark {
        right: 50%;
        transform: translateX(50%);
    }

    .method-visual {
        flex-direction: column;
    }

    .services-grid-secondary {
        grid-template-columns: 1fr;
    }

    /* New Layouts Responsive */
    /* Journey Path Mobile */
    .journey-path {
        padding-right: 4rem;
    }

    .path-line {
        right: 18px;
    }

    .path-node {
        width: 40px;
        height: 40px;
    }

    .node-number {
        font-size: 1rem;
    }

    .path-content {
        padding: 1.5rem;
    }

    /* CTA Card Responsive */
    .cta-card {
        flex-direction: column-reverse;
    }

    .cta-image {
        min-height: 250px;
        flex: none;
    }

    .cta-content {
        padding: 2rem;
        text-align: center;
        align-items: center;
    }

    /* About Decorations Hide on Tablet */
    .about-decoration-side {
        width: 150px;
        opacity: 0.1;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu {
        display: flex;
    }

    /* Mobile navbar - slim with logo */
    .navbar {
        padding: 0.15rem 0;
    }

    .logo-img {
        height: 60px;
    }

    .hero-section {
        padding: 100px 0 40px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

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

    .hero-tagline {
        font-size: 0.95rem;
    }

    .hero-parallax {
        max-width: 85%;
        min-width: unset;
        /* Reset desktop 380px min-width */
        margin: 0 auto;
    }

    .hero-parallax::before {
        top: -5px;
        right: -5px;
    }

    .hero-badge {
        font-size: 0.8rem;
    }

    .about-journey {
        grid-template-columns: 1fr;
    }

    .method-cards {
        flex-direction: column;
    }

    .service-details {
        grid-template-columns: 1fr;
    }

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

    .info-items {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }

    .info-item {
        flex-direction: column;
        align-items: center;
    }

    .profile-image-placeholder {
        width: 220px;
        height: 280px;
    }

    .about-image-wrapper {
        flex: 0 0 220px;
    }

    /* WhatsApp Mobile */
    .whatsapp-wrapper {
        bottom: 15px;
        left: 15px;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
    }

    .whatsapp-float i {
        font-size: 1.5rem;
    }

    .whatsapp-popup {
        font-size: 0.75rem;
        bottom: 60px;
    }

    /* Video carousel mobile */
    .video-carousel-track {
        gap: 0.5rem;
    }

    .video-card {
        flex: 0 0 65%;
    }

    .video-card.active-center {
        transform: scale(1.02);
    }

    .video-card.side-card {
        flex: 0 0 17%;
        transform: scale(0.85);
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .carousel-dots {
        gap: 0.5rem;
    }

    /* Instagram link */
    .instagram-link {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }

    /* Belief section */
    .belief-cards {
        gap: 1rem;
    }

    /* Method section */
    .method-card {
        padding: 1.5rem;
    }

    .donut-chart {
        width: 150px;
        height: 150px;
    }

    .donut-center {
        width: 95px;
        height: 95px;
    }

    /* Programs */
    .programs-magazine {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Contact */
    .contact-content {
        padding: 2rem 1rem;
    }

    /* Footer */
    .footer {
        padding: 2rem 0;
    }

    .accessibility-statement {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    /* Widget mobile right */
    .a11y-widget {
        right: 15px;
        bottom: 15px;
    }

    .a11y-toggle {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
    }

    .a11y-panel {
        width: 270px;
        right: -5px;
    }
}

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

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

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

    .btn-primary,
    .btn-cta {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-header {
        flex-direction: column;
        text-align: center;
    }

    .service-icon {
        margin: 0 auto;
    }

    .about-floating-element,
    .belief-floating {
        display: none;
    }

    /* Hide side decorations on mobile */
    .about-decoration-side {
        display: none;
    }



    /* Method cards - keep organic blob shape on mobile */
    .method-card {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        /* Same blob as desktop */
        padding: 3rem 2rem;
        /* Enough padding to avoid text clipping in blob */
        min-width: unset;
        /* Allow cards to shrink on small screens */
    }
}

/* ============================================
   Micro-Interactions
   ============================================ */

/* Button Click Effect */
.btn-primary:active,
.btn-cta:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* Card Click Scale */
.service-card:active,
.path-step:active .path-content,
.prep-card:active {
    transform: scale(0.98);
}

/* Service Duration Pulse on Load */
.service-duration {
    animation: fadePulse 2s ease infinite;
}

@keyframes fadePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* ============================================
   Custom Accessibility Widget - By INAOLAH
   ============================================ */
.a11y-widget {
    position: fixed;
    right: 20px;
    bottom: 25px;
    z-index: 9999;
    direction: rtl;
}

.a11y-toggle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-color) 100%);
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(78, 66, 60, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.a11y-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(78, 66, 60, 0.35);
}

/* Panel */
.a11y-panel {
    position: absolute;
    bottom: 65px;
    right: 0;
    width: 310px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(156, 175, 136, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.a11y-panel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.a11y-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent-color) 100%);
    color: #fff;
}

.a11y-panel-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.a11y-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.a11y-close:hover {
    opacity: 1;
}

.a11y-panel-body {
    padding: 0.75rem 1.25rem;
}

.a11y-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.a11y-option:last-child {
    border-bottom: none;
}

.a11y-option-label {
    font-size: 0.88rem;
    color: var(--text-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.a11y-option-label i {
    font-size: 0.9rem;
    color: var(--accent-dark);
    width: 18px;
    text-align: center;
}

/* Font Size Controls */
.a11y-font-controls {
    display: flex;
    gap: 4px;
}

.a11y-font-controls .a11y-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1.5px solid var(--accent-color);
    background: #fff;
    color: var(--accent-dark);
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    padding: 0;
}

.a11y-font-controls .a11y-btn:hover {
    background: var(--accent-color);
    color: #fff;
}

/* Toggle Switch */
.a11y-toggle-btn {
    width: 44px;
    height: 24px;
    border-radius: 12px;
    border: 2px solid #ccc;
    background: #e8e8e8;
    cursor: pointer;
    position: relative;
    padding: 0;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.a11y-switch {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.a11y-toggle-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-dark);
}

.a11y-toggle-btn.active .a11y-switch {
    right: auto;
    left: 2px;
}

/* Footer */
.a11y-panel-footer {
    padding: 0.65rem 1.25rem;
    background: rgba(0, 0, 0, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.a11y-reset-btn {
    background: none;
    border: 1.5px solid #d4736e;
    color: #d4736e;
    padding: 0.35rem 0.8rem;
    border-radius: 8px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.2s;
}

.a11y-reset-btn:hover {
    background: #d4736e;
    color: #fff;
}

.a11y-credit {
    font-size: 0.65rem;
    color: #aaa;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Mobile: Widget */
@media (max-width: 768px) {
    .a11y-widget {
        right: 15px;
        bottom: 15px;
    }

    .a11y-toggle {
        width: 46px;
        height: 46px;
        font-size: 1.3rem;
    }

    .a11y-panel {
        width: 280px;
        left: -5px;
    }
}

/* ============================================
   Accessibility Global State Classes
   ============================================ */
/* High Contrast */
body.a11y-high-contrast {
    filter: contrast(1.4);
}

body.a11y-high-contrast * {
    border-color: #000 !important;
}

/* Highlight Links */
body.a11y-highlight-links a {
    outline: 2px solid #ffd700 !important;
    outline-offset: 2px;
    background-color: rgba(255, 215, 0, 0.1) !important;
}

/* Pause Animations */
body.a11y-stop-animations,
body.a11y-stop-animations * {
    animation-duration: 0s !important;
    animation-delay: 0s !important;
    transition-duration: 0s !important;
}

/* Large Cursor */
body.a11y-large-cursor,
body.a11y-large-cursor * {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' stroke='%23fff' stroke-width='1' d='M5 3l14 8-6 2-4 6z'/%3E%3C/svg%3E") 4 4, auto !important;
}

/* ============================================
   Privacy Policy Modal
   ============================================ */
.footer-links {
    margin-top: 0.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    font-size: 0.85rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--text-white);
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 600px;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    text-align: center;
    direction: rtl;
    animation: slideUp 0.4s ease;
}

.modal-content h2 {
    color: var(--accent-dark);
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.modal-body p {
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1rem;
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--accent-color);
    text-decoration: none;
    cursor: pointer;
}

.close-modal-btn {
    background: var(--accent-color);
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1.5rem;
    transition: background 0.3s ease;
}

.close-modal-btn:hover {
    background: var(--accent-dark);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .modal-content {
        margin: 20% auto;
        padding: 2rem 1.5rem;
        width: 95%;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }
}