/* =====================================================
   Eliano Umzug - Visual Effects & Depth
   Mavi tonlarda, degrade yok. Yalniz golge, transform ve animasyon.
   ===================================================== */

/* ===== KEYFRAMES ===== */
@keyframes ev-fade-up {
    from { opacity: 0; transform: translate3d(0, 24px, 0); }
    to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes ev-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes ev-fade-left {
    from { opacity: 0; transform: translate3d(-28px, 0, 0); }
    to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes ev-fade-right {
    from { opacity: 0; transform: translate3d(28px, 0, 0); }
    to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes ev-scale-in {
    from { opacity: 0; transform: scale(0.92); }
    to   { opacity: 1; transform: scale(1); }
}
@keyframes ev-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}
@keyframes ev-pulse-ring {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
    70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes ev-shimmer {
    0%   { background-position: -120% 0; }
    100% { background-position: 220% 0; }
}
@keyframes ev-spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===== REVEAL CLASSES (scroll-trigger) ===== */
.reveal {
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.reveal-up    { transform: translate3d(0, 28px, 0); }
.reveal-down  { transform: translate3d(0, -28px, 0); }
.reveal-left  { transform: translate3d(-32px, 0, 0); }
.reveal-right { transform: translate3d(32px, 0, 0); }
.reveal-scale { transform: scale(0.94); }

.reveal.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

/* Stagger children */
.stagger > *.reveal { transition-delay: 0s; }
.stagger > *:nth-child(2).reveal { transition-delay: 0.08s; }
.stagger > *:nth-child(3).reveal { transition-delay: 0.16s; }
.stagger > *:nth-child(4).reveal { transition-delay: 0.24s; }
.stagger > *:nth-child(5).reveal { transition-delay: 0.32s; }
.stagger > *:nth-child(6).reveal { transition-delay: 0.4s; }
.stagger > *:nth-child(7).reveal { transition-delay: 0.48s; }
.stagger > *:nth-child(8).reveal { transition-delay: 0.56s; }

/* ===== HEADER DEPTH ===== */
.site-header {
    backdrop-filter: saturate(180%) blur(6px);
    -webkit-backdrop-filter: saturate(180%) blur(6px);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 1px 0 rgba(11, 74, 143, 0.06), 0 6px 20px -8px rgba(11, 74, 143, 0.12);
    transition: box-shadow 0.3s ease, background-color 0.3s ease;
}
.site-header.is-scrolled {
    box-shadow: 0 1px 0 rgba(11, 74, 143, 0.08), 0 10px 28px -10px rgba(11, 74, 143, 0.22);
}

/* Nav links smooth underline */
.nav-menu a:not(.nav-cta) {
    position: relative;
}
.nav-menu a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 2px;
    background: var(--blue-primary);
    transform: scaleX(0);
    transform-origin: right center;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 2px;
}
.nav-menu a:not(.nav-cta):hover::after,
.nav-menu a:not(.nav-cta).active::after {
    transform: scaleX(1);
    transform-origin: left center;
}

/* ===== HERO DEPTH ===== */
.hero {
    position: relative;
}
.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 80px;
    background:
        radial-gradient(ellipse at center top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 100%),
        rgba(11, 74, 143, 0);
    /* no gradient color - just spacing element, kept transparent */
    pointer-events: none;
    z-index: 2;
}
.hero-bg {
    transition: transform 18s linear;
    transform: scale(1.05);
}
.hero:hover .hero-bg,
.hero.is-ready .hero-bg {
    transform: scale(1.1);
}
.hero h1, .hero p, .hero-actions, .hero-badges {
    animation: ev-fade-up 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero p { animation-delay: 0.1s; }
.hero-actions { animation-delay: 0.2s; }
.hero-badges { animation-delay: 0.35s; }
.hero-badge {
    transition: transform 0.3s ease;
}
.hero-badge:hover {
    transform: translateY(-3px);
}
.hero-badge i {
    transition: transform 0.3s ease;
}
.hero-badge:hover i {
    transform: scale(1.15) rotate(-5deg);
}

/* ===== SECTION HEADER ACCENT ===== */
.section-header .eyebrow {
    position: relative;
    padding: 0 14px;
}
.section-header .eyebrow::before,
.section-header .eyebrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 28px;
    height: 2px;
    background: var(--blue-primary);
    opacity: 0.5;
    border-radius: 2px;
    transform: translateY(-50%);
}
.section-header .eyebrow::before { right: 100%; }
.section-header .eyebrow::after  { left: 100%; }

/* ===== FEATURE CARD DEPTH ===== */
.feature-card {
    position: relative;
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(11, 74, 143, 0.04),
        0 2px 8px rgba(11, 74, 143, 0.05);
    transition:
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.3s ease;
}
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 0 var(--blue-primary);
    transition: box-shadow 0.35s ease;
    pointer-events: none;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 1px 2px rgba(11, 74, 143, 0.06),
        0 12px 28px -8px rgba(11, 74, 143, 0.22),
        0 28px 60px -20px rgba(11, 74, 143, 0.15);
}
.feature-card:hover::before {
    box-shadow: inset 0 0 0 1px rgba(11, 74, 143, 0.15);
}
.feature-card .feature-icon {
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, color 0.3s ease;
}
.feature-card:hover .feature-icon {
    transform: rotateY(360deg) scale(1.05);
    background: var(--blue-primary);
    color: #fff;
}

/* ===== SERVICE CARD DEPTH ===== */
.service-card {
    position: relative;
    box-shadow:
        0 1px 2px rgba(11, 74, 143, 0.04),
        0 4px 12px rgba(11, 74, 143, 0.06);
    transition:
        transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 2px 4px rgba(11, 74, 143, 0.06),
        0 18px 40px -10px rgba(11, 74, 143, 0.25),
        0 40px 80px -20px rgba(11, 74, 143, 0.18);
}
.service-card-image::before {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 -60px 60px -40px rgba(7, 51, 102, 0.45);
    pointer-events: none;
    z-index: 1;
    transition: box-shadow 0.4s ease;
}
.service-card:hover .service-card-image::before {
    box-shadow: inset 0 -80px 80px -40px rgba(7, 51, 102, 0.6);
}
.service-card-icon {
    z-index: 2;
    box-shadow: 0 4px 12px rgba(11, 74, 143, 0.35);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover .service-card-icon {
    transform: rotate(-8deg) scale(1.08);
}
.service-card-link {
    position: relative;
}
.service-card-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 22px;
    bottom: -3px;
    height: 2px;
    background: var(--blue-primary);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card-link:hover::after {
    transform: scaleX(1);
}

/* ===== ABOUT IMAGE ===== */
.about-image {
    box-shadow:
        0 4px 12px rgba(11, 74, 143, 0.08),
        0 24px 60px -16px rgba(11, 74, 143, 0.28);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-image:hover {
    transform: translateY(-4px) rotate(-0.4deg);
}
.about-image img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-image:hover img {
    transform: scale(1.05);
}
.about-stats {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    box-shadow: 0 6px 18px -4px rgba(11, 74, 143, 0.2);
}
.about-image:hover .about-stats {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px -8px rgba(11, 74, 143, 0.3);
}
.about-list li {
    transition: transform 0.25s ease, color 0.25s ease;
}
.about-list li:hover {
    transform: translateX(4px);
    color: var(--blue-primary);
}
.about-list li:hover i {
    transform: scale(1.2);
}
.about-list i {
    transition: transform 0.3s ease;
}

/* ===== PROCESS STEPS ===== */
.process-grid {
    counter-reset: step;
}
.process-step {
    transition:
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s ease,
        border-color 0.3s ease;
    box-shadow: 0 1px 2px rgba(11, 74, 143, 0.04);
}
.process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px -8px rgba(11, 74, 143, 0.22);
    border-color: var(--blue-light);
}
.process-step-num {
    box-shadow: 0 6px 14px -4px rgba(11, 74, 143, 0.4);
    transition: transform 0.35s ease;
}
.process-step:hover .process-step-num {
    transform: scale(1.1) rotate(8deg);
}
.process-step-icon {
    transition: transform 0.4s ease;
}
.process-step:hover .process-step-icon {
    transform: translateY(-3px);
}

/* ===== STATS - COUNTER ANIMATION ===== */
.section-dark .stat-item strong {
    position: relative;
    display: inline-block;
}
.section-dark .stat-item.in-view strong {
    animation: ev-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.section-dark .stat-item {
    transition: transform 0.4s ease;
}
.section-dark .stat-item:hover {
    transform: translateY(-4px);
}
.section-dark {
    position: relative;
    overflow: hidden;
}
.section-dark::before {
    content: '';
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: rgba(74, 144, 217, 0.07);
    top: -160px;
    right: -120px;
    pointer-events: none;
}
.section-dark::after {
    content: '';
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(74, 144, 217, 0.05);
    bottom: -160px;
    left: -80px;
    pointer-events: none;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    transition:
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s ease;
    box-shadow:
        0 1px 2px rgba(11, 74, 143, 0.04),
        0 2px 8px rgba(11, 74, 143, 0.06);
}
.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 2px 4px rgba(11, 74, 143, 0.08),
        0 14px 32px -8px rgba(11, 74, 143, 0.22);
}
.testimonial-card::before {
    transition: transform 0.4s ease, color 0.3s ease;
}
.testimonial-card:hover::before {
    transform: scale(1.15) rotate(-8deg);
    color: var(--blue-light);
}
.testimonial-stars i {
    display: inline-block;
    transform-origin: center;
    animation: ev-scale-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.testimonial-stars i:nth-child(2) { animation-delay: 0.05s; }
.testimonial-stars i:nth-child(3) { animation-delay: 0.1s; }
.testimonial-stars i:nth-child(4) { animation-delay: 0.15s; }
.testimonial-stars i:nth-child(5) { animation-delay: 0.2s; }

.testimonial-avatar {
    box-shadow: 0 4px 10px -2px rgba(11, 74, 143, 0.25);
    transition: transform 0.35s ease;
}
.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.08);
}

/* ===== GALLERY ===== */
.gallery-item {
    box-shadow:
        0 1px 3px rgba(11, 74, 143, 0.06),
        0 4px 12px rgba(11, 74, 143, 0.08);
    transition:
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s ease;
}
.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow:
        0 6px 16px rgba(11, 74, 143, 0.12),
        0 24px 40px -12px rgba(11, 74, 143, 0.25);
    z-index: 2;
}
.gallery-item img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.gallery-item-overlay i {
    transform: scale(0.5);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gallery-item:hover .gallery-item-overlay i {
    transform: scale(1);
}

/* ===== CITIES ===== */
.city-tag {
    transition:
        transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 1px 2px rgba(11, 74, 143, 0.03);
}
.city-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px -6px rgba(11, 74, 143, 0.25);
}
.city-tag i {
    transition: transform 0.3s ease;
}
.city-tag:hover i {
    transform: scale(1.2) rotate(-10deg);
}

/* ===== FAQ ===== */
.faq-item {
    box-shadow: 0 1px 2px rgba(11, 74, 143, 0.04);
    transition: box-shadow 0.3s ease, transform 0.25s ease;
}
.faq-item:hover {
    box-shadow: 0 4px 12px rgba(11, 74, 143, 0.08);
}
.faq-item.open {
    box-shadow: 0 8px 20px -8px rgba(11, 74, 143, 0.18);
    border-color: var(--blue-light);
}
.faq-question {
    transition: background-color 0.25s ease, color 0.25s ease;
}
.faq-item.open .faq-question {
    color: var(--blue-primary);
}

/* ===== FORMS ===== */
.form-control {
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
}
.form-control:hover {
    border-color: var(--blue-light);
}
.form-control:focus {
    box-shadow:
        0 0 0 4px rgba(11, 74, 143, 0.1),
        0 2px 8px -2px rgba(11, 74, 143, 0.18);
}

/* ===== BUTTONS ===== */
.btn {
    position: relative;
    overflow: hidden;
    transition:
        transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.3s ease,
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
    will-change: transform;
}
.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    transform: translate(-50%, -50%);
    transition: width 0.55s ease, height 0.55s ease;
    pointer-events: none;
}
.btn:hover::before {
    width: 320px;
    height: 320px;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn:active {
    transform: translateY(0);
    transition-duration: 0.05s;
}
.btn-primary {
    box-shadow: 0 4px 12px -2px rgba(11, 74, 143, 0.35);
}
.btn-primary:hover {
    box-shadow: 0 10px 24px -4px rgba(11, 74, 143, 0.5);
}
.btn-whatsapp {
    box-shadow: 0 4px 12px -2px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp:hover {
    box-shadow: 0 10px 24px -4px rgba(37, 211, 102, 0.55);
}
.btn-outline::before { background: rgba(11, 74, 143, 0.08); }

/* ===== CTA BOX ===== */
.cta-box {
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 24px -8px rgba(7, 51, 102, 0.35),
        0 24px 60px -20px rgba(7, 51, 102, 0.45);
}
.cta-box::before,
.cta-box::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}
.cta-box::before {
    width: 360px;
    height: 360px;
    top: -180px;
    right: -120px;
}
.cta-box::after {
    width: 280px;
    height: 280px;
    bottom: -140px;
    left: -100px;
}
.cta-box > * {
    position: relative;
    z-index: 1;
}

/* ===== PAGE BANNER ===== */
.page-banner {
    position: relative;
    overflow: hidden;
}
.page-banner::before {
    content: '';
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: rgba(74, 144, 217, 0.08);
    top: -260px;
    right: -180px;
    pointer-events: none;
}
.page-banner h1, .page-banner .breadcrumb {
    animation: ev-fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
    position: relative;
    z-index: 1;
}
.page-banner .breadcrumb { animation-delay: 0.1s; }

/* ===== SERVICE DETAIL ===== */
.service-detail-content {
    box-shadow:
        0 1px 3px rgba(11, 74, 143, 0.04),
        0 8px 24px -8px rgba(11, 74, 143, 0.1);
}
.service-detail-content ul li {
    transition: transform 0.25s ease, color 0.25s ease;
}
.service-detail-content ul li:hover {
    transform: translateX(4px);
    color: var(--blue-primary);
}
.service-detail-image {
    box-shadow:
        0 6px 16px rgba(11, 74, 143, 0.1),
        0 24px 48px -16px rgba(11, 74, 143, 0.25);
    transition: transform 0.5s ease;
}
.service-detail-image:hover {
    transform: scale(1.01);
}
.sidebar-widget {
    box-shadow: 0 1px 3px rgba(11, 74, 143, 0.05);
    transition: box-shadow 0.3s ease;
}
.sidebar-widget:hover {
    box-shadow: 0 6px 16px -4px rgba(11, 74, 143, 0.12);
}
.sidebar-services a {
    transition: background-color 0.25s ease, color 0.25s ease, padding-left 0.25s ease;
}
.sidebar-services a:hover {
    padding-left: 18px;
}

/* ===== FLOATING BUTTONS ===== */
.floating-actions {
    pointer-events: none;
}
.floating-actions > * {
    pointer-events: auto;
}
.floating-btn {
    transition:
        transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.3s ease;
    box-shadow:
        0 6px 16px -2px rgba(0, 0, 0, 0.18),
        0 12px 32px -8px rgba(0, 0, 0, 0.22);
}
.floating-btn:hover {
    transform: scale(1.12) rotate(-4deg);
    box-shadow:
        0 8px 22px -2px rgba(0, 0, 0, 0.22),
        0 18px 40px -12px rgba(0, 0, 0, 0.3);
}
.floating-whatsapp {
    animation: ev-float 3.2s ease-in-out infinite;
    position: relative;
}
.floating-whatsapp::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: ev-pulse-ring 2s ease-out infinite;
    pointer-events: none;
}
.floating-phone {
    animation: ev-float 3.2s ease-in-out infinite;
    animation-delay: -1.6s;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.08),
        0 24px 56px -16px rgba(11, 74, 143, 0.25);
    transform: translateY(140%);
    opacity: 0;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.55s ease;
}
.cookie-banner.show {
    transform: translateY(0);
    opacity: 1;
}

/* ===== FOOTER ===== */
.site-footer {
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(74, 144, 217, 0.05);
    top: -300px;
    right: -200px;
    pointer-events: none;
}
.footer-col a {
    transition: color 0.25s ease, padding-left 0.25s ease;
}
.footer-social a {
    transition:
        background-color 0.25s ease,
        transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
}
.footer-social a:hover {
    transform: translateY(-4px) scale(1.05);
}

/* ===== CALCULATOR ===== */
.calculator-box {
    box-shadow:
        0 4px 12px -2px rgba(11, 74, 143, 0.08),
        0 16px 40px -12px rgba(11, 74, 143, 0.18);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.calculator-result {
    animation: ev-scale-in 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== IMAGE/CARD ENTRANCE FOR HERO ELEMENTS ===== */
.feature-icon, .service-card-icon, .process-step-num {
    transition-property: transform, background-color, color, box-shadow;
}

/* ===== ENHANCED FOCUS STATES (a11y) ===== */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.form-control:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(11, 74, 143, 0.18),
        0 0 0 5px rgba(11, 74, 143, 0.4) !important;
}

/* ===== SCROLLBAR (modern, mavi) ===== */
@media (pointer: fine) {
    ::-webkit-scrollbar { width: 12px; height: 12px; }
    ::-webkit-scrollbar-track { background: var(--bg-light); }
    ::-webkit-scrollbar-thumb {
        background: var(--blue-light);
        border: 3px solid var(--bg-light);
        border-radius: 8px;
        transition: background 0.2s ease;
    }
    ::-webkit-scrollbar-thumb:hover { background: var(--blue-primary); }
}

/* ===== TOPBAR LANG SWITCH ===== */
.topbar-lang a {
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.topbar-lang a:hover {
    transform: translateY(-1px);
}

/* ===== TEXT SELECTION ===== */
::selection {
    background: var(--blue-primary);
    color: #fff;
}

/* ===== SECTION ENTRANCE ===== */
.section-header.reveal {
    transition-duration: 0.85s;
}

/* ===== MOBILE TUNING ===== */
@media (max-width: 768px) {
    /* Reduce transform intensities on mobile */
    .feature-card:hover, .service-card:hover, .process-step:hover,
    .testimonial-card:hover, .gallery-item:hover, .city-tag:hover {
        transform: translateY(-3px);
    }
    /* Disable backdrop-blur on mobile for perf */
    .site-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: #ffffff;
    }
}
