/* =============================================================
   NOVAPEX - Kurumsal Web Sitesi
   Ana stil dosyası
   ============================================================= */

:root {
    --navy:        #142F3E;
    --navy-2:      #1C3D4D;
    --navy-3:      #0F2532;
    --red:         #E8472D;
    --red-hover:   #C93B23;
    --white:       #FFFFFF;
    --muted:       #D7E0E5;
    --muted-2:     #9FB1BC;
    --border:      rgba(255,255,255,0.10);

    --radius:      14px;
    --radius-sm:   8px;
    --shadow:      0 20px 40px -20px rgba(0,0,0,.55);
    --shadow-sm:   0 8px 20px -12px rgba(0,0,0,.5);

    --transition:  200ms cubic-bezier(.4,.0,.2,1);

    --font-head:   'Manrope', 'Segoe UI', Arial, sans-serif;
    --font-body:   'Inter', 'Segoe UI', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--white);
    background: var(--navy);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

h1,h2,h3,h4,h5 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 .6em;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.35rem; }
p  { margin: 0 0 1em; color: var(--muted); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 860px; }

.eyebrow {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: .8rem;
}

.lead { font-size: 1.125rem; color: var(--muted); max-width: 62ch; }

.skip-link {
    position: absolute; left: -9999px; top: 0; padding: 10px 16px;
    background: var(--red); color: #fff; z-index: 9999; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ================ HEADER ================ */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(20,47,62,.85);
    backdrop-filter: saturate(140%) blur(12px);
    -webkit-backdrop-filter: saturate(140%) blur(12px);
    border-bottom: 1px solid var(--border);
    transition: padding var(--transition), background var(--transition);
}
.site-header.is-scrolled { background: rgba(15,37,50,.95); }

.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; padding: 18px 24px;
    transition: padding var(--transition);
}
.site-header.is-scrolled .header-inner { padding: 10px 24px; }

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo { height: 34px; width: auto; }
.site-header.is-scrolled .brand-logo { height: 28px; }

.main-nav ul {
    list-style: none; margin: 0; padding: 0;
    display: flex; gap: 6px; align-items: center;
}
.main-nav a {
    display: inline-block; padding: 10px 14px;
    font-size: .96rem; font-weight: 500; color: var(--muted);
    border-radius: var(--radius-sm); position: relative;
}
.main-nav a:hover { color: var(--white); background: rgba(255,255,255,.05); }
.main-nav a.active { color: var(--white); }
.main-nav a.active::after {
    content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
    height: 2px; background: var(--red); border-radius: 2px;
}

.nav-toggle {
    display: none; background: transparent; border: 0; padding: 10px;
    cursor: pointer; width: 44px; height: 44px;
}
.nav-toggle span {
    display: block; width: 24px; height: 2px; background: #fff; margin: 5px auto;
    transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================ BUTTONS ================ */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; padding: 14px 26px; font-family: var(--font-head);
    font-weight: 600; font-size: .98rem; border-radius: 999px;
    border: 2px solid transparent; cursor: pointer;
    transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
    text-align: center; line-height: 1; user-select: none;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }

.btn-primary { background: var(--red); color: #fff; box-shadow: 0 10px 30px -12px rgba(232,71,45,.65); }
.btn-primary:hover { background: var(--red-hover); color: #fff; }

.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,.07); color:#fff; }

.btn-ghost { background: rgba(255,255,255,.06); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.12); color:#fff; }

.btn-sm  { padding: 10px 18px; font-size: .88rem; }
.btn-lg  { padding: 16px 32px; font-size: 1.05rem; }
.btn-cta-header { padding: 11px 20px; font-size: .9rem; }

/* ================ SECTIONS ================ */
.section     { padding: 96px 0; }
.section-alt { background: var(--navy-3); }

.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head p { color: var(--muted); }

/* ================ HERO ================ */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(20,47,62,.88) 0%, rgba(20,47,62,.72) 45%, rgba(20,47,62,.55) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 120px 24px; max-width: 900px; }
.hero-content h1, .hero-content h2 { color: #fff; margin-bottom: 20px; font-size: clamp(2rem, 4.4vw, 3.6rem); line-height: 1.08; font-family: var(--font-head); font-weight: 800; }
.hero-content .lead { color: var(--muted); margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero-phone { color: var(--muted); font-size: 1.05rem; }
.hero-phone a { color: #fff; font-weight: 700; font-size: 1.25rem; margin-left: 8px; border-bottom: 2px solid var(--red); }
.hero-phone a:hover { color: var(--red); }

/* ---------- Hero Slider ---------- */
.hero-slider { position: relative; min-height: 88vh; overflow: hidden; background: var(--navy-3); }
.hero-slides { position: relative; width: 100%; min-height: 88vh; }
.hero-slide {
    position: absolute; inset: 0;
    display: flex; align-items: center;
    opacity: 0; visibility: hidden;
    transition: opacity 900ms cubic-bezier(.4,0,.2,1), visibility 0s linear 900ms;
}
.hero-slide.is-active { opacity: 1; visibility: visible; transition: opacity 900ms cubic-bezier(.4,0,.2,1); z-index: 1; }
.hero-slide .hero-bg img { transform: scale(1.08); transition: transform 8000ms ease-out; }
.hero-slide.is-active .hero-bg img { transform: scale(1); }
.hero-slide .hero-content > * { opacity: 0; transform: translateY(20px); transition: opacity 700ms ease, transform 700ms ease; }
.hero-slide.is-active .hero-content > * { opacity: 1; transform: none; }
.hero-slide.is-active .hero-content > *:nth-child(1) { transition-delay: 250ms; }
.hero-slide.is-active .hero-content > *:nth-child(2) { transition-delay: 380ms; }
.hero-slide.is-active .hero-content > *:nth-child(3) { transition-delay: 500ms; }
.hero-slide.is-active .hero-content > *:nth-child(4) { transition-delay: 620ms; }
.hero-slide.is-active .hero-content > *:nth-child(5) { transition-delay: 740ms; }

.hero-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 5;
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(20,47,62,.55); color: #fff;
    border: 1px solid rgba(255,255,255,.25);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    font-size: 1.9rem; line-height: 1;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.hero-nav:hover { background: var(--red); border-color: var(--red); transform: translateY(-50%) scale(1.06); }
.hero-nav:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }
.hero-prev { left: 24px; }
.hero-next { right: 24px; }
.hero-prev span, .hero-next span { display: block; margin-top: -3px; }

.hero-dots {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    z-index: 5; display: flex; gap: 10px;
    padding: 8px 14px; border-radius: 999px;
    background: rgba(20,47,62,.4); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.hero-dot {
    width: 34px; height: 4px; border-radius: 4px;
    background: rgba(255,255,255,.35); border: 0; cursor: pointer;
    transition: background var(--transition), width var(--transition);
}
.hero-dot:hover { background: rgba(255,255,255,.6); }
.hero-dot.is-active { background: var(--red); width: 48px; }
.hero-dot:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; }

@media (max-width: 720px) {
    .hero-slider, .hero-slides { min-height: 80vh; }
    .hero-nav { width: 42px; height: 42px; font-size: 1.5rem; }
    .hero-prev { left: 10px; } .hero-next { right: 10px; }
    .hero-dots { bottom: 18px; }
    .hero-dot { width: 24px; } .hero-dot.is-active { width: 36px; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide, .hero-slide .hero-bg img, .hero-slide .hero-content > * { transition: none !important; }
    .hero-slide .hero-bg img { transform: none; }
}
    position: absolute; inset: 0;
    background: linear-gradient(115deg, rgba(15,37,50,.92) 0%, rgba(20,47,62,.75) 55%, rgba(20,47,62,.4) 100%);
}
.hero-content { position: relative; z-index: 1; padding: 120px 24px; max-width: 900px; }
.hero-content h1 { color: #fff; margin-bottom: 20px; }
.hero-content .lead { color: var(--muted); margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero-phone { color: var(--muted); font-size: 1.05rem; }
.hero-phone a { color: #fff; font-weight: 700; font-size: 1.25rem; margin-left: 8px; border-bottom: 2px solid var(--red); }
.hero-phone a:hover { color: var(--red); }

/* ================ CARD GRID ================ */
.card-grid {
    display: grid; gap: 28px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.card {
    background: var(--navy-2); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow-sm);
    display: flex; flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid rgba(255,255,255,.04);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-media { display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--navy-3); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.card-body h3 { color: #fff; }
.card-body p  { color: var(--muted); flex: 1; }
.link-arrow { color: var(--red); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.link-arrow:hover span { transform: translateX(4px); }
.link-arrow span { transition: transform var(--transition); display: inline-block; }

/* ================ SPLIT ================ */
.split {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}
.split-reverse .split-media { order: 2; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3; object-fit: cover; }

.feature-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; }
.feature-list.two-col { grid-template-columns: 1fr 1fr; }
.feature-list li { color: var(--muted); position: relative; padding-left: 22px; }
.feature-list li::before {
    content: ""; position: absolute; left: 0; top: .55em;
    width: 10px; height: 10px; border-left: 2px solid var(--red); border-bottom: 2px solid var(--red);
    transform: rotate(-45deg);
}

/* ================ FEATURE GRID (Neden NOVAPEX) ================ */
.feature-grid { display: grid; gap: 28px; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.feature-item {
    background: var(--navy-2); border-radius: var(--radius); padding: 32px;
    border: 1px solid rgba(255,255,255,.04);
    transition: transform var(--transition), border-color var(--transition);
}
.feature-item:hover { transform: translateY(-4px); border-color: var(--red); }
.feature-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(232,71,45,.15); color: var(--red);
    display: grid; place-items: center; font-size: 1.4rem; font-weight: 700;
    margin-bottom: 18px;
}
.feature-item h3 { color: #fff; font-size: 1.1rem; }
.feature-item p  { color: var(--muted); font-size: .95rem; margin: 0; }

/* ================ PROCESS ================ */
.process-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 28px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); counter-reset: proc; }
.process-list li { background: var(--navy-2); padding: 32px 24px; border-radius: var(--radius); border-left: 4px solid var(--red); }
.step-num { display: block; color: var(--red); font-family: var(--font-head); font-weight: 800; font-size: 1.6rem; margin-bottom: 8px; }
.process-list h3 { color: #fff; font-size: 1.1rem; }
.process-list p  { color: var(--muted); font-size: .95rem; margin: 0; }

/* ================ GALLERY ================ */
.gallery-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.gallery-item { position: relative; margin: 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--navy-2); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 18px 20px; color: #fff; font-weight: 600;
    background: linear-gradient(0deg, rgba(15,37,50,.9) 0%, rgba(15,37,50,0) 100%);
}

/* ================ CTA BAND ================ */
.cta-band {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.cta-band h2 { color: #fff; max-width: 800px; margin: 0 auto 16px; }
.cta-band p  { color: var(--muted); max-width: 640px; margin: 0 auto 28px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ================ PAGE HERO ================ */
.page-hero {
    padding: 90px 0 60px;
    background: radial-gradient(1200px 400px at 10% 0%, rgba(232,71,45,.12), transparent 60%), var(--navy-3);
    border-bottom: 1px solid var(--border);
}
.page-hero h1 { color: #fff; margin-bottom: 12px; }
.crumbs { font-size: .9rem; color: var(--muted); margin-bottom: 14px; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--red); }

.pill-nav { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.pill-nav a {
    padding: 8px 16px; border-radius: 999px; font-size: .9rem;
    background: rgba(255,255,255,.06); color: var(--muted); border: 1px solid var(--border);
}
.pill-nav a:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* ================ HAKKIMIZDA ================ */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv-card {
    background: var(--navy-2); padding: 40px; border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.05);
}
.mv-card h3 { color: #fff; }

.values-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.value-item {
    background: var(--navy-2); padding: 26px; border-radius: var(--radius);
    border-top: 3px solid var(--red);
}
.value-item h4 { color: #fff; margin: 0 0 8px; font-size: 1.05rem; }
.value-item p  { margin: 0; font-size: .92rem; }

/* ================ ÜRÜNLER ================ */
.product-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.product-card {
    background: var(--navy-2); border-radius: var(--radius); overflow: hidden;
    display: flex; flex-direction: column;
    border: 1px solid rgba(255,255,255,.04);
    transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-media { aspect-ratio: 4/3; overflow: hidden; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms; }
.product-card:hover .product-media img { transform: scale(1.05); }
.product-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { color: #fff; font-size: 1.1rem; }
.product-body p  { color: var(--muted); font-size: .93rem; flex: 1; }
.product-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }

/* ================ İLETİŞİM ================ */
.contact-grid { display: grid; grid-template-columns: 380px 1fr; gap: 40px; align-items: start; }
.info-card {
    background: var(--navy-2); padding: 32px; border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.05);
}
.info-card h3 { color: #fff; margin-bottom: 20px; }
.info-card p  { color: var(--muted); margin: 0 0 18px; }
.info-card strong { color: #fff; display: block; margin-bottom: 4px; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.info-card a { color: var(--muted); border-bottom: 1px dashed rgba(255,255,255,.25); }
.info-card a:hover { color: var(--red); border-color: var(--red); }

.contact-form { background: var(--navy-2); padding: 32px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,.05); display: grid; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-size: .88rem; color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea {
    width: 100%; padding: 12px 14px; font-family: inherit; font-size: 1rem;
    background: var(--navy-3); color: #fff; border: 1px solid var(--border);
    border-radius: var(--radius-sm); transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
    outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(232,71,45,.2);
}
.field textarea { resize: vertical; min-height: 120px; }
.field.checkbox { flex-direction: row; align-items: flex-start; gap: 10px; }
.field.checkbox input { width: auto; margin-top: 4px; }
.field.checkbox label { font-size: .9rem; color: var(--muted); }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }

.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: .95rem; }
.alert-success { background: rgba(38,166,91,.15); border: 1px solid rgba(38,166,91,.4); color: #b8f0cf; }
.alert-error   { background: rgba(232,71,45,.15);  border: 1px solid rgba(232,71,45,.4);  color: #ffd1c7; }
.alert ul { margin: 6px 0 0 18px; padding: 0; }

.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ================ FOOTER ================ */
.site-footer { background: var(--navy-3); border-top: 1px solid var(--border); padding: 64px 0 0; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; letter-spacing: .04em; text-transform: uppercase; font-weight: 700; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--muted); font-size: .95rem; }
.footer-col a:hover { color: var(--red); }
.footer-logo { height: 34px; margin-bottom: 16px; }
.footer-brand-col p { color: var(--muted); font-size: .95rem; margin-bottom: 18px; max-width: 40ch; }
.footer-col address p { margin: 0 0 10px; font-style: normal; color: var(--muted); font-size: .95rem; }

.footer-social { display: flex; gap: 8px; margin-top: 16px; }
.social-icon {
    width: 38px; height: 38px; border-radius: 50%;
    display: grid; place-items: center;
    background: rgba(255,255,255,.06); color: #fff; font-size: .8rem; font-weight: 700; letter-spacing: .05em;
    border: 1px solid var(--border);
}
.social-icon:hover { background: var(--red); color: #fff; border-color: var(--red); }

.footer-bottom {
    margin-top: 48px; padding: 20px 0; border-top: 1px solid var(--border);
    color: var(--muted-2); font-size: .88rem;
}
.footer-bottom .container { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { margin: 0; }
.footer-bottom .tagline { color: var(--red); letter-spacing: .1em; }

/* ================ FLOATING ACTIONS ================ */
.float-actions {
    position: fixed; right: 22px; bottom: 22px; z-index: 999;
    display: flex; flex-direction: column; gap: 14px; align-items: center;
}
.float-actions a {
    width: 62px; height: 62px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; transition: transform var(--transition), box-shadow var(--transition);
    -webkit-tap-highlight-color: transparent; position: relative;
}
.whatsapp-float { background: #25D366; box-shadow: 0 12px 28px -6px rgba(37,211,102,.55), 0 4px 10px rgba(0,0,0,.25); }
.whatsapp-float:hover { transform: scale(1.08); color: #fff; box-shadow: 0 16px 36px -6px rgba(37,211,102,.7); }
.whatsapp-float svg { display: block; width: 34px; height: 34px; }

.call-float { background: var(--red, #E8472D); box-shadow: 0 12px 28px -6px rgba(232,71,45,.55), 0 4px 10px rgba(0,0,0,.25); }
.call-float:hover { transform: scale(1.08); color: #fff; box-shadow: 0 16px 36px -6px rgba(232,71,45,.75); }
.call-float svg { display: block; width: 28px; height: 28px; position: relative; z-index: 2; }
.call-pulse {
    position: absolute; inset: 0; border-radius: 50%;
    background: var(--red, #E8472D); opacity: .6;
    animation: callPulse 1.8s ease-out infinite; z-index: 1;
}
@keyframes callPulse {
    0%   { transform: scale(1);    opacity: .6; }
    70%  { transform: scale(1.6);  opacity: 0;  }
    100% { transform: scale(1.6);  opacity: 0;  }
}

/* ================ SCROLL REVEAL ================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 600ms ease, transform 600ms ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
    .reveal { opacity: 1; transform: none; }
}
