:root {
    --primary: #DC2626;
    --primary-dark: #B91C1C;
    --primary-light: #EF4444;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --light-gray: #E5E7EB;
    --dark: #1A1A1A;
    --dark-blue: #1A1A1A;
    --text: #1A1A1A;
    --text-light: #6B7280;
    --gold: #D97706;
    --gold-light: #F59E0B;
    --shadow: 0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --heading-font: 'Heebo', sans-serif;
    --transition: color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; overflow-y: scroll; }

body {
    font-family: 'Heebo', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
    display: none !important;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(44,40,37,0.15);
    position: fixed;
    top: -25px;
    left: -25px;
    pointer-events: none;
    z-index: 10000;
    transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease, margin 0.3s ease;
    will-change: transform;
}
.cursor.is-hover {
    width: 70px;
    height: 70px;
    margin: -10px 0 0 -10px;
    border-color: var(--primary);
    background: rgba(44,40,37,0.04);
}
.cursor-dot {
    display: none !important;
    width: 6px;
    height: 6px;
    background: var(--primary);
    position: fixed;
    top: -3px;
    left: -3px;
    pointer-events: none;
    z-index: 10001;
    will-change: transform;
    transition: transform 0.15s ease;
}
.cursor-dot.is-hover {
    transform: scale(0);
}
@media (max-width: 1024px) {
    .cursor, .cursor-dot { display: none !important; }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    height: 86px;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* transition enabled by JS after page load to prevent flash */
    background: transparent;
}
.navbar.scrolled {
    height: 74px;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}
.navbar .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.navbar .logo-icon {
    width: 44px;
    height: 44px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Heebo', sans-serif;
    font-weight: 900;
    font-size: 22px;
    border-radius: 0;
    transition: var(--transition);
    box-shadow: none;
}
.navbar .logo-svg {
    width: 300px;
    height: 46px;
    object-fit: contain;
    transition: var(--transition);
}
.navbar .logo-text { display: none; }
.navbar .logo-dark { display: none; }
.navbar.scrolled .logo-light { display: none; }
.navbar.scrolled .logo-dark { display: block; }
.navbar .nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}
.navbar .nav-links a {
    text-decoration: none;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: var(--transition);
    padding: 5px 0;
    letter-spacing: 0.3px;
}
.navbar.scrolled .nav-links a { color: var(--text); }
.navbar .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}
.navbar .nav-links a:hover::after,
.navbar .nav-links a.active::after { width: 100%; }
.navbar .nav-links a:hover,
.navbar .nav-links a.active { color: var(--primary); }
.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active { color: var(--primary); }
.nav-links a.nav-gold,
.navbar.scrolled .nav-links a.nav-gold {
    color: var(--primary);
    font-weight: 700;
}
.nav-links a.nav-gold::after {
    background: var(--primary);
}
.nav-links a.nav-gold:hover,
.navbar.scrolled .nav-links a.nav-gold:hover {
    color: var(--primary-dark);
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 1000;
}
[dir="rtl"] .nav-actions .lang-switcher { order: 2; }
[dir="rtl"] .nav-actions .nav-cta { order: 1; }
.lang-switcher { position: relative; }
.lang-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    backdrop-filter: none;
    border: none;
    padding: 6px 10px;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
}
.navbar.scrolled .lang-trigger {
    background: transparent;
    border: none;
}
.lang-trigger:hover { background: transparent; }
.navbar.scrolled .lang-trigger:hover { background: transparent; }
.lang-trigger-flag {
    width: 32px;
    height: 22px;
    min-width: 32px;
    max-width: 32px;
    min-height: 22px;
    max-height: 22px;
    border-radius: 0;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.4);
    display: block;
}
.navbar.scrolled .lang-trigger-flag { border-color: rgba(0,0,0,0.15); }
.lang-trigger-arrow { font-size: 13px; color: #fff; opacity: 0.7; transition: transform 0.3s ease; width: 13px; display: inline-block; text-align: center; }
.navbar.scrolled .lang-trigger-arrow { color: var(--text); }
.lang-switcher.open .lang-trigger-arrow { transform: rotate(180deg); }
.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid var(--light-gray);
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    padding: 6px;
    display: none;
    min-width: 140px;
    z-index: 2000;
    flex-direction: column;
    gap: 2px;
}
[dir="ltr"] .lang-dropdown { right: auto; left: 0; }
.lang-switcher.open .lang-dropdown { display: flex; }
.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    border: none;
    background: none;
    width: 100%;
    text-align: start;
    font-family: 'Heebo', sans-serif;
}
.lang-option:hover { background: var(--off-white); }
.lang-option.active { background: var(--off-white); color: var(--primary); font-weight: 700; }
.lang-option img {
    width: 22px;
    height: 16px;
    border-radius: 0;
    object-fit: cover;
    border: 1px solid rgba(0,0,0,0.1);
}
.lang-option.active img { border-color: rgba(44,40,37,0.3); }
.nav-cta {
    background: #c0392b;
    color: #fff;
    padding: 10px 28px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: var(--transition);
    border: 2px solid #c0392b;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.nav-cta:hover {
    background: #a93226;
    border-color: #a93226;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(220,38,38,0.3);
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}
.mobile-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    transform-origin: center;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.navbar.scrolled .mobile-toggle span { background: var(--dark); }

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    z-index: 0;
}
.hero-bg-layer2 {
    z-index: 0;
}
.hero-overlay {
    z-index: 1;
}
.hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220,38,38,0.25) 0%, rgba(26,26,26,0.4) 50%, rgba(26,26,26,0.35) 100%);
    pointer-events: none;
}
@keyframes kenBurns {
    0% { transform: scale(1) translate(0,0); }
    50% { transform: scale(1.03) translate(-0.5%, -0.3%); }
    100% { transform: scale(1) translate(0,0); }
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(220,38,38,0.05) 0%, rgba(26,26,26,0.25) 100%);
}
/* PARTICLES: hidden – remove "display:none" to restore */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    display: none;
}
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}
@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 30px;
}
.hero h1 {
    font-family: var(--heading-font);
    font-size: clamp(48px, 7.5vw, 88px);
    font-weight: 500;
    line-height: 1.15;
    margin-bottom: 20px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.5), 0 0 40px rgba(0,0,0,0.3);
}
[dir="ltr"] .hero h1 {
    font-size: clamp(30px, 3.8vw, 48px);
}
.hero h1 > span:not(.word) {
    background: linear-gradient(135deg, #fff, #fecaca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}
.hero h1 > span:not(.word) .word-inner {
    background: linear-gradient(135deg, #fff, #fecaca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* Pre-set GSAP animation initial states to prevent flash on FRESH load.
   On refresh (html[data-refresh]) these rules are skipped so elements stay
   visible until GSAP applies its own inline styles. */
/* Kill CSS transitions during refresh (page is hidden with opacity:0 anyway) */
html[data-refresh],
html[data-refresh] *, html[data-refresh] *::before, html[data-refresh] *::after {
    transition: none !important;
}
html[data-first-load] .hero-subtitle,
html[data-first-load] .hero-yield,
html[data-first-load] .hero-buttons,
html[data-first-load] .hero h1,
html[data-first-load] [data-reveal],
html[data-first-load] [data-reveal-right],
html[data-first-load] [data-reveal-left],
html[data-first-load] [data-reveal-scale],
html[data-first-load] [data-stagger] > *,
html[data-first-load] .timeline-h-item,
html[data-first-load] .poland-emoji-item,
html[data-first-load] [data-question],
html[data-first-load] [data-question-answer] { opacity: 0; }

/* is-back rules removed — no longer used */

.hero-subtitle {
    font-size: clamp(20px, 2.8vw, 28px);
    font-weight: 300;
    color: rgba(255,255,255,0.92);
    margin-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero-yield {
    font-size: clamp(22px, 3.2vw, 34px);
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.hero-yield span {
    color: #fecaca;
    -webkit-text-fill-color: #fecaca;
}
.hero-equity {
    position: absolute;
    bottom: 126px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 800;
    color: #fecaca;
    -webkit-text-fill-color: #fecaca;
    letter-spacing: 0.5px;
    white-space: nowrap;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    color: white;
    padding: 16px 40px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
    border: 2px solid var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
/* RTL navbar: swap logo/actions visually while keeping nav-links at exact same position */
[dir="rtl"] .navbar .logo {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
}
[dir="rtl"] .navbar .nav-actions {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
}
/* Invisible spacers preserve the original width distribution so nav-links stays put */
[dir="rtl"] .navbar::before {
    content: '';
    width: 300px; /* same as original logo on the right */
    flex-shrink: 0;
}
[dir="rtl"] .navbar::after {
    content: '';
    width: var(--nav-actions-w, 230px); /* measured by JS, fallback 230px */
    flex-shrink: 0;
}
/* Phone icon flip for RTL */
[dir="rtl"] .btn-primary .fa-phone-alt,
[dir="rtl"] .btn-submit .fa-phone-alt,
[dir="rtl"] .nav-cta .fa-phone-alt,
[dir="rtl"] .contact-detail .fa-phone-alt {
    transform: scaleX(-1);
}
[dir="ltr"] .contact-detail .fa-phone-alt {
    transform: scaleX(-1);
}
.btn-secondary {
    background: transparent;
    color: white;
    padding: 16px 40px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: 2px solid rgba(255,255,255,0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-secondary:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}
.btn-secondary-dark {
    background: transparent;
    color: var(--white);
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-secondary-dark:hover {
    border-color: white;
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
}
.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.section-readmore {
    text-align: center;
    margin-top: 40px;
}
.section-readmore .btn-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    border: 2px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 0;
    transition: var(--transition);
}
.section-readmore .btn-readmore:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}
.section-readmore .btn-readmore.on-dark {
    border-color: rgba(255,255,255,0.4);
    color: white;
}
.section-readmore .btn-readmore.on-dark:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
    color: white;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    animation: bounce 2s infinite;
    cursor: pointer;
}
.hero-scroll i {
    display: block;
    margin-top: 8px;
    font-size: 20px;
}
@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== ANIMATED QUESTIONS SECTION ===== */
.questions-section {
    background: var(--dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}
.questions-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
}
.questions-inner {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}
.question-item {
    opacity: 0;
    transform: translateY(60px);
    margin-bottom: 50px;
}
.question-item h2 {
    font-family: var(--heading-font);
    font-size: clamp(28px, 5vw, 52px);
    font-weight: 500;
    color: var(--white);
    line-height: 1.3;
    letter-spacing: -0.5px;
}
.question-item:nth-child(1) h2 { color: rgba(255,255,255,0.95); }
.question-item:nth-child(2) h2 { color: rgba(255,255,255,0.7); }
.question-item:nth-child(3) h2 { color: var(--primary-light); }
.question-answer {
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    margin-top: 30px;
}
.question-answer p {
    font-family: var(--heading-font);
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 500;
    color: var(--white);
    letter-spacing: -0.5px;
}
.answer-line {
    width: 80px;
    height: 3px;
    background: var(--primary);
    margin: 25px auto 0;
    transform: scaleX(0);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.question-answer.visible .answer-line {
    transform: scaleX(1);
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
    display: none;
}
.divider-line {
    width: 60px;
    height: 1px;
    background: var(--light-gray);
}
.divider-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    transform: rotate(45deg);
}

/* Dark background divider */
.questions-section + .section-divider {
    background: transparent;
}
.questions-section + .section-divider .divider-line {
    background: rgba(255,255,255,0.1);
}
/* Warm background dividers */
/* Section dividers */
.why-poland + .section-divider {
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}
.why-poland + .section-divider .divider-line {
    background: rgba(0,0,0,0.08);
}
.process-section + .section-divider {
    background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%);
}
.process-section + .section-divider .divider-line {
    background: rgba(0,0,0,0.08);
}
/* Projects to Contact transition */
.projects + .section-divider {
    background: var(--white);
}

/* ===== SECTIONS GENERAL ===== */
section { padding: 70px 0; scroll-margin-top: 80px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 30px; }
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-badge {
    display: inline-block;
    color: var(--primary);
    padding: 0;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.section-header h2 {
    font-family: var(--heading-font);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 500;
    color: var(--text);
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}
.section-header h2 span:not(.word):not(.word-inner) { color: var(--primary); font-weight: 500; }
.projects .section-header h2 span:not(.word):not(.word-inner) { color: var(--primary); }
.section-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
}

/* Red separator */
.red-separator {
    display: none;
}
.red-separator-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}
.red-separator-diamond {
    width: 10px;
    height: 10px;
    background: var(--primary);
    transform: rotate(45deg);
    flex-shrink: 0;
}

/* Word split animation */
.word {
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
}
.word-inner {
    display: inline-block;
    transform: translateY(135%);
    will-change: transform;
}

/* Image reveal container */
[data-img-reveal] {
    overflow: hidden;
    clip-path: inset(100% 0 0 0);
}
[data-img-reveal] img {
    transform: scale(1.3);
    will-change: transform;
}

/* ===== MARQUEE ===== */
.marquee {
    overflow: hidden;
    padding: 25px 0;
    background: var(--primary);
    border-top: none;
    border-bottom: none;
}
.marquee-track {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}
.marquee-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 30px;
    white-space: nowrap;
    color: rgba(255,255,255,0.5);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.marquee-item .dot {
    width: 6px;
    height: 6px;
    background: #fff;
    flex-shrink: 0;
}
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
[dir="rtl"] .marquee-track { animation-name: marqueeScrollRTL; }
@keyframes marqueeScrollRTL {
    from { transform: translateX(0); }
    to { transform: translateX(50%); }
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--white);
    padding: 60px 0;
    border-bottom: 1px solid var(--light-gray);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-item {
    position: relative;
}
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50px;
    background: var(--light-gray);
}
[dir="ltr"] .stat-item:not(:last-child)::after {
    left: auto;
    right: 0;
}
.stat-item h3 {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}
.stat-item:hover h3 { color: var(--primary); }
.stat-item p {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 500;
}

/* ===== PRINCIPLES BAR ===== */
.principles-bar {
    background: var(--white);
    padding: 50px 0;
    border-bottom: 1px solid var(--light-gray);
}
.principles-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}
.principle-item {
    background: var(--white);
    border-radius: 0;
    padding: 18px 20px;
    border: 1px solid var(--light-gray);
    box-shadow: none;
    transition: var(--transition);
}
.principle-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border-color: var(--text);
}
.principle-title {
    font-weight: 800;
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 6px;
}
.principle-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== INTRO MEET ===== */
.intro-meet {
    padding: 130px 0;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
    min-height: auto;
    scroll-margin-top: 0;
}
.intro-meet .container {
    position: relative;
    z-index: 1;
}
.intro-meet-grid {
    max-width: 600px;
    margin-left: auto;
    min-height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
[dir="ltr"] .intro-meet-grid {
    margin-left: 0;
    margin-right: auto;
}
.intro-meet-bg-image {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    pointer-events: none;
    z-index: 0;
}
.intro-meet-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    display: block;
    mask-image: linear-gradient(to right, rgba(0,0,0,0.85) 30%, rgba(0,0,0,0.4) 65%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.85) 30%, rgba(0,0,0,0.4) 65%, transparent 100%);
}
[dir="ltr"] .intro-meet-bg-image { left: auto; right: 0; }
[dir="ltr"] .intro-meet-bg-image img {
    mask-image: linear-gradient(to left, rgba(0,0,0,0.85) 30%, rgba(0,0,0,0.4) 65%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.85) 30%, rgba(0,0,0,0.4) 65%, transparent 100%);
}
.intro-meet-text {
    text-align: right;
}
[dir="ltr"] .intro-meet-text {
    text-align: left;
}
.intro-meet-text h2 {
    font-family: var(--heading-font);
    font-weight: 500;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 12px;
}
.intro-meet-text h2 .intro-line1 {
    display: block;
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-align: right;
}
.intro-meet-text h2 .intro-line2 {
    display: block;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: 1px;
    text-align: right;
    white-space: nowrap;
}
[dir="ltr"] .intro-meet-text h2 .intro-line1,
[dir="ltr"] .intro-meet-text h2 .intro-line2 {
    text-align: left;
}
.intro-meet-text h2 .highlight {
    color: var(--primary);
}
.intro-meet-text p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.9;
}
.intro-meet-text p strong {
    color: var(--text);
}
.intro-meet-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}
.intro-meet-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(44,40,37,0.1), transparent);
    pointer-events: none;
    transition: opacity 0.5s ease;
}
.intro-meet-image:hover::after {
    opacity: 0;
}
.intro-meet-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}
.intro-meet-image:hover img {
    transform: scale(1.05);
}
@media (max-width: 1024px) {
    .intro-meet-grid {
        max-width: 100%;
    }
    .intro-meet-text {
        text-align: center;
    }
    .intro-meet-bg-image {
        width: 40%;
        opacity: 0.5;
    }
}
@media (max-width: 768px) {
    .intro-meet {
        padding: 60px 0 0 !important;
        min-height: auto;
        margin-bottom: 0 !important;
    }
    .intro-meet-text p {
        font-size: 15px;
    }
    .intro-meet-bg-image {
        width: 100%;
        height: 220px;
        position: relative;
        margin-top: 30px;
        margin-bottom: 0 !important;
        display: block;
    }
    .intro-meet-bg-image img {
        mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,1) 6%, rgba(0,0,0,1) 100%);
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,1) 6%, rgba(0,0,0,1) 100%);
        margin-bottom: -1px;
    }
    .intro-meet-grid {
        margin-left: 0;
    }
    .why-poland {
        padding-top: 30px !important;
    }
}

/* ===== PARALLAX QUOTE ===== */
.parallax-quote {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.parallax-quote img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
}
.parallax-quote-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220,38,38,0.7) 0%, rgba(26,26,26,0.6) 100%);
    z-index: 1;
}
.parallax-quote-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 30px;
}
.parallax-quote blockquote {
    font-family: var(--heading-font);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -0.5px;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
    .parallax-quote { height: 300px; }
    .parallax-quote blockquote { font-size: 22px; }
}

/* ===== IMAGE BREAK ===== */
.image-break {
    position: relative;
    height: 350px;
    overflow: hidden;
}
.image-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.image-break-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220,38,38,0.15) 0%, rgba(26,26,26,0.2) 100%);
    pointer-events: none;
}
@media (max-width: 768px) {
    .image-break { height: 200px; }
}

/* ===== SERVICES - FULL BG IMAGE ===== */
.services {
    position: relative;
    overflow: hidden;
    margin-top: 0;
    margin-bottom: 0;
    min-height: 500px;
}
.services .container {
    position: relative;
    z-index: 2;
}
.services-bg-image {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}
.services-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}
.services-bg-image::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}
.services .section-header h2 { color: var(--text) !important; }
.services .section-header h2 span.gold:not(.word):not(.word-inner) { color: var(--primary) !important; text-decoration: underline; text-decoration-color: rgba(220,38,38,0.3); text-underline-offset: 8px; }
.services .section-header h2 span.white:not(.word):not(.word-inner) { color: var(--text-light) !important; }
.services .section-header p { color: var(--text-light); }

/* Angled section shape - disabled */
.services {
    clip-path: none;
}

/* Investment paths - Premium redesign */
.paths-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 680px;
    margin: 0 auto;
    position: relative;
}
.paths-grid::after { display: none; }
.path-card {
    background: var(--primary);
    border: 1px solid rgba(220,38,38,0.3);
    border-radius: 0;
    padding: 44px 32px 36px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: right;
    box-shadow: 0 4px 20px rgba(220,38,38,0.15);
}
.path-glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
    transition: opacity 0.5s ease, width 0.5s ease, height 0.5s ease;
}
.path-card:hover .path-glow {
    width: 280px;
    height: 280px;
}
.path-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #fff;
    transition: width 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.path-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.3);
    box-shadow: 0 12px 40px rgba(220,38,38,0.25);
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1), border-color 0.4s ease, box-shadow 0.5s ease;
}
.path-card:hover::before {
    width: 100%;
}
.path-number {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: rgba(255,255,255,0.15);
    -webkit-text-fill-color: rgba(255,255,255,0.15);
    margin-bottom: 16px;
    text-align: center;
}
.path-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 8px;
}
.path-icon {
    font-size: 22px;
    color: #fff;
    line-height: 1;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.path-card:hover .path-icon {
    transform: scale(1.15);
}
.path-card h3 {
    font-family: var(--heading-font);
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 8px;
    display: block;
}
.path-card h3::after { display: none; }
.path-tagline {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0;
    opacity: 0.85;
    letter-spacing: 0.2px;
}
.path-divider {
    width: 40px;
    height: 2px;
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
    margin: 20px auto 24px;
}
.path-card ul {
    list-style: none;
    text-align: right;
    margin-bottom: 0;
    width: 100%;
    flex: 1;
    display: grid;
    grid-template-rows: repeat(4, 1fr);
}
[dir="ltr"] .path-card ul {
    text-align: left;
}
.path-card ul li {
    padding: 0 28px 0 0;
    font-size: 14.5px;
    color: rgba(255,255,255,0.9);
    position: relative;
    line-height: 1.7;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}
.path-card:hover ul li {
    color: #fff;
}
.path-card ul li:last-child {
    border-bottom: none;
}
[dir="ltr"] .path-card ul li {
    padding-right: 0;
    padding-left: 28px;
}
.path-card ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 10px;
    color: rgba(255,255,255,0.7);
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
[dir="ltr"] .path-card ul li::before {
    right: auto;
    left: 0;
}
.path-highlight {
    margin-top: auto;
    padding: 10px 18px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.path-highlight span {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}
/* ===== BOTTOM LINE BLOCK ===== */
.bottom-line-block {
    text-align: center;
    padding: 20px 0 0;
}
.bottom-line-text {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    line-height: 1.7;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.bottom-line-text:nth-child(2) {
    color: var(--primary);
}
.bottom-line-cta {
    margin-top: 40px;
    display: inline-flex;
    font-size: 17px;
}

@media (max-width: 768px) {
    .bottom-line-text {
        font-size: 22px;
    }
    .bottom-line-cta {
        margin-top: 28px;
        font-size: 15px;
    }
    .services {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        min-height: 500px !important;
        position: relative !important;
    }
    .services .container {
        width: 100% !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin: 0 auto !important;
        position: relative !important;
        z-index: 2 !important;
    }
    .bottom-line-block {
        padding: 0 !important;
        margin: 0 !important;
    }
}

/* ===== OFFER LIST ===== */
.offer-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 700px;
    margin: 0 auto;
}
.offer-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 0;
    position: relative;
}
.offer-item:last-child .offer-line {
    display: none;
}
.offer-line {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(to left, var(--primary), rgba(220,38,38,0.08));
}
[dir="ltr"] .offer-line {
    background: linear-gradient(to right, var(--primary), rgba(220,38,38,0.08));
}
.offer-number {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.2;
    min-width: 52px;
    text-align: center;
    line-height: 1;
    letter-spacing: -1px;
    transition: opacity 0.3s ease;
}
.offer-item:hover .offer-number {
    opacity: 0.5;
}
.offer-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}
.offer-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.offer-item:hover .offer-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(220,38,38,0.3);
}
.offer-content h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text);
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}
.offer-item:hover .offer-content h3 {
    color: var(--primary);
}

@media (max-width: 768px) {
    .offer-item {
        padding: 20px 0;
        gap: 14px;
    }
    .offer-number {
        font-size: 24px;
        min-width: 36px;
    }
    .offer-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
        border-radius: 10px;
    }
    .offer-content h3 {
        font-size: 15px;
    }
    .offer-content {
        gap: 12px;
    }
}

/* ===== WHY POLAND - VERTICAL EMOJI LAYOUT ===== */
.why-poland {
    background: #F7F7F8;
}
/* Poland Quote */
.poland-quote-center {
    text-align: center;
    max-width: 700px;
    margin: -20px auto 40px;
}
.poland-quote-center p {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary);
    line-height: 1.8;
    font-style: italic;
}
.poland-quote-center cite {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold);
    font-style: normal;
}

.poland-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 50px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}
.poland-emoji-points {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.poland-article-image {
    position: sticky;
    top: 100px;
}
/* ===== NEWSPAPER FLIPBOOK ===== */
.newspaper-flipbook {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
}
.newspaper-viewport {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
    min-height: 300px;
}
.newspaper-page {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}
.newspaper-page.active {
    position: relative;
    opacity: 1;
}
.newspaper-page img {
    width: 100%;
    height: auto;
    display: block;
}
.newspaper-nav-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 16px;
}
.newspaper-arrow {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--primary);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.3s ease;
}
.newspaper-arrow:hover {
    color: var(--text);
    transform: scale(1.15);
}
.newspaper-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}
.newspaper-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
.newspaper-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}
.poland-emoji-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: right;
    padding: 28px 20px;
    border-right: 3px solid transparent;
    border-radius: 0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.poland-emoji-item:hover {
    border-right-color: var(--primary);
    box-shadow: 4px 0 20px rgba(220,38,38,0.08);
}
[dir="ltr"] .poland-emoji-item {
    border-right: none;
    border-left: 3px solid transparent;
}
[dir="ltr"] .poland-emoji-item:hover {
    border-left-color: var(--primary);
    box-shadow: -4px 0 20px rgba(220,38,38,0.08);
}
[dir="ltr"] .poland-emoji-item { text-align: left; }
[dir="ltr"] .newspaper-prev i,
[dir="ltr"] .newspaper-next i { transform: scaleX(-1); }
[lang="en"] .newspaper-page:not(.active),
[lang="en"] .newspaper-nav-row { display: none !important; }
.poland-emoji-item.visible {
    opacity: 1;
    transform: translateY(0);
}
.poland-illustration {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    transition: transform 0.4s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    border-radius: 0;
}
.poland-emoji-item:hover .poland-illustration {
    transform: scale(1.15);
}
.poland-illustration i {
    font-size: 28px;
    color: var(--primary);
    transition: color 0.3s ease;
}
.poland-emoji-item:hover .poland-illustration i {
    color: var(--text);
}
.poland-item-text {
    flex: 1;
}
.poland-emoji-item h3 {
    font-family: var(--heading-font);
    font-size: 26px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 8px;
}
.poland-emoji-item p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.8;
}


/* ===== PROCESS - HORIZONTAL TIMELINE ===== */
.process-section {
    background: #FFFFFF;
    color: var(--text);
    position: relative;
    overflow: hidden;
}
.process-section .section-header h2 { color: var(--text) !important; }
.process-section .section-header h2 span:not(.word):not(.word-inner) { color: var(--primary) !important; }
.process-section .section-header p { color: var(--text-light); }
/* Snake Timeline */
.snake-timeline {
    position: relative;
    margin: 50px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 0;
}
/* Horizontal connecting line */
.snake-line {
    display: block;
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 0;
    border-top: 2px dashed rgba(220,38,38,0.3);
    z-index: 0;
}
.snake-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    z-index: 1;
}
.snake-dot {
    width: 42px;
    height: 42px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 3px solid #fff;
    box-shadow: 0 2px 10px rgba(220,38,38,0.2);
    flex-shrink: 0;
    margin-bottom: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.snake-dot:hover {
    transform: scale(1.25);
    box-shadow: 0 4px 16px rgba(220,38,38,0.35);
}
.snake-dot span {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: white;
}
.snake-card {
    background: #fff;
    border: 1px solid var(--light-gray);
    padding: 20px 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    width: calc(100% - 12px);
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
}
.snake-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}
.timeline-icon {
    width: auto;
    height: auto;
    background: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
    margin: 0;
}
.snake-card .timeline-header {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.snake-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0;
    color: #1A1A2E;
}
.snake-card p {
    font-size: 13px;
    color: #5A6578;
    line-height: 1.7;
}
@media (max-width: 992px) {
    .snake-timeline {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    .snake-line {
        display: none;
    }
    .snake-item {
        flex-direction: row;
        gap: 16px;
        width: 100%;
        max-width: 500px;
    }
    .snake-dot {
        margin-bottom: 0;
    }
    .snake-card {
        text-align: start;
        width: 100%;
    }
}

/* ===== UNIQUENESS ===== */
/* ===== OBJECTIONS SECTION ===== */
.objections {
    background: #F7F7F8;
    color: var(--text);
    position: relative;
    overflow: hidden;
}
.objections .container {
    position: relative;
    z-index: 1;
}
.faq-accordion {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 0;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.faq-item:hover {
    border-color: rgba(220,38,38,0.2);
}
.faq-item.open {
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border-color: var(--primary);
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--heading-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    line-height: 1.4;
    text-align: right;
    gap: 16px;
    transition: color 0.3s ease;
}
[dir="ltr"] .faq-question {
    text-align: left;
}
.faq-question:hover {
    color: var(--primary);
}
.faq-toggle {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(220,38,38,0.08);
    color: var(--primary);
    font-size: 14px;
    transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}
.faq-item.open .faq-toggle {
    transform: rotate(180deg);
    background: var(--primary);
    color: #fff;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px;
}
.faq-answer p {
    font-size: 15.5px;
    color: var(--text-light);
    line-height: 1.8;
}
@media (max-width: 768px) {
    .faq-question {
        padding: 18px 20px;
        font-size: 16px;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-item.open .faq-answer {
        padding: 0 20px 20px;
    }
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--off-white);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    display: none;
}
.cta-section::after {
    display: none;
}
[dir="ltr"] .cta-section::before { right: auto; left: -10%; }
[dir="ltr"] .cta-section::after { left: auto; right: -10%; }
@keyframes ctaGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}
.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}
.cta-content h2 {
    font-family: var(--heading-font);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 500;
    color: var(--text);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.cta-content h2 span { color: var(--primary); }
.cta-content p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== PROJECTS ===== */
.projects { background: #FFFFFF; }
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 100%;
    margin: 0 auto;
}
.project-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--light-gray);
}
.project-card:hover {
    border-color: var(--text);
    transition: border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-6px);
}
.project-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    aspect-ratio: 2/1;
    position: relative;
    overflow: hidden;
    background: #e0e0e0;
}
.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    background: #e0e0e0;
}
.project-card:hover .project-img { transform: scale(1.05); transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.project-img-wrap {
    overflow: hidden;
    width: 100%;
    height: 100%;
}
.project-before-slideshow,
.project-after-slideshow {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.project-before-slideshow .project-slide,
.project-after-slideshow .project-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    animation: slideshow-fade 12s infinite;
}
.project-before-slideshow .project-slide:nth-child(1),
.project-after-slideshow .project-slide:nth-child(1) {
    animation-delay: 0s;
}
.project-before-slideshow .project-slide:nth-child(2),
.project-after-slideshow .project-slide:nth-child(2) {
    animation-delay: -8s;
}
.project-before-slideshow .project-slide:nth-child(3),
.project-after-slideshow .project-slide:nth-child(3) {
    animation-delay: -4s;
}
@keyframes slideshow-fade {
    0%, 28% { opacity: 1; }
    33%, 95% { opacity: 0; }
    100% { opacity: 1; }
}
.project-label {
    position: absolute;
    top: 12px;
    padding: 4px 14px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.project-label.before {
    right: 12px;
    background: rgba(0,0,0,0.65);
}
.project-label.after {
    right: calc(50% + 12px);
    background: var(--primary);
}
[dir="ltr"] .project-label.before {
    right: auto;
    left: 12px;
}
[dir="ltr"] .project-label.after {
    right: auto;
    left: calc(50% + 12px);
}
.project-divider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: white;
    z-index: 2;
}
.project-info { padding: 20px 24px; }
.project-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}
.project-neighborhood {
    font-size: 14px;
    color: #000;
    font-weight: 500;
    margin-bottom: 8px;
}
.project-price {
    font-size: 13.5px;
    color: var(--primary);
    font-weight: 600;
    margin: 0;
}
.project-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
}
.project-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    align-items: start;
}
.project-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 6px 2px;
    background: transparent;
    border-radius: 0;
}
.project-stat .label {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.project-stat .value {
    font-size: 19px;
    font-weight: 700;
    color: var(--dark);
    font-family: 'Poppins', sans-serif;
    direction: ltr;
    unicode-bidi: isolate;
}
.project-stat .value.green { color: #2D8A4E; }

/* ===== HAPPY TENANTS ===== */
.happy-tenants {
    background: var(--off-white);
    overflow: hidden;
}
.tenants-slideshow {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid var(--light-gray);
}
.tenants-slideshow .tenant-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
}
.tenants-slideshow .tenant-slide:first-child {
    position: relative;
}
.tenants-slideshow .tenant-slide.active {
    opacity: 1;
    z-index: 1;
}
.tenant-img {
    width: 100%;
    height: auto;
    display: block;
}
.tenants-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}
.tenant-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
.tenant-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}
@media (max-width: 768px) {
    .tenants-slideshow { max-width: 100%; }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: #F7F7F8;
}
.wa-slideshow {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.wa-slides {
    position: relative;
    width: 360px;
    max-width: 100%;
}
.wa-slide {
    display: none;
}
.wa-slide.active {
    display: block;
    animation: waFadeIn 0.5s ease;
}
@keyframes waFadeIn {
    from { opacity: 0; transform: scale(0.97); }
    to { opacity: 1; transform: scale(1); }
}
/* Phone frame */
.wa-phone {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    background: #ECE5DD;
}
/* WhatsApp header */
.wa-header {
    background: #075E54;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.wa-header-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
}
.wa-header-info {
    display: flex;
    flex-direction: column;
}
.wa-header-name {
    color: #fff;
    font-weight: 600;
    font-size: 15px;
}
.wa-header-status {
    color: rgba(255,255,255,0.7);
    font-size: 12px;
}
/* Chat area */
.wa-chat {
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L35 10 L30 15' fill='none' stroke='%23d4cfc6' stroke-width='0.5' opacity='0.3'/%3E%3C/svg%3E") repeat;
    background-color: #ECE5DD;
    min-height: 220px;
}
/* Chat bubbles */
.wa-bubble {
    max-width: 82%;
    padding: 8px 12px 4px;
    border-radius: 8px;
    position: relative;
    font-size: 14px;
    line-height: 1.5;
    direction: rtl;
}
.wa-bubble p {
    margin: 0;
    color: #303030;
}
.wa-incoming {
    background: #fff;
    align-self: flex-end;
    border-top-right-radius: 0;
}
.wa-outgoing {
    background: #DCF8C6;
    align-self: flex-start;
    border-top-left-radius: 0;
}
.wa-time {
    display: block;
    text-align: left;
    font-size: 11px;
    color: #999;
    margin-top: 2px;
    direction: ltr;
}
.wa-outgoing .wa-time {
    text-align: right;
}
/* Dots */
.wa-dots {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}
.wa-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0,0,0,0.15);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
.wa-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}
@media (max-width: 768px) {
    .wa-slides {
        width: 300px;
    }
}

/* ===== LEGAL DISCLAIMER ===== */
.legal-disclaimer {
    background: #fff;
    color: var(--text);
    position: relative;
}
.legal-disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--light-gray);
    border-radius: 0;
    padding: 40px 45px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.legal-disclaimer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    text-align: center;
}
.legal-disclaimer-content p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 2;
    text-align: center;
}
.legal-disclaimer-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.legal-disclaimer-link:hover {
    text-decoration: underline;
    opacity: 0.85;
}
@media (max-width: 768px) {
    .legal-disclaimer-content { padding: 28px 22px; }
    .legal-disclaimer-title { font-size: 16px; }
    .legal-disclaimer-content p { font-size: 15px; line-height: 1.9; }
}

/* ===== CONTACT ===== */
.contact {
    background: #3A3A3A;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}
.contact .section-header {
    margin-bottom: 35px;
}
.contact .section-header h2 { color: var(--primary) !important; }
.contact .section-header h2 span:not(.word):not(.word-inner) { color: var(--primary) !important; }
.contact .section-header h2 span.contact-dark:not(.word):not(.word-inner) { color: #fff !important; }
.contact .contact-info-card h3 { color: #1A1A2E; }
.contact .section-header p { color: rgba(255,255,255,0.6); }
.contact .section-badge { color: rgba(255,255,255,0.7); }
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-group { position: relative; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 22px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 0;
    color: #1A1A2E;
    font-family: 'Heebo', sans-serif;
    font-size: 15px;
    transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease, box-shadow 0.4s ease;
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--text);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(44,40,37,0.08);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}
.form-group textarea { min-height: 120px; resize: vertical; }

/* Phone input with country prefix */
.phone-input-wrapper {
    display: flex;
    gap: 0;
}
.phone-prefix {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 0;
    color: #1A1A2E;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
    min-width: 110px;
    justify-content: center;
    position: relative;
    direction: ltr;
    align-self: stretch;
    min-height: 52px;
}
[dir="ltr"] .phone-prefix {
    order: -1;
    border-radius: 0;
}
.phone-prefix:hover {
    background: #f5f5f5;
}
.phone-prefix .prefix-flag {
    font-size: 18px;
    line-height: 1;
}
.phone-prefix .prefix-flag-img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}
.phone-prefix-display {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    width: 100%;
    height: 100%;
    padding: 0 15px;
    justify-content: center;
}
.phone-dropdown {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 180px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 0;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
    z-index: 100;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 300px;
    margin-bottom: 6px;
}
.phone-dropdown.open {
    display: block;
}
.phone-dropdown-option {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    cursor: pointer;
    transition: background 0.2s ease;
    color: #333;
    font-size: 12px;
    font-family: 'Heebo', sans-serif;
    direction: rtl;
    white-space: nowrap;
}
.phone-dropdown-option:hover {
    background: #f5f5f5;
}
.phone-dropdown-option.selected {
    background: rgba(44,40,37,0.06);
}
.phone-dropdown-option img {
    width: 16px;
    height: 12px;
    border-radius: 0;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
}
.phone-dropdown-option .option-code {
    margin-right: auto;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: #666;
    font-size: 12px;
}
[dir="ltr"] .phone-dropdown-option {
    direction: ltr;
}
[dir="ltr"] .phone-dropdown-option .option-code {
    margin-right: 0;
    margin-left: auto;
}
.phone-input-wrapper input {
    flex: 1;
    border-left: none !important;
    border-radius: 0 !important;
    direction: ltr;
    text-align: left;
}
.phone-input-wrapper input::placeholder {
    direction: rtl;
    text-align: right;
    font-family: 'Poppins', sans-serif;
}
[dir="ltr"] .phone-input-wrapper input::placeholder {
    direction: ltr;
    text-align: left;
}
[dir="ltr"] .phone-input-wrapper input {
    border-radius: 0 !important;
    border-left: none !important;
    border-right: 1px solid rgba(255,255,255,0.1) !important;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin-top: 3px;
    accent-color: var(--primary);
    cursor: pointer;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
    border: 2px solid rgba(255,255,255,0.4);
    background: transparent;
    position: relative;
}
.form-checkbox input[type="checkbox"]:checked {
    background: var(--primary);
    border-color: var(--primary);
}
.form-checkbox input[type="checkbox"]:checked::after {
    content: '\2713';
    color: #fff;
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
}
.form-checkbox input[type="checkbox"]:hover {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,0.1);
}
.form-checkbox input[type="checkbox"]:checked:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
}
.form-checkbox a { color: inherit; text-decoration: underline; font-weight: 600; }

/* Field validation errors */
.field-error {
    display: none;
    font-size: 12px;
    color: #e53935;
    margin-top: 4px;
    padding-right: 2px;
}
.form-group.invalid .field-error {
    display: block;
}
.form-group.invalid input,
.form-group.invalid textarea {
    border-color: #e53935 !important;
}
.form-group.valid input,
.form-group.valid textarea {
    border-color: #43a047 !important;
}
.btn-submit {
    background: #fff;
    color: var(--primary);
    padding: 16px 40px;
    border: 2px solid #fff;
    border-radius: 0;
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    position: relative;
    overflow: hidden;
}
.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}
.btn-submit:hover::before { left: 100%; }
.btn-submit:hover {
    background: #f0f0f0;
    border-color: #f0f0f0;
    transform: translateY(-2px);
}
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-info-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 0;
    padding: 30px;
    transition: background 0.4s ease, border-color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
}
.contact-info-card:hover {
    border-color: var(--text);
    background: #fff;
}
.contact-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1A1A2E;
    text-align: center;
}
.contact-details-centered {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}
.contact-detail-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}
.contact-detail-centered i {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 20px;
    transition: var(--transition);
}
.contact-detail-centered:hover i {
    background: rgba(255,255,255,0.15);
    color: white;
}
.contact-detail-centered .contact-label {
    font-size: 13px;
    color: #5A6578;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.contact-detail-centered .contact-value {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #1A1A2E;
}
.contact-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #1A1A2E;
    font-size: 15px;
    direction: ltr;
    text-align: left;
}
[dir="rtl"] .contact-detail.contact-detail-rtl {
    direction: rtl;
    text-align: right;
}
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: rgba(200,16,46,0.08);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    transition: var(--transition);
}
.contact-detail:hover i {
    background: var(--primary);
    color: #fff;
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: var(--dark);
    padding: 180px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--dark), transparent);
    pointer-events: none;
}
.page-header h1 {
    font-family: var(--heading-font);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}
.page-header p {
    font-size: 18px;
    color: rgba(255,255,255,0.5);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.page-header .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    font-size: 14px;
    color: rgba(255,255,255,0.35);
    position: relative;
    z-index: 1;
}
.page-header .breadcrumb a {
    color: #000;
    text-decoration: none;
    transition: var(--transition);
}
.page-header .breadcrumb a:hover { color: #333; }

/* ===== ABOUT PAGE ===== */
.about-intro {
    background: var(--white);
    padding: 100px 0;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-text h2 {
    font-family: var(--heading-font);
    font-size: 36px;
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 25px;
    line-height: 1.3;
}
.about-text h2 span { color: var(--primary); }
.about-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 20px;
}
.about-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-image:hover img { transform: scale(1.04); }
.about-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--dark);
}
.about-values {
    background: var(--off-white);
    padding: 100px 0;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}
.value-card {
    background: var(--white);
    padding: 50px 40px;
    border: 1px solid var(--light-gray);
    text-align: center;
    transition: border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.value-card:hover::before { width: 100%; }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-card .value-num {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--light-gray);
    margin-bottom: 15px;
    line-height: 1;
    transition: color 0.4s ease;
}
.value-card:hover .value-num { color: rgba(44,40,37,0.08); }
.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
}
.value-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}
.about-team {
    background: var(--white);
    padding: 100px 0;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.team-card {
    border: 1px solid var(--light-gray);
    transition: border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}
.team-card:hover {
    border-color: var(--dark);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.team-photo {
    height: 300px;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--text-light);
    overflow: hidden;
    position: relative;
}
.team-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44,40,37,0.6), transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.team-card:hover .team-photo::after { opacity: 0.5; }
.team-info {
    padding: 25px 30px;
}
.team-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}
.team-info .role {
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.team-info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
    background: #FFFFFF;
    color: var(--text-light);
    padding: 60px 0 0;
    border-top: 3px solid var(--primary);
}
.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}
.footer-brand .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Heebo', sans-serif;
    font-weight: 900;
    font-size: 20px;
    border-radius: 0;
    box-shadow: none;
}
.footer-brand .logo-svg {
    width: 300px;
    height: 46px;
    object-fit: contain;
    object-position: right center;
}
.footer-brand .logo-text {
    font-family: 'Heebo', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--text);
    letter-spacing: 1px;
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-light);
}
.footer-social {
    display: flex;
    gap: 12px;
}
.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 0;
    background: rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    font-size: 16px;
}
.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}
.footer-col h4 {
    color: var(--text);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}
.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-col ul a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: inline-block;
}
.footer-col ul a:hover { color: var(--primary-light); transform: translateX(-3px); }
[dir="ltr"] .footer-col ul a:hover { transform: translateX(3px); }
.footer-office h4 {
    color: var(--text);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}
.footer-office-detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-light);
}
.footer-office-detail i {
    color: var(--primary-light);
    margin-top: 4px;
    min-width: 16px;
}
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 25px 0;
    font-size: 13px;
    color: var(--text-light);
}
.footer-bottom-links {
    display: flex;
    gap: 25px;
}
.footer-bottom-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--primary-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .navbar { padding: 15px 30px; }
    .navbar.scrolled { padding: 10px 30px; }
    [dir="rtl"] .navbar .logo { left: 30px; }
    [dir="rtl"] .navbar .nav-actions { right: 30px; }
    section { padding: 60px 0; }
    .container { padding: 0 24px; }
    .hero h1 { font-size: 36px; }
    .hero-subtitle { font-size: 18px; }
    .stat-item h3 { font-size: 40px; }
    .paths-grid { gap: 30px; }
    .path-number { font-size: 44px; }
    .timeline-h-items { flex-wrap: wrap; gap: 20px; min-height: auto; }
    .timeline-h-item { max-width: 45%; min-width: 170px; }
    .timeline-h-item:nth-child(odd),
    .timeline-h-item:nth-child(even) { align-self: auto; padding-top: 0; padding-bottom: 0; flex-direction: column; }
    .timeline-h-item:nth-child(even) .timeline-h-dot { margin-top: 0; margin-bottom: 12px; }
    .timeline-h-line { display: none; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 24px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .projects-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-image { height: 350px; }
    .values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .poland-grid { grid-template-columns: 1fr; gap: 30px; }
    .poland-article-image { max-width: 350px; margin: 0 auto; position: static; }
    .poland-emoji-points { gap: 24px; }
    .question-item h2 { font-size: 26px; }
    .question-answer p { font-size: 22px; }
    .section-header h2 { font-size: clamp(26px, 5vw, 36px); }
    .newspaper-arrow { width: 44px; height: 44px; }
}

@media (max-width: 768px) {
    .navbar { padding: 12px 20px; background: rgba(255,255,255,0.98) !important; backdrop-filter: blur(20px); box-shadow: 0 1px 0 rgba(0,0,0,0.08); }
    .navbar.scrolled { padding: 10px 20px; }
    [dir="rtl"] .navbar .logo,
    [dir="rtl"] .navbar .nav-actions { position: static; transform: none; }
    [dir="rtl"] .navbar::before,
    [dir="rtl"] .navbar::after { display: none; }
    .navbar .logo-text { font-size: 17px; color: var(--dark) !important; }
    .navbar .logo-svg { width: 280px; height: auto; }
    .navbar .logo-light { display: none !important; }
    .navbar .logo-dark { display: block !important; }
    .navbar .nav-links, .nav-actions .nav-cta { display: none !important; }
    .mobile-toggle { display: flex; }
    .mobile-toggle span { background: var(--dark) !important; }
    .lang-switcher { display: none !important; }
    .navbar .nav-links.mobile-open {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        max-height: 100vh;
        background: #ffffff;
        padding: 80px 20px 24px;
        gap: 2px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        z-index: 999;
        overflow-y: auto;
        align-items: stretch;
        border-radius: 0;
        animation: slideInMenu 0.3s ease-out;
    }
    @keyframes slideInMenu {
        from { transform: translateX(100%); opacity: 0; }
        to { transform: translateX(0); opacity: 1; }
    }
    .navbar .nav-links.mobile-open li { list-style: none; }
    .navbar .nav-links.mobile-open a {
        color: var(--text) !important;
        font-size: 16px;
        display: block;
        padding: 14px 18px;
        border-radius: 0;
        text-decoration: none;
        font-weight: 500;
        transition: background 0.2s;
        line-height: 1.4;
        white-space: nowrap;
    }
    .navbar .nav-links.mobile-open a.nav-gold {
        color: var(--gold) !important;
        font-weight: 700;
    }
    .navbar .nav-links.mobile-open a.nav-gold:hover {
        color: #9A8258 !important;
        background: rgba(0,0,0,0.05);
    }
    .navbar .nav-links.mobile-open a:hover,
    .navbar .nav-links.mobile-open a.active { background: #f0f2f5; color: var(--primary) !important; }
    .navbar .nav-links.mobile-open a::after { display: none; }
    .navbar .nav-links.mobile-open .mobile-cta-item { display: list-item !important; }
    .navbar .nav-links.mobile-open .mobile-cta-item a {
        color: #c0392b !important;
        font-weight: 600;
        border: 1.5px solid #c0392b;
        border-radius: 0;
        text-align: center;
        margin-top: 6px;
        padding: 9px 14px;
        font-size: 13px;
    }
    .navbar .nav-links.mobile-open .mobile-cta-item a:hover {
        background: #c0392b;
        color: #fff !important;
    }
    .navbar .nav-links.mobile-open .mobile-lang-switcher {
        display: flex !important;
        justify-content: center;
        gap: 6px;
        padding: 12px 14px;
        border-top: 1px solid #eee;
        margin-top: 8px;
        list-style: none;
    }
    .navbar .nav-links.mobile-open .mobile-lang-switcher button {
        display: flex;
        align-items: center;
        gap: 4px;
        padding: 6px 10px;
        border: 1px solid #ddd;
        border-radius: 6px;
        background: #fff;
        cursor: pointer;
        font-size: 12px;
        font-family: 'Heebo', sans-serif;
        transition: background 0.2s;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .navbar .nav-links.mobile-open .mobile-lang-switcher button:hover,
    .navbar .nav-links.mobile-open .mobile-lang-switcher button.active {
        background: var(--primary);
        color: #fff;
        border-color: var(--primary);
    }
    .navbar .nav-links.mobile-open .mobile-lang-switcher button img {
        width: 18px;
        height: 13px;
        object-fit: cover;
        border-radius: 2px;
    }
    section { padding: 50px 0; }
    .container { padding: 0 20px; }
    .section-header { margin-bottom: 35px; }
    .section-header h2 { font-size: clamp(24px, 6vw, 36px); }
    .section-header p { font-size: 15px; }
    .hero { height: 100vh !important; height: 100svh !important; height: 100dvh !important; min-height: 100svh !important; }
    .hero-bg { object-position: center center; }
    .hero-particles { display: none; }
    .hero-scroll { display: inline-flex !important; flex-direction: row !important; align-items: center !important; justify-content: center !important; gap: 14px !important; bottom: 18px !important; line-height: 1 !important; white-space: nowrap !important; padding: 6px 10px !important; }
    .hero-scroll i { display: inline-block !important; margin: 0 !important; padding: 0 !important; font-size: 22px !important; line-height: 1 !important; }
    .hero h1 { font-size: clamp(56px, 16vw, 80px) !important; line-height: 1.05 !important; width: min-content !important; max-width: 100% !important; margin-left: auto !important; margin-right: auto !important; text-align: center !important; }
    html[lang="pl"] .hero h1 {
        font-size: clamp(38px, 11.5vw, 52px) !important;
        width: auto !important;
        max-width: 100% !important;
        padding: 0 12px !important;
        box-sizing: border-box !important;
        height: auto !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        hyphens: none !important;
    }
    html[lang="pl"] .hero h1 .word {
        display: block !important;
        overflow: visible !important;
        max-width: none !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
    }
    html[lang="pl"] .hero h1 .word-inner {
        max-width: none !important;
        word-break: normal !important;
        overflow-wrap: normal !important;
        white-space: nowrap !important;
    }
    .hero h1 .word, .hero h1 > span { display: block !important; }
    .hero-content { width: 100%; padding: 0 16px; }
    .hero-subtitle { font-size: 16px; }
    .hero-yield { font-size: 20px; margin-bottom: 25px; }
    .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
    .hero-buttons .btn-primary, .hero-buttons .btn-secondary { padding: 14px 30px; font-size: 15px; width: auto; white-space: nowrap; text-align: center; box-sizing: border-box; }
    .hero-decor { display: none; }
    .marquee-item { font-size: 14px; }
    .question-item h2 { font-size: 24px; }
    .question-item { margin-bottom: 30px; }
    .question-answer p { font-size: 22px; }
    .paths-grid { grid-template-columns: 1fr; gap: 24px; max-width: 380px; }
    .path-card { width: 100%; padding: 36px 24px 32px; }
    .path-card h3 { font-size: 19px; }
    .path-number { font-size: 44px; }
    .path-tagline { font-size: 13px; }
    .path-highlight { padding: 12px 16px; }
    .path-highlight span { font-size: 12px; }
    .poland-emoji-points { gap: 20px; }
    .poland-illustration { width: 60px; height: 60px; }
    .poland-illustration i { font-size: 26px; }
    .poland-emoji-item h3 { font-size: 18px; }
    .poland-emoji-item p { font-size: 14px; }
    .poland-emoji-item { padding: 20px 15px; }
    .timeline-horizontal { position: relative; }
    .timeline-h-items { flex-direction: column; align-items: center; min-height: auto; position: relative; }
    .timeline-h-item { max-width: 280px; min-width: unset; width: 100%; }
    .timeline-h-item:nth-child(odd),
    .timeline-h-item:nth-child(even) { align-self: auto; padding-top: 0; padding-bottom: 0; flex-direction: column; }
    .timeline-h-item:nth-child(even) .timeline-h-dot { margin-top: 0; margin-bottom: 12px; }
    .timeline-h-line {
        display: block;
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        right: auto;
        width: 0;
        height: 100%;
        background-image: none;
        border-left: 2px dashed rgba(255, 255, 255, 0.5);
        transform: translateX(-50%);
    }
    .projects-grid { grid-template-columns: 1fr; max-width: 100%; }
    .project-images { /* auto height from images */ }
    .project-info { padding: 16px 18px; }
    .project-info h3 { font-size: 18px; }
    .project-stats { grid-template-columns: repeat(3, 1fr); gap: 0; }
    .project-stat .label { font-size: 11px; }
    .project-stat .value { font-size: 16px; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 30px; }
    .contact-form { gap: 15px; }
    .form-group input, .form-group textarea { padding: 14px 18px; font-size: 14px; }
    .phone-prefix { min-width: 95px; font-size: 13px; }
    .phone-prefix .phone-prefix-display { padding: 0 10px; }
    .phone-dropdown { min-width: 140px; }
    .btn-submit { padding: 14px 30px; font-size: 15px; }
    .contact-info-card { padding: 20px; }
    .contact-info-card h3 { font-size: 17px; }
    .contact-detail { font-size: 14px; }
    .footer-main { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .stat-item h3 { font-size: 36px; }
    .stat-item:not(:last-child)::after { display: none; }
    .team-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .phone-input-wrapper { flex-direction: row; }
    .section-divider { padding: 15px 0; }
    .divider-line { width: 40px; }
    .intro-grid { grid-template-columns: 1fr; }
    .scroll-indicator { display: none; }
    .legal-box { padding: 20px 20px; font-size: 14px; }
    .about-text { padding: 0; }
    .values-grid { grid-template-columns: 1fr; }
    .about-image { height: 260px; }
    .contact-info-card { padding: 16px; }
    .tenants-section .slideshow-container { width: 100% !important; max-width: 100%; }
    .poland-emoji-points { gap: 16px; }
    .newspaper-arrow { width: 44px; height: 44px; }
}

@media (max-width: 420px) {
    .hero h1 { font-size: clamp(40px, 12vw, 56px); }
    .hero-subtitle { font-size: 14px; }
    .hero-yield { font-size: 18px; }
    .btn-primary, .btn-secondary { padding: 12px 24px; font-size: 14px; }
    .section-header h2 { font-size: 22px; }
    .path-card h3 { font-size: 17px; }
    .path-card { padding: 28px 18px 28px; }
    .path-number { font-size: 36px; }
    .path-icon { font-size: 18px; }
    .path-tagline { font-size: 12.5px; }
    .path-highlight { padding: 10px 14px; gap: 8px; }
    .path-highlight span { font-size: 11.5px; }
    .question-item h2 { font-size: 20px; }
    .question-answer p { font-size: 18px; }
    .project-stat .value { font-size: 15px; }
    .project-stat .label { font-size: 10px; }
    .phone-prefix { min-width: 85px; font-size: 12px; }
    .phone-prefix .phone-prefix-display { padding: 0 8px; }
    .navbar { padding: 12px 15px; }
    .navbar.scrolled { padding: 8px 15px; }
    .navbar .logo-text { font-size: 16px; }
    .navbar .logo-svg { width: 220px; height: auto; }
    .contact-info-card { padding: 15px; border-radius: 0; }
    .stat-item h3 { font-size: 28px; }
    .stats-grid { grid-template-columns: 1fr; }
    .container { padding: 0 15px; }
    section { padding: 40px 0; }
    .hero { min-height: 500px; }
    .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width: auto; white-space: nowrap; text-align: center; }
    .timeline-h-item { max-width: 100%; }
    .nav-links.mobile-open { width: 100%; }
    .footer-main { gap: 20px; }
    .section-header { margin-bottom: 25px; }
    .phone-input-wrapper { flex-direction: row; }
    .phone-prefix { min-width: 80px; font-size: 11px; }
    .poland-emoji-points { gap: 12px; }
    .question-answer p { font-size: 16px; }
}

/* ===== ACCESSIBILITY WIDGET ===== */
.accessibility-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(220,38,38,0.3);
    cursor: pointer;
    z-index: 1200;
    transition: var(--transition);
    font-size: 22px;
}
.accessibility-btn:hover {
    background: #a01525;
    color: #fff;
    transform: translateY(-2px);
}
.accessibility-panel {
    position: fixed;
    top: 0;
    right: -360px;
    width: 340px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 40px rgba(0,0,0,0.2);
    z-index: 1300;
    padding: 0;
    direction: inherit;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
}
.accessibility-panel.open {
    right: 0;
}
.acc-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--dark);
    color: #fff;
}
.acc-panel-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.acc-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}
.acc-close:hover {
    background: rgba(255,255,255,0.2);
}
.accessibility-panel .acc-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 20px 24px;
}
.accessibility-panel .acc-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 8px;
    border: 2px solid #e5e7eb;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    text-align: center;
}
.accessibility-panel .acc-option:hover {
    border-color: var(--primary);
    background: rgba(44,40,37,0.03);
}
.accessibility-panel .acc-option.active {
    border-color: var(--primary);
    background: rgba(44,40,37,0.06);
    color: var(--primary);
}
.accessibility-panel .acc-option i {
    font-size: 22px;
    color: var(--primary);
}
.accessibility-panel .acc-reset {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px;
    padding: 12px;
    border: 2px solid var(--primary);
    border-radius: 0;
    background: #fff;
    cursor: pointer;
    font-family: 'Heebo', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    transition: var(--transition);
}
.accessibility-panel .acc-reset:hover {
    background: var(--primary);
    color: #fff;
}
.accessibility-panel .acc-link {
    display: block;
    text-align: center;
    margin: 16px 24px 24px;
    font-size: 14px;
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}
/* Accessibility overlay */
.acc-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1299;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.acc-overlay.open {
    opacity: 1;
    visibility: visible;
}
/* Accessibility modes */
body.acc-increase-text { zoom: 1.15; }
body.acc-decrease-text { zoom: 0.9; }
body.acc-high-contrast > *:not(.accessibility-btn):not(.accessibility-panel):not(.whatsapp-btn):not(.acc-overlay) { filter: contrast(1.5) !important; }
body.acc-grayscale > *:not(.accessibility-btn):not(.accessibility-panel):not(.whatsapp-btn):not(.acc-overlay) { filter: grayscale(1) !important; }
body.acc-highlight-links a { outline: 2px solid #C41E3A !important; outline-offset: 2px !important; }
body.acc-readable-font, body.acc-readable-font * { font-family: Arial, Helvetica, sans-serif !important; }
body.acc-big-cursor, body.acc-big-cursor * { cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Ccircle cx='20' cy='20' r='18' fill='%23FFD700' stroke='%23000' stroke-width='2'/%3E%3Ccircle cx='20' cy='20' r='4' fill='%23000'/%3E%3C/svg%3E") 20 20, auto !important; }
body.acc-line-height * { line-height: 2.2 !important; }
body.acc-stop-animations *, body.acc-stop-animations *::before, body.acc-stop-animations *::after { animation: none !important; transition: none !important; }
body.acc-dark-mode {
    background: #1a1a1a;
    color: #e0e0e0;
}
body.acc-dark-mode *:not(.accessibility-panel):not(.accessibility-panel *):not(.accessibility-btn):not(.whatsapp-btn):not(.navbar):not(.navbar *) {
    background-color: inherit;
    color: inherit;
}
body.acc-dark-mode section,
body.acc-dark-mode .hero,
body.acc-dark-mode footer {
    background-color: #1a1a1a !important;
}
body.acc-dark-mode .objections,
body.acc-dark-mode .testimonials,
body.acc-dark-mode .why-poland {
    background-color: #111 !important;
}
body.acc-dark-mode .snake-card,
body.acc-dark-mode .faq-item,
body.acc-dark-mode .legal-disclaimer-content,
body.acc-dark-mode .wa-phone {
    background-color: #222 !important;
    border-color: #333 !important;
}
body.acc-dark-mode .wa-chat {
    background-color: #1a1a1a !important;
}
body.acc-dark-mode h1, body.acc-dark-mode h2, body.acc-dark-mode h3, body.acc-dark-mode h4 {
    color: #f0f0f0 !important;
}
body.acc-dark-mode p, body.acc-dark-mode span, body.acc-dark-mode li {
    color: #ccc !important;
}
body.acc-dark-mode .navbar {
    background: #111 !important;
}
body.acc-dark-mode .navbar .nav-links a {
    color: #e0e0e0 !important;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1200;
    transition: var(--transition);
    text-decoration: none;
}
.whatsapp-btn:hover {
    background: #128C7E;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
[dir="ltr"] .whatsapp-btn {
    right: auto;
    left: 20px;
}
[dir="ltr"] .accessibility-btn {
    right: auto;
    left: 20px;
}
[dir="ltr"] .accessibility-panel {
    right: auto;
    left: -360px;
    box-shadow: 5px 0 40px rgba(0,0,0,0.2);
    transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
[dir="ltr"] .accessibility-panel.open {
    left: 0;
}

/* ===== MOBILE FIXES FOR RED THEME ===== */
@media (max-width: 768px) {
    .services { margin-top: 0; margin-bottom: 0; }
    .services::before, .services::after { height: 30px; top: -30px; }
    .services::after { top: auto; bottom: -30px; }
    .contact { margin-top: 0; }
    .contact::before { height: 30px; top: -30px; }
    .parallax-quote { height: 250px; }
}

/* ===== MOBILE ACCESSIBILITY PANEL ===== */
@media (max-width: 420px) {
    .accessibility-panel { width: 280px; right: -300px; }
    [dir="ltr"] .accessibility-panel { left: -300px; }
}

/* ===== GLOBAL MOBILE IMAGE SAFETY ===== */
img { max-width: 100%; height: auto; }
