/* ===== RESET & BASE (Mobile-First) ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --orange-start: #f7931e;
    --orange-end: #f9a825;
    --text-orange-dark: #c06000;
    /* Darker orange for accessible text (4.5:1+) */
    --gold: #ffd54f;
    --dark: #1a1a2e;
    --dark-blue: #16213e;
    --accent-blue: #0f3460;
    --text-light: #e8e8e8;
    --text-white: #ffffff;
    --bg-section-alt: #f5f0e8;
    --bg-section: #ffffff;
    --wood-brown: #8B6914;
    --wood-light: #D4A843;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Heebo', sans-serif;
    direction: rtl;
    text-align: right;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    background: #fff;
    position: relative;
}

/* ===== ACCESSIBILITY: SKIP LINK ===== */
.skip-link {
    position: absolute;
    top: -9999px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--dark);
    color: var(--gold);
    padding: 10px 20px;
    z-index: 99999;
    text-decoration: none;
    font-weight: bold;
    border-radius: 0 0 10px 10px;
    transition: top 0.3s;
}

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

/* ===== FLOATING CALL BUTTON ===== */
.floating-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    animation: floatingBtnEntry 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 1s forwards;
}

.floating-cta-label {
    display: none;
}

.floating-cta-btn {
    position: relative;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-start), var(--orange-end), var(--gold));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(247, 147, 30, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.floating-cta-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(247, 147, 30, 0.7);
}

.floating-cta-btn svg {
    width: 28px;
    height: 28px;
    fill: white;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
    animation: phoneShake 2s ease-in-out infinite 2.5s;
}

/* Persistent ring animation around the button */
.floating-cta-btn::before,
.floating-cta-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid rgba(247, 147, 30, 0.6);
    animation: pulseRing 2s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.floating-cta-btn::after {
    animation-delay: 1s;
}

@keyframes floatingBtnEntry {
    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

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

@keyframes pulseRing {
    0% {
        width: 62px;
        height: 62px;
        opacity: 0.8;
    }

    100% {
        width: 110px;
        height: 110px;
        opacity: 0;
    }
}

@keyframes phoneShake {

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

    10% {
        transform: rotate(-12deg);
    }

    20% {
        transform: rotate(12deg);
    }

    30% {
        transform: rotate(-10deg);
    }

    40% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(0deg);
    }
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-blue) 50%, var(--accent-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 16px;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(247, 147, 30, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(249, 168, 37, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background: repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255, 255, 255, 0.5) 40px, rgba(255, 255, 255, 0.5) 41px);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
    padding: 0 8px;
    padding-top: 50px;
    padding-bottom: 100px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--orange-start), var(--gold));
    color: var(--dark);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease 0.3s forwards;
}

.hero h1 {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, var(--orange-start), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.7s forwards;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 0.9s forwards;
    width: 100%;
    /* Ensure container takes width */
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Center content */
    gap: 8px;
    /* Slightly reduced gap */
    padding: 12px 20px;
    /* Reduced padding for mobile */
    background: linear-gradient(135deg, var(--orange-start), var(--orange-end), var(--gold));
    color: var(--dark);
    font-family: 'Heebo', sans-serif;
    font-size: 15px;
    /* Slightly smaller font */
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(247, 147, 30, 0.4);
    max-width: 100%;
    /* Prevent overflow */
    white-space: nowrap;
    /* Try to keep on one line */
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 30px rgba(247, 147, 30, 0.6);
}

.btn-primary svg {
    width: 20px;
    /* Slightly smaller icon */
    height: 20px;
    min-width: 20px;
    /* Prevent icon shrinking */
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    /* Adjusted to match */
    background: transparent;
    color: var(--text-white);
    font-family: 'Heebo', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    width: auto;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(255, 213, 79, 0.05);
}

.hero-stats {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease 1.1s forwards;
}

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

.hero-stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--orange-start), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
}

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

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 24px;
    /* left: 50%; */
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.5s forwards;
}

.scroll-indicator .mouse {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    position: relative;
    margin: 0 auto 6px;
}

.scroll-indicator .mouse::before {
    content: '';
    width: 4px;
    height: 7px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {

    0%,
    100% {
        opacity: 0;
        top: 6px;
    }

    50% {
        opacity: 1;
        top: 18px;
    }
}

.scroll-indicator span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 50px 16px;
}

.section-alt {
    background: var(--bg-section-alt);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-header .tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.1), rgba(249, 168, 37, 0.1));
    color: var(--text-orange-dark);
    /* Fixed contrast */
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 14px;
    border: 1px solid rgba(247, 147, 30, 0.2);
}

.section-header h2 {
    font-size: 1.5rem;
    /* Reduced from 1.6rem */
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 0.9rem;
    /* Reduced from 0.95rem */
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ===== SPLIDE OVERRIDES (RTL) ===== */
.splide {
    direction: rtl;
}

.splide__track {
    overflow: hidden;
}

.splide__list {
    padding: 10px 0 !important
}

.splide__arrows {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 24px;
}

.splide__arrow {
    background: linear-gradient(135deg, var(--orange-start), var(--gold)) !important;
    opacity: 1 !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    position: static !important;
    transform: none !important;
    box-shadow: 0 3px 12px rgba(247, 147, 30, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.splide__arrow:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 5px 20px rgba(247, 147, 30, 0.5);
}

.splide__arrow svg {
    fill: var(--text-white) !important;
    width: 20px !important;
    height: 20px !important;
}

.splide__pagination {
    bottom: -2em;
}

.splide__pagination__page {
    background: rgba(0, 0, 0, 0.15) !important;
    width: 10px !important;
    height: 10px !important;
    transition: all 0.3s ease !important;
}

.splide__pagination__page.is-active {
    background: var(--orange-start) !important;
    transform: scale(1.3) !important;
}

/* Swipe hint indicator */
.splide-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    color: #999;
    font-size: 0.85rem;
    animation: swipeHint 2s ease-in-out infinite;
}

.splide-hint svg {
    width: 20px;
    height: 20px;
    fill: #999;
}

@keyframes swipeHint {

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

    50% {
        transform: translateX(-8px);
        opacity: 1;
    }
}

/* ===== SERVICES SECTION (Splide Slider) ===== */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.08), transparent);
    border-radius: 0 20px 0 80px;
}

.service-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--orange-start), var(--gold));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.service-icon svg {
    width: 26px;
    height: 26px;
    fill: white;
}

.service-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
}

/* ===== PALLETS CATALOG (Splide Slider) ===== */
.pallet-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
}

.pallet-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.pallet-image {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #e8d5b7, #d4a843);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.pallet-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(0deg, transparent, transparent 18px, rgba(139, 105, 20, 0.15) 18px, rgba(139, 105, 20, 0.15) 20px);
}

.pallet-image svg {
    width: 56px;
    height: 56px;
    fill: rgba(139, 105, 20, 0.4);
    z-index: 1;
}

.pallet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.pallet-info {
    padding: 20px;
}

.pallet-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.pallet-size {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.1), rgba(249, 168, 37, 0.1));
    color: var(--text-orange-dark);
    /* Fixed contrast */
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
    border: 1px solid rgba(247, 147, 30, 0.15);
}

.pallet-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-orange-dark);
    /* Fixed contrast */
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.pallet-cta:hover {
    gap: 12px;
}

.pallet-cta svg {
    width: 18px;
    height: 18px;
    fill: var(--text-orange-dark);
    /* Fixed contrast */
    transform: scaleX(-1);
}

/* ===== ADVANTAGES ===== */
.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.advantage-card {
    text-align: center;
    padding: 32px 20px;
    background: white;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.advantage-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.1), rgba(249, 168, 37, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.advantage-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--text-orange-dark);
    /* Fixed contrast */
}

.advantage-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.advantage-card p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

/* ===== SERVICE AREAS ===== */
.areas-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-blue) 100%);
    color: white;
}

.areas-section .section-header h2 {
    color: white;
}

.areas-section .section-header p {
    color: rgba(255, 255, 255, 0.6);
}

.areas-section .tag {
    background: rgba(247, 147, 30, 0.15);
    border-color: rgba(247, 147, 30, 0.3);
}

.areas-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.area-tag {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.area-tag:hover {
    background: rgba(247, 147, 30, 0.15);
    border-color: var(--orange-start);
    color: var(--gold);
}

/* ===== CONTACT & INFO SECTION ===== */
.contact-section {
    background: var(--bg-section-alt);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
}

.contact-info-card {
    background: white;
    border-radius: 24px;
    padding: 28px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-info-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 24px;
    text-align: center;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    margin-bottom: 28px;
}

.contact-item-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.1), rgba(249, 168, 37, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--text-orange-dark);
    /* Fixed contrast */
}

.contact-item-text h4 {
    font-size: 0.8rem;
    color: #999;
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-item-text p,
.contact-item-text a {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item-text a:hover {
    color: var(--text-orange-dark);
    /* Fixed contrast */
}


.hours-grid {
    margin-top: 8px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    gap: 18px;
    flex-wrap: wrap;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
}

.hours-time {
    direction: ltr;
    color: #666;
    white-space: nowrap;
}

.hours-closed {
    color: #e74c3c;
    font-weight: 600;
}

/* Navigation links (inline, subtle) */
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--text-orange-dark);
    /* Fixed contrast */
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--orange-end);
}

.nav-link svg {
    width: 14px;
    height: 14px;
    fill: var(--text-orange-dark);
    /* Fixed contrast */
    transition: fill 0.3s ease;
}

.nav-link:hover svg {
    fill: var(--orange-end);
}

.nav-divider {
    color: #ccc;
    font-size: 0.8rem;
    user-select: none;
}

/* Contact CTA Card */
.contact-cta-card {
    background: linear-gradient(135deg, var(--dark), var(--dark-blue));
    border-radius: 24px;
    padding: 32px 20px;
    color: white;
    text-align: center;
}

.contact-cta-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.contact-cta-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    line-height: 1.7;
}

.contact-cta-card .btn-primary {
    font-size: 18px;
    padding: 16px 36px;
}

.contact-phones {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    transition: color 0.3s;
}

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

.phone-link svg {
    width: 20px;
    height: 20px;
    fill: var(--gold);
}


/* ===== REVIEWS SECTION ===== */
.reviews-section {
    background: linear-gradient(135deg, rgba(247, 147, 30, 0.03), rgba(249, 168, 37, 0.03));
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.review-stars svg {
    width: 18px;
    height: 18px;
    fill: #f9a825;
}

.review-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange-start), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.review-author-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.review-author-info span {
    font-size: 0.75rem;
    color: #999;
}

.review-cta {
    text-align: center;
    margin-top: 45px;
}

.btn-review {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: white;
    color: var(--dark);
    font-family: 'Heebo', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-review:hover {
    border-color: var(--text-orange-dark);
    /* Fixed contrast */
    color: var(--text-orange-dark);
    /* Fixed contrast */
    box-shadow: 0 4px 15px rgba(247, 147, 30, 0.2);
}

.btn-review svg {
    width: 20px;
    height: 20px;
    fill: var(--text-orange-dark);
    /* Fixed contrast */
}

.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 28px 16px;
    font-size: 0.85rem;
}

.footer strong {
    color: var(--gold);
}

.footer__author {
    margin-top: 10px;
    font-size: 12px;
    color: var(--text-white);
}

.footer__author a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
}

.footer__author a:hover {
    color: var(--orange-start);
    /* On dark background, orange start is acceptable */
}

/* ===== SCROLL ANIMATIONS ===== */
.anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-fade-right {
    opacity: 0;
    transform: translateX(20px);
    /* Reduced for mobile */
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-fade-left {
    opacity: 0;
    transform: translateX(-20px);
    /* Reduced for mobile */
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-scale-in {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-rotate-in {
    opacity: 0;
    transform: perspective(800px) rotateY(15deg) translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-visible {
    opacity: 1 !important;
    transform: none !important;
}

/* Stagger delay utility */
.anim-delay-1 {
    transition-delay: 0.1s;
}

.anim-delay-2 {
    transition-delay: 0.2s;
}

.anim-delay-3 {
    transition-delay: 0.3s;
}

.anim-delay-4 {
    transition-delay: 0.4s;
}

.anim-delay-5 {
    transition-delay: 0.5s;
}

/* ===== ACCESSIBILITY ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================================
   TABLET BREAKPOINT (min-width: 600px)
   ============================================================ */
@media (min-width: 600px) {
    .hero h1 {
        font-size: 2.6rem;
    }

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

    .hero-cta-group {
        flex-direction: row;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: row;
        gap: 40px;
    }

    .hero-stat-number {
        font-size: 2.3rem;
    }

    .section {
        padding: 70px 20px;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

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

    .contact-info-card {
        padding: 36px;
    }

    .contact-cta-card {
        padding: 36px;
    }

}

/* ============================================================
   TABLET LANDSCAPE / SMALL LAPTOP BREAKPOINT (min-width: 768px)
   ============================================================ */
@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    /* Restore Contact Card text alignment for Desktop */
    .contact-info-card h3 {
        text-align: right;
    }

    .contact-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: right;
        margin-bottom: 22px;
    }

    .nav-links {
        justify-content: flex-start;
    }

    .hours-row {
        gap: 20px;
    }
}

/* ============================================================
   DESKTOP BREAKPOINT (min-width: 992px)
   ============================================================ */
@media (min-width: 992px) {
    .floating-cta {
        bottom: 30px;
        left: 30px;
    }

    .floating-cta-label {
        display: block;
        background: rgba(0, 0, 0, 0.85);
        color: #fff;
        padding: 8px 16px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 600;
        white-space: nowrap;
        opacity: 0;
        transform: translateX(-20px);
        animation: labelSlideIn 0.5s ease 1.8s forwards;
        pointer-events: none;
    }

    .floating-cta-btn {
        width: 68px;
        height: 68px;
    }

    .floating-cta-btn::before,
    .floating-cta-btn::after {
        width: 68px;
        height: 68px;
    }

    @keyframes pulseRing {
        0% {
            width: 68px;
            height: 68px;
            opacity: 0.8;
        }

        100% {
            width: 120px;
            height: 120px;
            opacity: 0;
        }
    }

    .hero h1 {
        font-size: clamp(2.8rem, 5vw, 4rem);
    }

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

    .btn-primary {
        padding: 16px 36px;
        font-size: 18px;
    }

    .btn-secondary {
        padding: 16px 36px;
        font-size: 18px;
    }

    .section {
        padding: 80px 20px;
    }

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

    .section-header h2 {
        font-size: clamp(2rem, 4vw, 2.8rem);
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .advantages-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .contact-grid {
        gap: 40px;
    }

    .contact-info-card {
        padding: 40px;
    }

    .contact-cta-card {
        padding: 40px;
    }

    .contact-cta-card h3 {
        font-size: 1.8rem;
    }

    .contact-cta-card .btn-primary {
        font-size: 20px;
        padding: 18px 44px;
    }

    /* Stronger animation offset for desktop only */
    .anim-fade-right {
        transform: translateX(50px);
    }

    .anim-fade-left {
        transform: translateX(-50px);
    }

}

/* ============================================================
   CUSTOM ANIMATIONS FOR REVIEWS SECTION (Spectacular Entrance)
   ============================================================ */

/* Wrapper for the staggered heading to allow word spacing */
.staggered-heading {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.3em;
    perspective: 1000px;
}

/* Initial state for each word */
.staggered-heading span {
    display: inline-block;
    opacity: 0;
    transform: translateY(50px) scale(0.5) rotateX(-45deg);
    filter: blur(10px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, opacity, filter;
}

/* Triggered state (when .special-header gets .anim-visible from JS) */
.special-header.anim-visible .staggered-heading span {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0);
    filter: blur(0);
}

/* Add delays for stagger effect */
.special-header.anim-visible .staggered-heading span:nth-child(1) {
    transition-delay: 0.1s;
}

.special-header.anim-visible .staggered-heading span:nth-child(2) {
    transition-delay: 0.25s;
}

.special-header.anim-visible .staggered-heading span:nth-child(3) {
    transition-delay: 0.4s;
}

.special-header.anim-visible .staggered-heading span:nth-child(4) {
    transition-delay: 0.55s;
}

/* Subtitle Animation Override */
.special-header p {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.8s;
    /* Start after heading finishes */
}

/* Trigger Subtitle */
.special-header.anim-visible p {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ACCESSIBILITY WIDGET ===== */
.accessibility-wrapper {
    position: fixed;
    top: 50%;
    /* Center vertically */
    transform: translateY(-50%);
    right: 0;
    z-index: 10000;
}

.accessibility-btn {
    width: 45px;
    height: 45px;
    background: #0072b1;
    color: white;
    border: none;
    border-radius: 5px 0 0 5px;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.accessibility-btn:hover {
    width: 50px;
    background: #005f94;
}

.accessibility-btn svg {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 1.5;
}

.accessibility-menu {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: -300px;
    /* Hidden by default */
    width: 280px;
    background: white;
    box-shadow: -5px 5px 20px rgba(0, 0, 0, 0.15);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
    border-radius: 5px 0 0 5px;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
    border: 1px solid #eee;
}

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

.accessibility-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.accessibility-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

#accessibility-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

#accessibility-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

.accessibility-options {
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    overflow-y: auto;
}

.acc-option-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 5px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    color: #444;
    font-size: 0.9rem;
}

.acc-option-btn:hover {
    background: #f0f7ff;
    border-color: #0072b1;
    color: #0072b1;
}

.acc-option-btn.active {
    background: #0072b1;
    color: white;
    border-color: #0072b1;
}

.acc-option-btn.active .acc-icon {
    color: white;
    border-color: white;
    filter: brightness(0) invert(1);
}

/* Specifically for SVG inside active button */
.acc-option-btn.active .acc-icon svg {
    stroke: white;
    fill: white;
}


.acc-option-btn.full-width {
    grid-column: span 2;
    flex-direction: row;
    padding: 10px;
}

.acc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    font-weight: bold;
    font-size: 1.2rem;
}

.text-large {
    font-size: 1.4rem;
}

.text-small {
    font-size: 0.9rem;
}

.contrast-icon {
    width: 20px;
    height: 20px;
    background: black;
    border: 2px solid #333;
    border-radius: 50%;
}

.negative-icon {
    width: 20px;
    height: 20px;
    background: black;
    border: 2px solid #333;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
}

.negative-icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 20px;
    background: white;
}

.light-icon {
    width: 20px;
    height: 20px;
    background: #f5f5f5;
    border: 2px solid #ccc;
    border-radius: 50%;
}


/* ===== ACCESSIBILITY STATES ===== */

#main-content {
    background-color: #fff;
    width: 100%;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Grayscale */
body.acc-grayscale #main-content,
body.acc-grayscale .floating-cta,
body.acc-grayscale .accessibility-wrapper {
    filter: grayscale(100%);
}

/* High Contrast */
body.acc-high-contrast #main-content,
body.acc-high-contrast .floating-cta,
body.acc-high-contrast .accessibility-wrapper {
    filter: contrast(130%);
}

.acc-high-contrast #main-content {
    background-color: #000;
    color: #fff;
}

.acc-high-contrast section,
.acc-high-contrast .hero,
.acc-high-contrast footer,
.acc-high-contrast .contact-info-card,
.acc-high-contrast .advantage-card,
.acc-high-contrast .service-card,
.acc-high-contrast .pallet-card,
.acc-high-contrast .review-card,
.acc-high-contrast .btn-review {
    background: #000 !important;
    background-image: none !important;
    color: #fff !important;
    box-shadow: none !important;
    border: 1px solid #fff !important;
}

.acc-high-contrast h1,
.acc-high-contrast h2,
.acc-high-contrast h3,
.acc-high-contrast h4,
.acc-high-contrast p,
.acc-high-contrast span,
.acc-high-contrast a:not(.btn-primary):not(.btn-secondary) {
    color: #ffff00 !important;
}

.acc-high-contrast .btn-primary,
.acc-high-contrast .floating-cta-btn {
    background: #ffff00 !important;
    color: #000 !important;
    box-shadow: none !important;
}

.acc-high-contrast svg {
    fill: #ffff00 !important;
}

.acc-high-contrast .btn-primary svg,
.acc-high-contrast .floating-cta-btn svg {
    fill: #000 !important;
}

.acc-high-contrast .hero-stat-number {
    background: none;
    -webkit-text-fill-color: #ffff00;
    color: #ffff00;
}

.acc-high-contrast .splide__pagination__page {
    background: #fff !important;
    opacity: 0.7;
}

.acc-high-contrast .splide__pagination__page.is-active {
    background: #ffff00 !important;
    opacity: 1;
}

/* Accessibility Menu High Contrast Fixes */
.acc-high-contrast .accessibility-menu,
.acc-high-contrast .accessibility-header,
.acc-high-contrast .acc-option-btn {
    background: #000 !important;
    border-color: #fff !important;
    color: #fff !important;
}

.acc-high-contrast .acc-option-btn:hover {
    background: #333 !important;
    border-color: #ffff00 !important;
}

.acc-high-contrast .acc-option-btn.active {
    background: #ffff00 !important;
    color: #000 !important;
    border-color: #fff !important;
}

.acc-high-contrast .acc-option-btn.active span {
    color: #000 !important;
}

.acc-high-contrast .acc-option-btn.active .acc-icon svg {
    fill: #000 !important;
    stroke: #000 !important;
}

.acc-high-contrast .acc-option-btn.active .acc-icon {
    filter: none !important;
    border-color: #000 !important;
    color: #000 !important;
}

.acc-high-contrast .acc-option-btn.active .acc-icon.contrast-icon,
.acc-high-contrast .acc-option-btn.active .acc-icon.negative-icon {
    background: #000 !important;
    border-color: #000 !important;
}

.acc-high-contrast .acc-option-btn.active .acc-icon.contrast-icon {
    border: 2px solid #000 !important;
}

.acc-high-contrast #accessibility-close {
    color: #ffff00 !important;
}

.acc-high-contrast #accessibility-close:hover {
    background: #333 !important;
}


/* Negative Contrast */
body.acc-negative-contrast #main-content,
body.acc-negative-contrast .floating-cta,
body.acc-negative-contrast .accessibility-wrapper {
    filter: invert(100%);
}

.acc-negative-contrast img {
    filter: invert(100%);
    /* Revert images */
}

/* Light Background */
.acc-light-bg #main-content,
.acc-light-bg section,
.acc-light-bg .hero,
.acc-light-bg .areas-section,
.acc-light-bg .footer {
    background: #ffffff !important;
    background-image: none !important;
    color: #222 !important;
}

.acc-light-bg h1,
.acc-light-bg h2,
.acc-light-bg h3,
.acc-light-bg h4,
.acc-light-bg h5,
.acc-light-bg h6,
.acc-light-bg p,
.acc-light-bg li,
.acc-light-bg dt,
.acc-light-bg dd,
.acc-light-bg span {
    color: #000 !important;
}

.acc-light-bg .btn-secondary {
    color: #000 !important;
    border-color: #000 !important;
}

.acc-light-bg .btn-secondary:hover {
    background: rgba(0, 0, 0, 0.05) !important;
}

/* Contact CTA Card Fix */
.acc-light-bg .contact-cta-card {
    background: #f4f4f4 !important;
    background-image: none !important;
    border: 2px solid #ccc !important;
    box-shadow: none !important;
    color: #000 !important;
}

.acc-light-bg .contact-cta-card p {
    color: #333 !important;
}

.acc-light-bg .contact-cta-card .phone-link {
    color: #0056b3 !important;
}

.acc-light-bg .contact-cta-card .phone-link svg {
    fill: #0056b3 !important;
}

/* Footer Fix */
.acc-light-bg .footer {
    background: #e9e9e9 !important;
    color: #000 !important;
    border-top: 1px solid #ccc;
}

.acc-light-bg .footer p,
.acc-light-bg .footer strong,
.acc-light-bg .footer span {
    color: #000 !important;
}

.acc-light-bg .footer__author {
    color: #444 !important;
}

.acc-light-bg .footer__author a {
    color: #0056b3 !important;
}

/* Other Element Fixes */
.acc-light-bg .hero-subtitle,
.acc-light-bg .hero-stat-label,
.acc-light-bg .section-header p {
    color: #333 !important;
}

.acc-light-bg .area-tag {
    background: #f0f0f0 !important;
    color: #000 !important;
    border-color: #999 !important;
}

.acc-light-bg .area-tag:hover {
    background: var(--orange-start) !important;
    color: white !important;
    border-color: var(--orange-start) !important;
}

.acc-light-bg .scroll-indicator span {
    color: #000 !important;
}

.acc-light-bg .scroll-indicator .mouse {
    border-color: #000 !important;
}

.acc-light-bg .scroll-indicator .mouse::before {
    background: #000 !important;
}

.acc-light-bg .floating-cta-label {
    background: #f0f0f0 !important;
    color: #000 !important;
    border: 1px solid #999 !important;
}

/* Highlight Links */
.acc-highlight-links a {
    text-decoration: underline !important;
    background: yellow !important;
    color: black !important;
}

.acc-highlight-links .btn-primary,
.acc-highlight-links .btn-secondary {
    text-decoration: none !important;
    border: 2px solid black !important;
}

/* Readable Font */
.acc-readable-font * {
    font-family: Arial, Helvetica, sans-serif !important;
    letter-spacing: 0.5px !important;
}

/* Focus styles for accessibility */
*:focus-visible {
    outline: 3px solid #0072b1 !important;
    outline-offset: 2px !important;
}

/* Stop Animations */
body.stop-animations *,
body.stop-animations *::before,
body.stop-animations *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
}

/* Force visibility for elements that rely on entry animations */
body.stop-animations .hero-badge,
body.stop-animations .hero h1,
body.stop-animations .hero-subtitle,
body.stop-animations .hero-cta-group,
body.stop-animations .hero-stats,
body.stop-animations .scroll-indicator,
body.stop-animations .floating-cta,
body.stop-animations .staggered-heading span,
body.stop-animations .special-header p {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

/* Specific fix for floating CTA to ensure it's not scaled to 0 */
body.stop-animations .floating-cta {
    transform: scale(1) rotate(0deg) !important;
}/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: 20px;
    margin: 0 auto;
    max-width: 600px;
    background: var(--dark);
    color: var(--text-white);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    z-index: 10000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(100px);
    opacity: 0;
    animation: slideUp 0.5s ease forwards 1s;
}

@media (min-width: 600px) {
    .cookie-banner {
        flex-direction: row;
        text-align: right;
    }
}

.cookie-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-content a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-content a:hover {
    color: var(--orange-start);
}

.btn-cookie-accept {
    background: linear-gradient(135deg, var(--orange-start), var(--gold));
    color: var(--dark);
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s;
}

.btn-cookie-accept:hover {
    transform: scale(1.05);
}

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

.footer-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--orange-start);
}
