/* ========================================
   Noy Harel Nacash - Lactation Consultant
   Landing Page Styles
   ======================================== */

/* ----------------------------------------
   CSS Variables (Design Tokens)
   ---------------------------------------- */
:root {
    /* Palette - White, Soft Pink, Warm Beige (Brownish) */
    --color-bg-white: #FFFFFF;
    --color-bg-pink-soft: #FFF0F5; 
    --color-bg-beige: #F5EDE4; /* Warm Beige/Brown tone */
    --color-bg-beige-dark: #E8D5C4;
    
    /* Text Colors */
    --color-text-primary: #4A4039;
    --color-text-secondary: #6B5D52;
    --color-text-light: #8B7D72;
    
    /* Accent Colors */
    --color-accent: #C9A07A;
    --color-accent-hover: #B8906A;
    --color-accent-light: #E8D5C4;
    
    /* Functional Colors */
    --color-whatsapp: #25D366;
    --color-whatsapp-hover: #20BD5A;
    --color-phone: #4A4039;
    --color-phone-hover: #3A3029;
    --color-instagram: #E1306C;
    --color-instagram-hover: #C13584;
    
    /* Accessibility Defaults */
    --a11y-focus-outline: 2px solid #0056D2;
    --a11y-menu-blue: #2b7de0;
    
    /* Typography */
    --font-family: 'Heebo', Arial, sans-serif;
    --font-family-hand: 'Amatic SC', cursive;
    --font-size-base: 18px;
    --font-size-sm: 16px;
    --font-size-lg: 20px;
    --font-size-xl: 24px;
    --font-size-2xl: 32px;
    --font-size-3xl: 40px;
    --font-size-4xl: 48px;
    
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    --line-height-tight: 1.3;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.8;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 40px;
    --spacing-xl: 64px;
    --spacing-2xl: 96px;
    
    /* Layout */
    --container-max-width: 1000px;
    --container-padding: 24px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(74, 64, 57, 0.05);
    --shadow-md: 0 4px 16px rgba(74, 64, 57, 0.08);
    --shadow-lg: 0 8px 32px rgba(74, 64, 57, 0.12);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-family);
    font-weight: var(--font-weight-regular);
    line-height: var(--line-height-normal);
    color: var(--color-text-primary);
    background-color: var(--color-bg-white);
    direction: rtl;
    text-align: right;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

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

a:focus, button:focus, input:focus, textarea:focus {
    outline: var(--a11y-focus-outline);
    outline-offset: 2px;
}

ul {
    list-style: none;
}

/* ----------------------------------------
   Artistic Decorations (Updated)
   ---------------------------------------- */
.art-decor {
    position: absolute;
    z-index: 0;
    opacity: 0.25; 
    pointer-events: none;
    color: var(--color-accent); 
}

.decor-leaf-1 {
    width: 180px;
    top: -20px;
    left: -20px;
    transform: rotate(45deg);
}

.decor-leaf-2 {
    width: 150px;
    bottom: 20px;
    right: -30px;
    transform: rotate(-15deg);
}

.decor-line {
    width: 250px;
    top: 40%;
    right: -60px;
    opacity: 0.2;
}

/* New Decorations */
.decor-dots {
    width: 120px;
    top: 10%;
    left: 5%;
    opacity: 0.3;
}

.decor-flower-small {
    width: 80px;
    top: -40px;
    right: 10%;
    transform: rotate(10deg);
}

.decor-branch {
    width: 200px;
    bottom: 10%;
    left: -50px;
    transform: rotate(20deg);
    opacity: 0.2;
}

.decor-organic {
    width: 300px;
    top: 20%;
    right: -100px;
    opacity: 0.15;
    color: var(--color-bg-pink-soft); 
    fill: currentColor;
}

/* Testimonials specific decor */
.decor-heart-sketch {
    width: 120px;
    top: 40px;
    left: 5%;
    transform: rotate(-10deg);
    opacity: 0.15;
    color: var(--color-accent);
}

.decor-scribble {
    width: 200px;
    bottom: 10px;
    right: -50px;
    opacity: 0.1;
    color: var(--color-text-secondary);
}

/* Services specific decor */
.decor-circle-outline {
     width: 180px;
     top: 40px;
     right: -60px;
     opacity: 0.08; /* Very subtle */
     color: var(--color-text-secondary);
     transform: rotate(20deg);
}

.decor-wave-simple {
    width: 300px;
    bottom: -20px;
    left: -80px;
    opacity: 0.12;
    color: var(--color-accent);
}

/* ----------------------------------------
   Container
   ---------------------------------------- */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

/* ----------------------------------------
   Typography
   ---------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-tight);
    color: var(--color-text-primary);
}

h1 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-md);
}

h2 {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--spacing-lg);
    text-align: center;
    position: relative;
    display: inline-block;
}

section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--color-accent);
    opacity: 0.5;
    margin: 8px auto 0;
    border-radius: var(--radius-full);
}

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

h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
}

p {
    margin-bottom: var(--spacing-sm);
}

/* ----------------------------------------
   Buttons
   ---------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm) var(--spacing-md);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
}

.btn .icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-bg-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

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

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

.btn-whatsapp {
    background-color: var(--color-whatsapp);
    color: var(--color-bg-white);
    box-shadow: var(--shadow-sm);
}

.btn-whatsapp:hover {
    background-color: var(--color-whatsapp-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-phone {
    background-color: var(--color-phone);
    color: var(--color-bg-white);
    box-shadow: var(--shadow-sm);
}

.btn-phone:hover {
    background-color: var(--color-phone-hover);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
    color: var(--color-bg-white);
    box-shadow: var(--shadow-sm);
}

.btn-instagram:hover {
    filter: brightness(1.1);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* ----------------------------------------
   Section Base Styles
   ---------------------------------------- */
section {
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

/* ----------------------------------------
   Hero Section
   ---------------------------------------- */
.hero {
    background: linear-gradient(180deg, var(--color-bg-white) 0%, var(--color-bg-pink-soft) 100%);
    padding: var(--spacing-xl) 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

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

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: var(--spacing-md);
}

.hero-intro {
    font-size: var(--font-size-lg);
    color: var(--color-text-primary);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--spacing-lg);
    line-height: var(--line-height-relaxed);
}

.hero-image-container {
    /* Changed from display:none to be visible by default as part of content flow */
    display: flex; 
    justify-content: center;
    margin-bottom: var(--spacing-md);
    width: 100%;
}

.hero-image {
    width: 100%;
    max-width: 550px; /* Slightly larger for central view */
    border-radius: var(--radius-lg); /* Simplified radius for cleaner look */
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 16/9; /* Wider aspect ratio fits better under title */
    border: 4px solid var(--color-bg-white);
}

.hero h1 {
    font-size: var(--font-size-3xl);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-md);
}

/* ----------------------------------------
   Hero CTA Group
   ---------------------------------------- */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centered as requested */
    gap: var(--spacing-sm);
    margin: 0 auto; /* Ensure centering within container if restricted width */
    width: 100%;
}

.hero-cta-note {
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    margin: 0;
}

.hero-free-call {
    color: var(--color-text-secondary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    transition: all var(--transition-normal);
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid var(--color-accent);
}

.hero-free-call:hover {
    color: var(--color-accent-hover);
}

/* ----------------------------------------
   Pain Section
   ---------------------------------------- */
.pain {
    background: linear-gradient(180deg, var(--color-bg-pink-soft) 0%, var(--color-bg-white) 100%);
}

.pain-list {
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
    background: var(--color-bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-bg-pink-soft);
    box-shadow: var(--shadow-sm);
}

.pain-list li {
    position: relative;
    padding-right: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-secondary);
    font-size: var(--font-size-lg);
}

.pain-list li::before {
    content: "•";
    position: absolute;
    right: 0;
    color: var(--color-accent);
    font-weight: var(--font-weight-bold);
    font-size: 1.5em;
    line-height: 1;
}

.pain-closing {
    text-align: center;
    font-size: var(--font-size-xl); /* Adjusted size */
    font-weight: var(--font-weight-medium);
    color: var(--color-text-light); /* Matching the color of the note below */
    margin-top: var(--spacing-lg);
    font-family: var(--font-family); /* Matching the font (Heebo) */
    font-style: italic; /* Matching the style */
}

/* ----------------------------------------
   Solution Section
   ---------------------------------------- */
.solution {
    background: linear-gradient(180deg, var(--color-bg-white) 0%, var(--color-bg-beige) 100%);
}

/* Removed solution-intro styling as text is removed */

.solution-list {
    max-width: 600px;
    margin: 0 auto var(--spacing-md); /* Reduced bottom margin */
}

.solution-list li {
    position: relative;
    padding-right: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
    font-size: var(--font-size-lg);
}

.solution-list li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--color-accent);
    font-weight: var(--font-weight-bold);
}

.solution-locations {
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-sm);
}

.solution-reimbursement {
    text-align: center;
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm);
    background-color: rgba(255,255,255,0.5);
    border-radius: var(--radius-md);
    display: inline-block;
}

.solution-footer-wrap {
    text-align: center;
    margin-top: var(--spacing-md);
}

.solution-note {
    text-align: center;
    font-size: var(--font-size-xl); /* Increased size to make it pop */
    font-weight: var(--font-weight-medium);
    font-style: italic;
    color: var(--color-text-light);
    margin-top: var(--spacing-md);
}

/* ----------------------------------------
   Process Section
   ---------------------------------------- */
.process {
    background: linear-gradient(180deg, var(--color-bg-beige) 0%, var(--color-bg-white) 100%);
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-accent-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.process-step:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.process-step-number {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background-color: var(--color-accent);
    color: var(--color-bg-white);
    display: grid;
    place-items: center;
    margin: 0 auto var(--spacing-sm);
    font-weight: var(--font-weight-bold);
}

.process-step h3 {
    font-size: var(--font-size-xl);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xs);
}

.process-step p {
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    margin-bottom: 0;
}

/* ----------------------------------------
   About Section
   ---------------------------------------- */
.about {
    background: linear-gradient(180deg, var(--color-bg-white) 0%, var(--color-bg-pink-soft) 100%);
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.about-image {
    flex-shrink: 0;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px dashed var(--color-accent);
    border-radius: 50%;
    z-index: 0;
    animation: spin 60s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.profile-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--color-bg-white);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 1;
    background-color: var(--color-bg-pink-soft);
}

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

/* Updated: Single White Box style for the entire content */
.about-story-box {
    background-color: var(--color-bg-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: right;
    box-shadow: var(--shadow-md);
    position: relative;
}

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

.credentials-list {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px dashed var(--color-accent-light);
}

.credentials-list li {
    position: relative;
    padding-right: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
    color: var(--color-text-primary); /* Darker color for emphasis */
    font-weight: var(--font-weight-medium);
    display: inline-block;
    width: 100%;
    text-align: right;
}

.credentials-list li::before {
    content: "🎓";
    position: absolute;
    right: 0;
    font-size: 0.9em;
}

/* ----------------------------------------
   Why Me Section
   ---------------------------------------- */
.why-me {
    background: linear-gradient(180deg, var(--color-bg-pink-soft) 0%, var(--color-bg-white) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--spacing-md);
    max-width: 800px;
    margin: 0 auto;
}

.feature-card {
    background-color: var(--color-bg-white); 
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border-bottom: 3px solid var(--color-accent);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto var(--spacing-sm);
    color: var(--color-accent);
    background: var(--color-bg-beige);
    border-radius: 50%;
    padding: 10px;
}

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

.feature-card p {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

/* ----------------------------------------
   Testimonials Section
   ---------------------------------------- */
.testimonials {
    background-color: var(--color-bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-placeholder {
    border-radius: var(--radius-md);
    aspect-ratio: 9/16; /* Mobile screenshot proportion */
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.testimonial-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    cursor: zoom-in;
    transition: transform var(--transition-normal);
}

.testimonial-placeholder:hover img {
    transform: scale(1.02);
}

.testimonial-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
    z-index: 11000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.testimonial-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.testimonial-lightbox-content {
    position: relative;
    max-width: min(95vw, 520px);
    width: 100%;
}

.testimonial-lightbox-content img {
    width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    background: #000;
}

.testimonial-lightbox-close {
    position: absolute;
    top: -40px;
    left: 0;
    width: 36px;
    height: 36px;
    border: none;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-text-primary);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
}

.testimonial-lightbox-close:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* ----------------------------------------
   Services Section
   ---------------------------------------- */
.services {
    background: linear-gradient(180deg, var(--color-bg-white) 0%, var(--color-bg-beige) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
}

.service-card {
    background-color: var(--color-bg-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.service-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
    border-color: var(--color-accent);
}

.service-card h3 {
    font-size: var(--font-size-lg);
    color: var(--color-text-primary);
    margin-bottom: var(--spacing-xs);
}

.service-card p {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary); /* Darker than light for better readability */
    margin-bottom: 0;
    line-height: 1.5;
}

/* Special styling for the featured service (first item) */
.service-card.featured {
    border: 2px solid var(--color-accent);
    background-color: #fffaf5;
    /* Ensure it stands out as a central block */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.service-card.featured h3 {
    font-size: var(--font-size-xl);
    color: var(--color-accent);
    font-weight: 700;
}

/* ----------------------------------------
   Objections Section
   ---------------------------------------- */
.objections {
    background: linear-gradient(180deg, var(--color-bg-beige) 0%, var(--color-bg-white) 100%);
}

.objections-intro {
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
}

.objections-list {
    max-width: 500px;
    margin: 0 auto var(--spacing-lg);
}

.objections-list li {
    position: relative;
    padding-right: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-secondary);
}

.objections-list li::before {
    content: "×";
    position: absolute;
    right: 0;
    color: #C97A7A;
    font-weight: var(--font-weight-bold);
}

/* New class for the sensitive note */
.objections-sensitive-note {
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--color-text-primary);
    background-color: var(--color-bg-pink-soft);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin: 0 auto var(--spacing-lg);
    border: 1px solid var(--color-accent);
    box-shadow: var(--shadow-sm);
    line-height: 1.5;
}

/* Updated Emphasis Style - Unified with sensitive note */
.objections-emphasis {
    text-align: center;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--color-text-primary);
    background-color: var(--color-bg-pink-soft);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid var(--color-accent);
    box-shadow: var(--shadow-sm);
    line-height: 1.5;
}

/* ----------------------------------------
   FAQ Section
   ---------------------------------------- */
.faq {
    background: linear-gradient(180deg, var(--color-bg-white) 0%, var(--color-bg-beige) 100%);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: var(--spacing-sm);
}

.faq-item {
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-accent-light);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    transition: border-color var(--transition-normal), box-shadow var(--transition-normal), background-color var(--transition-normal);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-left: 24px;
    color: var(--color-text-primary);
    font-weight: var(--font-weight-medium);
}

.faq-item summary:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 4px;
    border-radius: var(--radius-sm);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::before {
    content: "+";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
    font-weight: var(--font-weight-bold);
    font-size: 1.2em;
    line-height: 1;
}

.faq-item[open] summary::before {
    content: "−";
}

.faq-item[open] {
    border-color: var(--color-accent);
    background-color: #fffdf9;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item p {
    margin-top: var(--spacing-sm);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
}

/* ----------------------------------------
   Contact Form Section
   ---------------------------------------- */
.form-section {
    background: linear-gradient(180deg, var(--color-bg-white) 0%, var(--color-bg-pink-soft) 100%);
    padding: var(--spacing-xl) 0;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-input {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    color: var(--color-text-primary);
    background-color: var(--color-bg-beige);
    border: 1px solid transparent;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    text-align: right;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: white;
}

.form-textarea {
    border-radius: var(--radius-md);
    resize: vertical;
    min-height: 100px;
}

.form-checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    cursor: pointer;
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

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

.checkbox-text {
    line-height: 1.4;
}

.checkbox-text a {
    color: var(--color-accent);
    text-decoration: underline;
    font-weight: var(--font-weight-medium);
    transition: color var(--transition-fast);
}

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

.btn-submit {
    width: 100%;
    background-color: var(--color-accent);
    color: var(--color-bg-white);
    padding: var(--spacing-sm) var(--spacing-lg);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    margin-top: var(--spacing-sm);
}

.btn-submit:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ----------------------------------------
   Final CTA Section
   ---------------------------------------- */
.contact {
    background: linear-gradient(180deg, var(--color-bg-pink-soft) 0%, var(--color-bg-beige-dark) 100%);
    text-align: center;
    padding: var(--spacing-2xl) 0;
}

.contact-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.contact-buttons .btn {
    min-width: 250px;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--font-size-lg);
}

.contact-phone {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--color-text-primary);
    direction: ltr;
}

/* ----------------------------------------
   Footer
   ---------------------------------------- */
.footer {
    background-color: var(--color-text-primary);
    color: var(--color-bg-white);
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.footer-name {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--spacing-xs);
}

.footer-title {
    font-size: var(--font-size-sm);
    color: var(--color-accent-light);
    margin-bottom: var(--spacing-sm);
}

.footer-area,
.footer-phone {
    font-size: var(--font-size-sm);
    color: #ccc; /* Lighter text for footer */
    margin-bottom: var(--spacing-xs);
}

.footer-phone {
    direction: ltr;
    display: inline-block;
}

/* ----------------------------------------
   Mobile Sticky CTA
   ---------------------------------------- */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-bg-white);
    padding: var(--spacing-sm);
    display: flex;
    gap: var(--spacing-sm);
    box-shadow: 0 -4px 16px rgba(74, 64, 57, 0.12);
    z-index: 1000;
    /* Hidden by default on desktop */
    display: none;
}

.sticky-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-sm);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.sticky-btn .icon {
    width: 20px;
    height: 20px;
}

.sticky-whatsapp {
    background-color: var(--color-whatsapp);
    color: var(--color-bg-white);
}

.sticky-phone {
    background-color: var(--color-phone);
    color: var(--color-bg-white);
}

/* ----------------------------------------
   Accessibility Widget
   ---------------------------------------- */
.a11y-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    font-family: 'Heebo', sans-serif;
    direction: rtl;
}

/* Adjust for mobile sticky footer */
@media (max-width: 767px) {
    .a11y-widget {
        bottom: 80px; /* Above the 60-70px sticky bar */
        left: 10px;
    }
}

.a11y-toggle-btn {
    width: 50px;
    height: 50px;
    background-color: var(--a11y-menu-blue);
    border-radius: 50%;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
    color: white;
}

.a11y-toggle-btn:hover {
    transform: scale(1.1);
}

.a11y-toggle-btn svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.a11y-menu {
    position: absolute;
    bottom: 60px;
    left: 0;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.25);
    width: 300px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: a11y-fade-in 0.2s ease-out;
    border: 1px solid #ccc;
}

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

.a11y-menu.is-open {
    display: flex;
}

.a11y-header {
    background-color: var(--a11y-menu-blue);
    color: white;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.a11y-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 5px;
}

.a11y-body {
    padding: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    background-color: #f9f9f9;
}

.a11y-option {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 5px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-align: center;
    font-size: 0.85rem;
    color: #333;
    transition: all 0.2s;
    min-height: 70px;
}

.a11y-option:hover {
    background-color: #f0f4f8;
    border-color: #bbb;
}

.a11y-option.active {
    background-color: #e6f0ff;
    border-color: var(--a11y-menu-blue);
    color: var(--a11y-menu-blue);
    font-weight: 500;
}

.a11y-option svg {
    width: 24px;
    height: 24px;
    fill: #555;
    margin-bottom: 2px;
}

.a11y-option.active svg {
    fill: var(--a11y-menu-blue);
}

.a11y-option.full-width {
    grid-column: span 2;
    flex-direction: row;
    min-height: 40px;
}

.a11y-footer {
    background: #fff;
    padding: 10px;
    text-align: center;
    border-top: 1px solid #eee;
}

.a11y-footer a {
    color: var(--a11y-menu-blue);
    text-decoration: underline;
    font-size: 0.9rem;
    cursor: pointer;
}

/* Modal styles are in shared accessibility-statement.js */

/* Accessibility Classes (Applied by JS) */

html.a11y-large-text {
    font-size: 120% !important; /* Base scale */
}

html.a11y-small-text {
    font-size: 90% !important;
}

html.a11y-grayscale {
    filter: grayscale(100%);
}

html.a11y-contrast {
    filter: contrast(150%);
}

html.a11y-invert {
    filter: invert(100%);
    background-color: black;
}

html.a11y-light-bg {
    background-color: white !important;
    color: black !important;
}
html.a11y-light-bg * {
    background-color: white !important;
    color: black !important;
    border-color: #000 !important;
}

html.a11y-links a {
    text-decoration: underline !important;
    background-color: yellow !important;
    color: black !important;
    font-weight: bold !important;
}

html.a11y-readable-font body {
    font-family: Arial, Helvetica, sans-serif !important;
}

/* ----------------------------------------
   Responsive Design
   ---------------------------------------- */
@media (max-width: 767px) {
    .sticky-cta {
        display: flex;
    }
    
    body {
        padding-bottom: 80px;
    }
    
    h1 {
        font-size: var(--font-size-2xl);
    }
    
    h2 {
        font-size: var(--font-size-xl);
    }
    
    .hero {
        min-height: auto;
        padding: var(--spacing-xl) 0;
    }
    
    .hero-layout {
        gap: var(--spacing-md);
    }
    
    /* Show image on mobile but smaller/top */
    .hero-image-container {
        display: block;
        margin-bottom: var(--spacing-md);
    }
    
    .hero h1 {
        font-size: var(--font-size-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-base);
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-buttons .btn {
        width: 100%;
        min-width: auto;
    }
    
    .a11y-menu {
        width: 280px;
        right: auto;
        left: 0;
    }
}

@media (min-width: 768px) {
    :root {
        --container-padding: 40px;
    }
    
    /* Updated: Single column layout for desktop too */
    .hero-layout {
        display: block;
        max-width: 900px;
        margin: 0 auto;
        text-align: center; /* Center align text for vertical layout */
    }

    .hero-content {
        text-align: center; /* Center align content */
    }
    
    /* Centering specific override for hero-cta-group on desktop if text is right aligned */
    .hero-cta-group {
        align-items: center; 
        margin-top: var(--spacing-md);
    }
    
    .hero-image-container {
        display: flex;
    }
    
    .contact-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-content {
        /* Changed to align with user request: Image below title (Stack vertical) */
        flex-direction: column; 
        text-align: right;
        align-items: center; /* Center the image */
    }
    
    .about-text {
        text-align: right;
        flex: 1;
        padding-left: 0; /* Remove padding as it's no longer side-by-side */
        width: 100%;
        max-width: 800px; /* Limit width for better reading experience */
    }
    
    .about-image {
        margin-bottom: var(--spacing-md);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .faq-item {
        padding: var(--spacing-md);
    }
}

@media (min-width: 1024px) {
    :root {
        --font-size-base: 18px;
    }
    
    /* Grid Layout: 2 Columns default */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
        max-width: 900px; /* Constrain width for better look */
        margin: 0 auto;
    }

    /* Make testimonials 4 in a row on desktop */
    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Item 1 (Consulting) - Central Top Box */
    .service-card.featured {
        grid-column: 1 / -1; /* Span all columns */
        width: 100%;
        max-width: 500px; /* Fixed width for "square" look */
        margin: 0 auto; /* Center it */
        aspect-ratio: 2.5/1; /* Give it some height/presence */
    }
    
    .features-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}
