/* ===== PRELOADER — Fryer Theme ===== */
.preloader {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: linear-gradient(160deg, #0a172a, #0f2b4c, #1e3a5f);
  z-index: 99999; display: flex; justify-content: center; align-items: center;
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.preloader.hide { opacity: 0; pointer-events: none; transform: scale(1.05); }
.preloader-content { text-align: center; }
.splash-fryer { width: 160px; height: auto; margin: 0 auto 20px; display: block; filter: drop-shadow(0 0 30px rgba(0,180,216,.12)); }
.fryer-body { stroke-dasharray: 400; stroke-dashoffset: 400; animation: drawIn 1.2s cubic-bezier(.8,0,.2,1) .2s forwards; }
.basket-handle { stroke-dasharray: 50; stroke-dashoffset: 50; animation: drawIn .6s ease .8s forwards; }
.basket-knob { stroke-dasharray: 40; stroke-dashoffset: 40; animation: drawIn .5s ease 1s forwards; }
.basket-grid { stroke-dasharray: 600; stroke-dashoffset: 600; animation: drawIn 1s ease 1.2s forwards; }
.bubble { animation: bubbleUp 2s ease-in-out infinite; }
.b1 { animation-delay: 1.4s; } .b2 { animation-delay: 1.7s; } .b3 { animation-delay: 1.5s; } .b4 { animation-delay: 1.9s; } .b5 { animation-delay: 2.1s; }
.flame { animation: flameOn .4s ease 1.6s forwards, flicker 1s ease-in-out infinite 2s; }
.flame-sm { animation: flameOn .3s ease 1.8s forwards, flicker .8s ease-in-out infinite 2.1s; }
.splash-logo-wrap { display: inline-block; opacity: 0; transform: translateY(12px) scale(.95); animation: logoReveal .8s cubic-bezier(.34,1.56,.64,1) 2s forwards; }
.splash-logo-img { max-width: 280px; width: 70vw; filter: brightness(0) invert(1); opacity: .9; }
.preloader-text { margin-top: 16px; font-family: 'Inter', sans-serif; font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.5); letter-spacing: 4px; text-transform: uppercase; opacity: 0; animation: fadeIn .4s ease 2.2s forwards; }
@keyframes drawIn { to { stroke-dashoffset: 0; } }
@keyframes bubbleUp { 0% { opacity:0; transform:translateY(0) scale(.5); } 30% { opacity:.8; transform:translateY(-15px) scale(1); } 70% { opacity:.5; transform:translateY(-40px) scale(.8); } 100% { opacity:0; transform:translateY(-60px) scale(.3); } }
@keyframes flameOn { to { opacity: 1; } }
@keyframes flicker { 0%,100% { transform:scaleY(1) scaleX(1); opacity:1; } 25% { transform:scaleY(1.15) scaleX(.92); opacity:.85; } 50% { transform:scaleY(.9) scaleX(1.08); } 75% { transform:scaleY(1.1) scaleX(.95); opacity:.9; } }
@keyframes logoReveal { to { opacity:1; transform:translateY(0) scale(1); } }
@keyframes fadeIn { to { opacity: 1; } }

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.7; color: #475569; background: #fafafa; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: #0281d7; text-decoration: none; transition: all .3s ease; }
a:hover { color: #0f2b4c; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.anchor { position: relative; top: -100px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; color: #0f172a; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: 3.5rem; font-weight: 800; }
h1 strong { color: #0281d7; position: relative; z-index: 1; }
h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.section-label { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: .85rem; font-weight: 700; color: #0281d7; text-transform: uppercase; letter-spacing: 2px; }
.label-line { display: inline-block; width: 0; height: 2px; background: #0281d7; vertical-align: middle; transition: width 1s ease; }
.label-line.visible { width: 50px; }
.section-title { margin-bottom: 20px; }
.section-text { color: #64748b; font-size: 1.125rem; line-height: 1.8; margin-bottom: 24px; font-weight: 400; }
.subtitle { font-size: 1.25rem; color: rgba(255,255,255,.9); margin-bottom: 2rem; font-weight: 300; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 1rem 2.5rem; border-radius: 50px; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 15px; line-height: 1.5; text-transform: uppercase; cursor: pointer; border: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); letter-spacing: 1px; box-shadow: 0 4px 14px rgba(0,0,0,0.1); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
.btn:active { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, #0281d7, #00509E); color: #fff; }
.btn-primary:hover { background: linear-gradient(135deg, #00509E, #003F7A); color: #fff; }
.btn-secondary { background: #0f172a; color: #fff; }
.btn-secondary:hover { background: #1e293b; color: #fff; }
.btn-sm { padding: .75rem 1.75rem; font-size: 13px; }
.btn-submit { width: 100%; padding: 1.1rem; font-size: 15px; border-radius: 12px; }
.btn-dark { background: #0f172a; color: #fff; }
.btn-dark:hover { background: #0281d7; color: #fff; }

/* ===== SECTION CURVES ===== */
.section-curve { position: absolute; left: 0; width: 100%; overflow: hidden; line-height: 0; z-index: 2; pointer-events: none; }
.section-curve svg { display: block; width: calc(100% + 1.3px); height: 70px; }
.curve-bottom { bottom: -1px; transform: rotate(180deg); }
.curve-top { top: -1px; }
.curve-fill-fafafa { fill: #fafafa; }
.curve-fill-f1f5f9 { fill: #f1f5f9; }
.curve-fill-white { fill: #fff; }

/* ===== TOP BAR ===== */
.topbar { background: #0f172a; padding: 10px 0; text-align: center; }
.topbar-link { color: rgba(255,255,255,.9); font-size: 14px; font-weight: 600; letter-spacing: 1px; }
.topbar-link i { color: #0281d7; margin-right: 8px; }
.topbar-link:hover { color: #fff; }

/* ===== HEADER ===== */
.header { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; box-shadow: 0 4px 30px rgba(0,0,0,.03); transition: all .3s ease; border-bottom: 1px solid rgba(0,0,0,0.05); }
.header.scrolled { box-shadow: 0 10px 40px rgba(0,0,0,.08); }
.header-inner { display: flex; align-items: center; padding: 16px 0; gap: 20px; }
.header-logo img { height: 48px; width: auto; transition: transform 0.3s ease; }
.header-logo:hover img { transform: scale(1.02); }
.mobile-toggle { display: none; background: #0f172a; color: #fff; border: none; padding: 10px 14px; border-radius: 8px; font-size: 16px; cursor: pointer; transition: background 0.3s; }
.mobile-toggle:hover { background: #0281d7; }
.nav-menu { display: flex; gap: 8px; margin-left: auto; }
.nav-menu a { padding: 10px 18px; font-size: 15px; font-weight: 600; color: #475569; position: relative; border-radius: 8px; transition: all .3s; }
.nav-menu a:hover, .nav-menu a.active { color: #0281d7; background: rgba(2, 129, 215, 0.05); }

/* ===== HERO ===== */
.hero { position: relative; background: #0f172a url('../images/Design-sans-titre-_43_.webp') center center/cover no-repeat; padding: 120px 0 280px; color: #fff; overflow: visible; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 100%); pointer-events: none; }
.hero-overlay { display: none; }
.hero-shape-bottom { position: absolute; bottom: -2px; left: 0; width: 100%; line-height: 0; z-index: 1; }
.hero-shape-bottom svg { width: 100%; height: auto; display: block; }
.hero-shape-tertiary { fill: #fafafa; }
.hero-inner-content { position: relative; z-index: 2; display: flex; justify-content: flex-start; text-align: left; }
.hero-headline { max-width: 650px; flex: 0 0 60%; }
.hero-headline h1 { color: #fff; margin-bottom: 24px; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.hero-headline h1 strong { color: #38bdf8; }

/* ===== CARD SECTION ===== */
.card-section { position: relative; z-index: 3; margin-top: -180px; padding-bottom: 60px; }
.card-section-inner { display: flex; gap: 40px; align-items: stretch; }
.hero-card { background: #fff; border-radius: 16px; padding: 3rem; box-shadow: 0 25px 60px -10px rgba(0,0,0,0.1); flex: 0 0 50%; max-width: 500px; border: 1px solid rgba(0,0,0,0.05); }
.hero-card h2 { color: #0f172a; font-size: 2rem; margin-bottom: 8px; }
.card-subtitle { color: #64748b; margin-bottom: 2rem; font-size: 1.05rem; line-height: 1.6; }
.form-group { margin-bottom: 1.5rem; }
.form-control { display: block; width: 100%; height: 56px; padding: 0 1.5rem; font-size: 1rem; font-family: 'Inter', sans-serif; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; color: #334155; transition: all .3s; }
.form-control:focus { border-color: #0281d7; background: #fff; outline: none; box-shadow: 0 0 0 4px rgba(2, 129, 215, 0.1); }
.select-wrap { position: relative; }
.select-wrap::after { content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: #64748b; pointer-events: none; }
select.form-control { appearance: none; -webkit-appearance: none; cursor: pointer; }

.hero-contact-info { flex: 1; display: flex; flex-direction: column; justify-content: center; padding-left: 20px; }
.contact-row { margin-bottom: 2.5rem; background: #fff; padding: 24px; border-radius: 16px; box-shadow: 0 15px 40px -10px rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.03); transition: transform 0.3s ease; }
.contact-row:hover { transform: translateY(-5px); }
.contact-row h3 { font-size: 0.9rem; color: #64748b; font-weight: 700; margin-bottom: 8px; letter-spacing: 1px; text-transform: uppercase; }
.contact-row p { font-size: 1.75rem; font-family: 'Outfit', sans-serif; font-weight: 700; margin-bottom: 0; }
.contact-row a { color: #0f172a; }
.contact-row a:hover { color: #0281d7; }

/* ===== INFO BOXES ===== */
.info-boxes { padding: 0 0 80px; position: relative; z-index: 3; }
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; box-shadow: 0 15px 40px -10px rgba(0,0,0,0.05); border-radius: 16px; border: 1px solid rgba(0,0,0,0.03); overflow: hidden; }
.info-box { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 30px 20px; font-weight: 600; font-size: 1rem; color: #0f172a; transition: background 0.3s; }
.info-box:not(:last-child) { border-right: 1px solid #f1f5f9; }
.info-box:hover { background: #f8fafc; }
.info-box i { color: #0281d7; font-size: 1.5rem; }

/* ===== SECTIONS COMMON ===== */
.section { padding: 120px 0; position: relative; overflow: hidden; }
.section-header-row { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; gap: 30px; }
.section-header-row > div { flex: 0 0 70%; }

/* ===== ABOUT ===== */
.section-about { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-images { position: relative; display: flex; justify-content: center; }
.about-img-main { width: 100%; max-width: 500px; position: relative; z-index: 1; }
.about-img-main img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 24px; box-shadow: 0 30px 60px -15px rgba(0,0,0,0.15); transition: transform 0.5s ease; }
.about-img-main:hover img { transform: scale(1.02); }

/* ===== SERVICES ===== */
.section-services { background: #f1f5f9; padding-top: 120px; padding-bottom: 120px; }
.curve-top { position: absolute; top: -1px; left: 0; width: 100%; line-height: 0; }
.curve-top svg { width: 100%; height: 100px; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.service-card { background: #fff; border: 1px solid rgba(0,0,0,0.03); border-radius: 16px; padding: 40px 30px; text-align: center; transition: all .4s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05); }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px -10px rgba(2, 129, 215, 0.15); border-color: rgba(2, 129, 215, 0.3); }
.service-icon { display: block; width: 120px; height: 120px; border-radius: 50%; background: #fff; margin: 0 auto 24px; transition: all .4s; overflow: hidden; box-shadow: 0 8px 24px rgba(0,0,0,0.06); border: 2px solid #fff; }
.service-icon img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.service-card:hover .service-icon { box-shadow: 0 12px 30px rgba(2, 129, 215, 0.25); border-color: #0281d7; }
.service-card:hover .service-icon img { transform: scale(1.1); }
.service-card h3 { font-size: 1.25rem; font-weight: 700; color: #0f172a; margin-bottom: 16px; transition: color .3s; }
.service-card p { color: #64748b; font-size: 1rem; line-height: 1.6; margin-bottom: 24px; }
.service-link { font-weight: 700; color: #0281d7; font-size: 0.95rem; display: inline-flex; align-items: center; gap: 8px; }
.service-link::after { content: '\f061'; font-family: 'Font Awesome 6 Free'; font-weight: 900; transition: transform 0.3s; }
.service-link:hover { color: #0f172a; }
.service-card:hover .service-link::after { transform: translateX(5px); }

/* ===== CTA BANNER ===== */
.section-cta { padding: 160px 0; position: relative; background: url('../images/background-2.webp') center/cover no-repeat; color: #fff; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(2, 129, 215, 0.9), rgba(15, 23, 42, 0.9)); pointer-events: none; }
.cta-curve svg { height: 80px; }
.curve-bottom { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; }
.curve-bottom svg { width: 100%; height: 80px; }
.cta-content { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.cta-text { flex: 0 0 65%; }
.cta-text h2 { color: #fff; font-size: 2.5rem; margin-bottom: 1.5rem; }
.cta-text p { color: rgba(255,255,255,.9); font-size: 1.15rem; line-height: 1.7; }

/* ===== FAQ ===== */
.section-faq { background: #fafafa; padding: 120px 0; position: relative; }
.curve-bottom-neg { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; }
.curve-bottom-neg svg { width: 100%; height: 80px; }
.faq-grid { display: grid; grid-template-columns: 45% 55%; gap: 60px; }
.faq-item { border: 1px solid #e2e8f0; border-radius: 12px; margin-bottom: 12px; background: #fff; transition: all .3s; box-shadow: 0 4px 10px rgba(0,0,0,0.02); }
.faq-item:hover { border-color: #cbd5e1; box-shadow: 0 10px 20px rgba(0,0,0,0.04); }
.faq-question { padding: 20px 24px; font-weight: 600; color: #0f172a; cursor: pointer; position: relative; padding-right: 48px; font-size: 1.05rem; }
.faq-question::after { content: '\f107'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; right: 24px; top: 50%; transform: translateY(-50%); transition: transform .3s; color: #0281d7; font-size: 1.2rem; }
.faq-item.active .faq-question::after { transform: translateY(-50%) rotate(180deg); }
.faq-answer { display: none; padding: 0 24px 24px; color: #64748b; font-size: 1rem; line-height: 1.7; }
.faq-item.active .faq-answer { display: block; }

/* ===== PROCESS ===== */
.section-process { padding: 120px 0; }
.process-header { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.process-step { text-align: center; background: #fff; padding: 40px 30px; border-radius: 16px; border: 1px solid rgba(0,0,0,0.03); box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05); transition: transform 0.4s; }
.process-step:hover { transform: translateY(-10px); }
.process-icon { display: flex; align-items: center; justify-content: center; width: 100px; height: 100px; border-radius: 50%; background: #f8fafc; margin: 0 auto 24px; transition: all .4s; }
.process-icon img { width: 50px; height: 50px; object-fit: contain; transition: transform .4s; }
.process-step:hover .process-icon { background: #0f172a; }
.process-step:hover .process-icon img { transform: scale(1.1); filter: brightness(0) invert(1); }
.process-step h3 { color: #0f172a; margin-bottom: 1rem; }
.process-step p { color: #64748b; font-size: 1rem; }

/* ===== PORTFOLIO ===== */
.section-portfolio { background: #fafafa; }
.portfolio-swiper { padding-bottom: 50px; overflow: hidden; }
.portfolio-item { border-radius: 16px; overflow: hidden; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.portfolio-item img { width: 100%; display: block; aspect-ratio: 4/3; object-fit: cover; transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1); }
.portfolio-item:hover img { transform: scale(1.05); }
.portfolio-item::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(to top, rgba(15,23,42,0.4), transparent); opacity: 0; transition: opacity .4s; }
.portfolio-item:hover::after { opacity: 1; }
.swiper-pagination-bullet { background: #cbd5e1; opacity: 1; width: 10px; height: 10px; transition: all .3s; }
.swiper-pagination-bullet-active { background: #0281d7; width: 24px; border-radius: 10px; }

/* ===== TESTIMONIALS ===== */
.section-testimonials { padding: 140px 0; position: relative; background: url('../images/background-3.webp') center/cover; color: #fff; }
.section-testimonials .cta-overlay { background: linear-gradient(135deg, rgba(15,23,42,0.95), rgba(15,23,42,0.85)); }
.testimonials-content { position: relative; z-index: 2; display: grid; grid-template-columns: 40% 60%; gap: 60px; align-items: center; }
.testimonials-left h2 { color: #fff; margin-bottom: 1.5rem; }
.testimonials-left .section-text { color: rgba(255,255,255,.8); font-size: 1.15rem; }
.testimonial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.testimonial-card { background: #fff; border-radius: 16px; padding: 40px; position: relative; color: #334155; box-shadow: 0 20px 40px rgba(0,0,0,0.1); transition: transform 0.4s; }
.testimonial-card:hover { transform: translateY(-5px); }
.quote-icon { color: #0281d7; font-size: 1.8rem; margin-bottom: 1.5rem; opacity: 0.2; }
.quote { color: #475569; margin-bottom: 1.5rem; font-size: 1.05rem; font-style: italic; line-height: 1.7; }
.author-name { font-family: 'Outfit', sans-serif; font-weight: 700; color: #0f172a; font-size: 1.1rem; }
.author-role { color: #94a3b8; font-size: 0.9rem; }
.testimonial-extra { display: none; }

/* ===== BRANDS ===== */
.section-brands { padding: 80px 0; background: #fff; }
.section-brands h2 { margin-bottom: 3rem; }
.brands-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 40px; margin-bottom: 2rem; }
.brand-item img { max-height: 80px; object-fit: contain; filter: grayscale(100%) opacity(0.6); transition: all 0.4s; }
.brand-item:hover img { filter: grayscale(0%) opacity(1); transform: scale(1.05); }

/* ===== CTA DARK ===== */
.section-cta-dark { padding: 140px 0; position: relative; background: url('../images/background-2.webp') center top/cover; text-align: center; color: #fff; }
.cta-dark-overlay { position: absolute; inset: 0; background: rgba(15, 23, 42, 0.9); }
.cta-dark-content { position: relative; z-index: 3; max-width: 800px; margin: 0 auto; }
.cta-dark-content h2 { color: #fff; font-size: 3rem; margin-bottom: 1.5rem; line-height: 1.3; }
.cta-dark-content h2 strong { color: #38bdf8; }
.cta-dark-content > p { color: rgba(255,255,255,.8); font-size: 1.25rem; margin-bottom: 2.5rem; }

/* ===== BLOG ===== */
.section-blog { padding: 120px 0; }
.blog-grid { display: grid; grid-template-columns: 65% 35%; gap: 40px; }
.blog-main { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.blog-card { background: #fff; border-radius: 16px; box-shadow: 0 15px 35px -10px rgba(0,0,0,0.05); overflow: hidden; border: 1px solid rgba(0,0,0,0.03); transition: transform 0.4s; }
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 25px 45px -10px rgba(0,0,0,0.1); }
.blog-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.6s; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 30px; }
.blog-meta { display: flex; gap: 16px; margin-bottom: 12px; font-size: 0.85rem; color: #94a3b8; font-weight: 500; }
.blog-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 16px; }
.blog-card h3 a { color: #0f172a; }
.blog-card h3 a:hover { color: #0281d7; }
.blog-read-more { font-weight: 700; color: #0281d7; font-size: 0.95rem; }
.blog-read-more:hover { color: #0f172a; }
.blog-sidebar h3 { font-size: 1.5rem; margin-bottom: 24px; }
.blog-list-item { padding-bottom: 24px; margin-bottom: 24px; border-bottom: 1px solid #f1f5f9; }
.blog-list-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.blog-list-item h4 { font-size: 1.2rem; font-weight: 600; margin: 8px 0 12px; }
.blog-list-item h4 a { color: #0f172a; }
.blog-list-item h4 a:hover { color: #0281d7; }

/* ===== FOOTER ===== */
.footer { background: #0f172a; color: rgba(255,255,255,.7); padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 60px; }
.footer h4 { color: #fff; font-size: 1.2rem; margin-bottom: 24px; font-weight: 700; }
.footer p { font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.7); }
.footer-phone { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.footer-phone-icon { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.footer-phone-icon img { filter: brightness(0) invert(1); width: 20px; }
.footer-phone strong { color: #fff; display: block; font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.footer-phone div { color: rgba(255,255,255,0.7); font-size: 1.1rem; }
.footer-phone:hover div { color: #38bdf8; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,.7); font-size: 1rem; transition: color 0.3s; }
.footer-links a:hover { color: #38bdf8; padding-left: 5px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; background: rgba(255,255,255,.05); border-radius: 50%; color: #fff; transition: all .3s; }
.footer-social a:hover { background: #0281d7; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 30px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-logo img { height: 40px; opacity: 0.8; transition: opacity 0.3s; }
.footer-logo:hover img { opacity: 1; }

/* ===== ANIMATIONS ===== */
.anim { opacity: 0; transform: translateY(40px); transition: opacity .8s cubic-bezier(0.16, 1, 0.3, 1), transform .8s cubic-bezier(0.16, 1, 0.3, 1); }
.anim.anim-fadeInLeft { transform: translateX(-40px); }
.anim.anim-fadeInRight { transform: translateX(40px); }
.anim.anim-fadeIn { transform: none; }
.anim.visible { opacity: 1; transform: none; }
.anim-d2 { transition-delay: .15s; }
.anim-d3 { transition-delay: .3s; }
.anim-d4 { transition-delay: .45s; }
.anim-d5 { transition-delay: .6s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .info-box:nth-child(2) { border-right: none; }
  .info-box:nth-child(1), .info-box:nth-child(2) { border-bottom: 1px solid #f1f5f9; }
  .hero-headline { flex: 0 0 100%; max-width: 100%; }
}

@media (max-width: 991px) {
  .mobile-toggle { display: block; }
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; box-shadow: 0 10px 30px rgba(0,0,0,.1); padding: 10px 0; border-top: 1px solid #f1f5f9; gap: 0; }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 16px 24px; border-bottom: 1px solid #f8fafc; border-radius: 0; }
  .hero { padding: 80px 0 200px; text-align: center; }
  .hero-inner-content { justify-content: center; text-align: center; }
  .card-section { margin-top: -120px; }
  .card-section-inner { flex-direction: column; align-items: center; }
  .hero-card { flex: none; max-width: 100%; width: 100%; padding: 40px 30px; }
  .hero-contact-info { width: 100%; padding: 0; }
  .contact-row { padding: 30px; text-align: center; }
  .about-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .section-cta { padding: 100px 0; text-align: center; }
  .cta-content { flex-direction: column; gap: 30px; }
  .section-testimonials { padding: 100px 0; }
  .testimonials-content { grid-template-columns: 1fr; text-align: center; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .section-cta-dark { padding: 100px 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-main { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .section-header-row { flex-direction: column; align-items: flex-start; gap: 20px; }
  .section-header-row > div { flex: 0 0 100%; }
}

@media (max-width: 575px) {
  .info-grid { grid-template-columns: 1fr; }
  .info-box { border-right: none !important; border-bottom: 1px solid #f1f5f9; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 16px; text-align: center; }
  .section-cta-dark { padding: 80px 0; }
  .hero { padding: 60px 0 160px; }
  .hero-headline h1 { font-size: 2.2rem; }
  .card-section { margin-top: -100px; }
  .section-title, .cta-dark-content h2 { font-size: 2.2rem; }
  .section { padding: 80px 0; }
}

/* ===== COOKIE BANNER ===== */
.privacy-banner { position: fixed; bottom: -400px; left: 24px; z-index: 10000; width: 420px; max-width: calc(100vw - 48px); background: #fff; border-radius: 16px; box-shadow: 0 15px 45px rgba(0,0,0,.15); padding: 30px; color: #334155; transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1); border: 1px solid rgba(0,0,0,0.05); }
.privacy-banner.show { bottom: 24px; }
.privacy-title { font-family: 'Outfit', sans-serif; font-size: 1.2rem; font-weight: 700; color: #0f172a; margin-bottom: 12px; }
.privacy-banner p { font-size: 0.9rem; line-height: 1.6; margin-bottom: 24px; color: #64748b; }
.privacy-actions { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; }
.privacy-actions button { min-height: 44px; border: 1px solid #e2e8f0; border-radius: 8px; background: #fff; color: #475569; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.85rem; cursor: pointer; transition: all .3s; }
.privacy-actions button:hover { background: #f8fafc; border-color: #cbd5e1; }
.privacy-actions .accept { border-color: #0281d7; background: #0281d7; color: #fff; }
.privacy-actions .accept:hover { background: #0f2b4c; border-color: #0f2b4c; color: #fff; }
.privacy-powered { margin-top: 16px; text-align: center; font-size: 0.75rem; color: #94a3b8; }
.privacy-powered strong { color: #475569; }
@media (max-width: 575px) { .privacy-banner { left: 16px; max-width: calc(100vw - 32px); padding: 24px; } .privacy-banner.show { bottom: 16px; } .privacy-actions { grid-template-columns: 1fr; } }
