/* ==========================================================================
   Autotech Service Center — Ραφήνα
   Shared stylesheet for all pages (index / services / about / contact)
   Design system: light & professional · blue accent · Inter (full Greek support)
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F8F9FB;
  --bg2: #EEF1F6;
  --bg3: #E2E7F0;
  --ink: #0D1117;
  --ink2: #3D4857;
  --ink3: #7A8699;
  --accent: #1A56DB;
  --accent-dark: #1241B0;
  --accent-light: #EBF0FD;
  --accent-rgb: 26,86,219;
  --border: #D8DEE9;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 2px 12px rgba(13,17,23,0.07);
  --shadow-lg: 0 8px 40px rgba(13,17,23,0.12);
  --dark-bg: #0D1117;
  --dark-surface: #161B22;
  /* ── MOTION TOKENS ── */
  --ease-spring: cubic-bezier(.16,1,.3,1);
  --ease-out: cubic-bezier(.22,.61,.36,1);
  --dur-fast: .18s;
  --dur: .3s;
  --dur-slow: .7s;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--ink); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4, h5 { font-family: 'Inter', sans-serif; line-height: 1.15; letter-spacing: -0.02em; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-light);
  padding: 6px 14px; border-radius: 100px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: var(--radius);
  cursor: pointer; border: none; transition: all 0.22s var(--ease-out); white-space: nowrap;
  position: relative; overflow: hidden; isolation: isolate;
}
/* subtle hover sheen sweep — animates background-position only */
.btn::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.22) 50%, transparent 70%);
  background-size: 220% 100%; background-position: 150% 0;
  opacity: 0; transition: opacity 0.2s var(--ease-out), background-position 0.6s var(--ease-out);
}
.btn:hover::before { opacity: 1; background-position: -40% 0; }
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(var(--accent-rgb),0.38); }
.btn-primary:active { transform: translateY(-2px) scale(0.97); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--border); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-white { background: #fff; color: var(--accent); }
.btn-white:hover { background: var(--accent-light); }
.btn-ghost { background: transparent; color: var(--accent); padding: 10px 0; font-weight: 600; font-family: 'Inter', sans-serif; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; }
.btn-ghost svg { transition: transform 0.2s; }
.btn-ghost:hover svg { transform: translateX(5px); }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(248,249,251,0.90); backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent; transition: border-color 0.3s, box-shadow 0.3s;
}
/* keep navbar stable across cross-document view transitions */
nav#navbar { view-transition-name: site-navbar; }
nav.scrolled { border-color: var(--border); box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; height: 68px; gap: 32px;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 46px; width: auto; }
.nav-logo .logo-fallback { font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 900; }
.nav-logo .logo-fallback span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; list-style: none; }
.nav-links a {
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500;
  color: var(--ink2); padding: 8px 14px; border-radius: 8px;
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out);
  position: relative;
}
/* underline grows from left on hover; persists on active */
.nav-links a::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 5px; height: 2px;
  background: var(--accent); border-radius: 2px;
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.28s var(--ease-spring);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a:hover, .nav-links a.active { color: var(--accent); background: var(--accent-light); }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.nav-phone-link {
  display: flex; align-items: center; gap: 7px;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--ink2); transition: color 0.2s;
}
.nav-phone-link:hover { color: var(--accent); }
.nav-phone-link svg { color: var(--accent); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; color: var(--ink); }
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: var(--bg); border-bottom: 1px solid var(--border);
  padding: 16px 32px 28px; z-index: 199;
  box-shadow: var(--shadow-lg);
  /* keep the whole menu reachable when the Υπηρεσίες submenu is expanded */
  max-height: calc(100vh - 68px); max-height: calc(100dvh - 68px);
  overflow-y: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { display: block; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0; }
.mobile-menu > ul > li { border-bottom: 1px solid var(--border); }
.mobile-menu > ul > li:last-child { border-bottom: none; }
.mobile-menu a:not(.btn) { display: block; padding: 14px 2px; font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; color: var(--ink); }
.mobile-menu > ul > li > a:active, .m-dropdown-head > a:active { color: var(--accent); }
.mobile-cta { margin-top: 16px; padding-top: 18px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
/* CTA buttons keep their own colors (white text on blue), bigger tap targets */
.mobile-cta .btn { padding: 15px 18px; font-size: 16px; font-weight: 700; }
.mobile-cta .btn-primary { color: #fff; }

/* ── HERO (homepage) ── */
.hero {
  min-height: 100vh; padding-top: 68px;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle at 70% 50%, rgba(26,86,219,0.07) 0%, transparent 60%),
    radial-gradient(circle at 20% 80%, rgba(26,86,219,0.04) 0%, transparent 40%);
}
.hero-grid-lines {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.035;
  background-image: linear-gradient(var(--ink) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 48px 80px calc((100vw - 1180px)/2 + 32px);
  position: relative; z-index: 2;
}
.hero-eyebrow { margin-bottom: 28px; display: flex; align-items: center; gap: 12px; }
.hero-since { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; color: var(--ink3); letter-spacing: 0.05em; }
.hero h1 { font-size: clamp(44px, 5vw, 76px); font-weight: 900; color: var(--ink); margin-bottom: 24px; text-wrap: balance; }
.hero h1 .accent-word { color: var(--accent); position: relative; display: inline-block; }
.hero h1 .accent-word::after {
  content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 4px;
  background: var(--accent); opacity: 0.2; border-radius: 2px;
}
.hero-desc { font-size: 18px; color: var(--ink2); line-height: 1.75; max-width: 500px; margin-bottom: 40px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--border); }
.stat-num { font-family: 'Inter', sans-serif; font-size: 36px; font-weight: 900; color: var(--ink); line-height: 1; }
.stat-num sup { font-size: 20px; color: var(--accent); }
.stat-label { font-size: 13px; color: var(--ink3); margin-top: 4px; }

.hero-visual { position: relative; overflow: hidden; min-height: 100vh; background: linear-gradient(135deg, var(--bg2), var(--bg3)); }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 12s ease-out; }
.hero-visual img.loaded { transform: scale(1); }
.hero-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, transparent 25%),
    linear-gradient(0deg, rgba(13,17,23,0.3) 0%, transparent 50%);
}
.hero-floating-card {
  position: absolute; bottom: 48px; right: 40px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(16px);
  border-radius: var(--radius-lg); padding: 20px 24px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.8);
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-floating-icon { width: 48px; height: 48px; background: var(--accent); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-floating-title { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700; color: var(--ink); }
.hero-floating-sub { font-size: 12px; color: var(--ink3); margin-top: 2px; }

/* ── TRUSTED STRIP ── */
.trusted-strip { background: var(--dark-bg); padding: 24px 0; display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trusted-label { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); }
.trusted-logos { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; justify-content: center; }
.trusted-logo-pill {
  font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.5); padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 100px; transition: all 0.2s;
}
.trusted-logo-pill:hover { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.3); }

/* ── SECTION HEADINGS ── */
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; flex-wrap: wrap; gap: 24px; }
.section-heading h2 { font-size: clamp(30px, 4vw, 50px); font-weight: 800; margin-top: 14px; }
.section-heading p { font-size: 17px; color: var(--ink2); margin-top: 12px; line-height: 1.7; max-width: 520px; }

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.35s var(--ease-spring), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out); cursor: pointer; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg), 0 0 0 1px rgba(var(--accent-rgb),0.35); border-color: transparent; }
.service-card-img { height: 190px; overflow: hidden; background: var(--bg2); position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--bg2) 0%, var(--bg3) 100%); }
.service-card-body { padding: 24px; }
.service-icon { width: 44px; height: 44px; background: var(--accent-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--ink2); line-height: 1.65; }
.service-card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; color: var(--accent); transition: gap 0.2s; }
.service-card:hover .service-card-link { gap: 10px; }

/* ── NUMBERS STRIP ── */
.numbers-strip { background: var(--accent); padding: 72px 0; }
.numbers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.number-item { text-align: center; }
.number-val { font-family: 'Inter', sans-serif; font-size: 56px; font-weight: 900; color: #fff; line-height: 1; }
.number-val span { font-size: 32px; opacity: 0.7; }
.number-label { font-size: 14px; color: rgba(255,255,255,0.75); margin-top: 8px; font-weight: 500; }

/* ── WHY US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-img-col { position: relative; }
.why-main-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; background: linear-gradient(135deg, var(--bg2), var(--bg3)); }
.why-main-img img { width: 100%; height: 100%; object-fit: cover; }
.why-accent-img { position: absolute; bottom: -32px; right: -32px; width: 55%; border-radius: var(--radius); overflow: hidden; border: 6px solid var(--bg); box-shadow: var(--shadow-lg); }
.why-accent-img img { width: 100%; height: 180px; object-fit: cover; }
.why-cert-badge { position: absolute; top: 24px; left: -24px; background: var(--accent); color: #fff; border-radius: var(--radius); padding: 16px 20px; box-shadow: var(--shadow-lg); }
.why-cert-num { font-family: 'Inter', sans-serif; font-size: 28px; font-weight: 900; line-height: 1; }
.why-cert-label { font-size: 11px; opacity: 0.8; margin-top: 4px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.why-features { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
.why-feature { display: flex; gap: 16px; align-items: flex-start; }
.why-feature-icon { width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0; background: var(--accent-light); display: flex; align-items: center; justify-content: center; }
.why-feature h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.why-feature p { font-size: 14px; color: var(--ink2); line-height: 1.6; }

/* ── PROCESS ── */
.process-section { background: var(--dark-bg); }
.process-section .tag { background: rgba(26,86,219,0.2); color: #7BA7F5; }
.process-section h2 { color: #fff; }
.process-section .section-heading p { color: rgba(255,255,255,0.5); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 56px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 28px; left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 1px; background: linear-gradient(90deg, transparent, rgba(26,86,219,0.5) 20%, rgba(26,86,219,0.5) 80%, transparent);
}
.process-step { text-align: center; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--dark-surface); border: 2px solid rgba(26,86,219,0.4);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 800; color: var(--accent);
  position: relative; z-index: 1; transition: all 0.3s;
}
.process-step:hover .step-num { background: var(--accent); border-color: var(--accent); color: #fff; transform: scale(1.1); }
.process-step h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.process-step p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.6; }

/* ── BRANDS SCROLL ── */
.brands-section { background: var(--bg2); overflow: hidden; }
.brands-scroll-wrap { margin-top: 40px; position: relative; }
.brands-scroll-wrap::before, .brands-scroll-wrap::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; }
.brands-scroll-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg2), transparent); }
.brands-scroll-wrap::after { right: 0; background: linear-gradient(-90deg, var(--bg2), transparent); }
.brands-track { display: flex; gap: 16px; animation: brand-scroll 35s linear infinite; width: max-content; }
.brands-track:hover { animation-play-state: paused; }
@keyframes brand-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.brand-chip {
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700;
  padding: 10px 20px; border: 1.5px solid var(--border); border-radius: 100px;
  white-space: nowrap; color: var(--ink2); background: #fff; transition: all 0.2s;
}
.brand-chip:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }

/* ── REVIEWS ── */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.review-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: box-shadow 0.32s var(--ease-out), transform 0.32s var(--ease-spring), border-color 0.32s var(--ease-out); }
.review-card:hover { box-shadow: var(--shadow-lg), 0 0 0 1px rgba(var(--accent-rgb),0.3); transform: translateY(-6px); border-color: transparent; }
.review-stars { display: flex; gap: 3px; color: #F59E0B; margin-bottom: 20px; }
.review-quote { font-size: 40px; color: var(--accent-light); font-family: Georgia, serif; line-height: 1; margin-bottom: 8px; }
.review-text { font-size: 15px; color: var(--ink2); line-height: 1.75; margin-bottom: 24px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-av { width: 42px; height: 42px; border-radius: 50%; background: var(--accent-light); display: flex; align-items: center; justify-content: center; font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 800; color: var(--accent); }
.review-name { font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 700; }
.review-src { font-size: 12px; color: var(--ink3); margin-top: 1px; }

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 64px; align-items: start; margin-top: 56px; }
.faq-sticky { position: sticky; top: 88px; }
.faq-sticky h2 { font-size: clamp(28px, 3vw, 44px); font-weight: 800; margin: 14px 0 16px; }
.faq-sticky p { font-size: 16px; color: var(--ink2); line-height: 1.7; margin-bottom: 32px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 24px; cursor: pointer;
  font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; color: var(--ink);
  user-select: none; transition: background 0.2s;
}
.faq-q:hover { background: var(--bg); }
.faq-icon { flex-shrink: 0; transition: transform 0.3s; color: var(--accent); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; font-size: 15px; color: var(--ink2); line-height: 1.7; padding: 0 24px; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 24px 20px; }

/* ── CONTACT / BOOKING (homepage dark section) ── */
.contact-section { background: var(--dark-bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.contact-content .tag { background: rgba(26,86,219,0.2); color: #7BA7F5; }
.contact-content h2 { font-size: clamp(28px, 3.5vw, 48px); font-weight: 800; color: #fff; margin: 16px 0 16px; }
.contact-content p { font-size: 16px; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 36px; }
.contact-details { display: flex; flex-direction: column; gap: 18px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-item-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(26,86,219,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #7BA7F5; }
.contact-item h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.contact-item p { font-size: 15px; color: rgba(255,255,255,0.8); line-height: 1.5; }
.contact-item a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.contact-item a:hover { color: #fff; }
.hours-table { margin-top: 28px; }
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 14px; }
.hours-day-name, .hours-day { color: rgba(255,255,255,0.5); }
.hours-time { color: rgba(255,255,255,0.9); font-weight: 600; font-family: 'Inter', sans-serif; }
.hours-closed { color: rgba(255,255,255,0.25); }

/* ── FORMS (shared by homepage + contact) ── */
.contact-form { background: #fff; border-radius: var(--radius-lg); padding: 40px; }
.contact-form h3 { font-size: 22px; font-weight: 800; margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink2); margin-bottom: 7px; }
input, select, textarea {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-family: 'Inter', sans-serif; font-size: 14px; color: var(--ink);
  background: var(--bg); transition: border-color 0.2s var(--ease-out), box-shadow 0.22s var(--ease-out), transform 0.22s var(--ease-out); outline: none;
}
input:hover, select:hover, textarea:hover { border-color: var(--ink3); }
input:focus, select:focus, textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(var(--accent-rgb),0.14); transform: translateY(-1px); }
textarea { resize: vertical; min-height: 100px; }
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233D4857' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.form-submit { margin-top: 24px; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 16px; padding: 16px; }
.form-note { font-size: 13px; color: var(--ink3); text-align: center; margin-top: 12px; }

/* ── MAP ── */
.map-section { height: 420px; overflow: hidden; position: relative; }
.map-section iframe { width: 100%; height: 100%; border: 0; filter: grayscale(15%) contrast(1.05); display: block; }
.map-overlay-card {
  position: absolute; top: 32px; left: 32px;
  background: rgba(248,249,251,0.96); backdrop-filter: blur(16px);
  border-radius: var(--radius-lg); padding: 20px 24px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--border); z-index: 10;
}
.map-overlay-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.map-overlay-card p { font-size: 13px; color: var(--ink2); }
.map-overlay-card a { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; color: var(--accent); }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--ink); padding: 130px 0 80px; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 70% 50%, rgba(26,86,219,0.15) 0%, transparent 60%); }
.page-hero.center::before { background: radial-gradient(circle at 50% 50%, rgba(26,86,219,0.2) 0%, transparent 60%); }
.page-hero.left::before { background-image: radial-gradient(circle at 20% 50%, rgba(26,86,219,0.18) 0%, transparent 55%); }
.page-hero-grid { position: absolute; inset: 0; opacity: 0.04; background-image: linear-gradient(#fff 1px,transparent 1px), linear-gradient(90deg,#fff 1px,transparent 1px); background-size: 60px 60px; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero.center .container { text-align: center; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; font-size: 13px; color: rgba(255,255,255,0.4); }
.page-hero.center .breadcrumb { justify-content: center; }
.breadcrumb a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.breadcrumb a:hover { color: rgba(255,255,255,0.8); }
.breadcrumb span { color: rgba(255,255,255,0.65); }
.page-hero h1 { font-size: clamp(36px,5vw,64px); font-weight: 900; color: #fff; margin: 16px 0 20px; }
.page-hero p { font-size: 18px; color: rgba(255,255,255,0.6); max-width: 560px; line-height: 1.7; }
.page-hero.center p { margin: 0 auto; }

/* ── SERVICES FULL (services page) ── */
.services-full { padding: 80px 0; }
.service-full-item { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 72px 0; border-bottom: 1px solid var(--border); }
.service-full-item:last-child { border-bottom: none; }
.service-full-item.reverse { direction: rtl; }
.service-full-item.reverse > * { direction: ltr; }
.service-full-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; background: var(--bg2); }
.service-full-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.service-full-item:hover .service-full-img img { transform: scale(1.04); }
.service-full-img-placeholder { width: 100%; height: 100%; min-height: 280px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--bg2), var(--bg3)); }
.service-num { font-family: 'Inter', sans-serif; font-size: 72px; font-weight: 900; color: var(--bg3); line-height: 1; margin-bottom: 8px; }
.service-full-content h2 { font-size: clamp(24px, 3vw, 36px); font-weight: 800; margin: 12px 0 16px; }
.service-full-content p { font-size: 16px; color: var(--ink2); line-height: 1.75; margin-bottom: 16px; }
.service-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; margin: 20px 0 28px; }
.service-checklist li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--ink2); }
.service-checklist li::before {
  content: ''; width: 20px; height: 20px; border-radius: 50%; background: var(--accent-light);
  flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%231A56DB' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* ── CTA BANNER ── */
.cta-banner { background: var(--accent); padding: 72px 0; }
.cta-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner h2 { font-size: clamp(24px, 3vw, 40px); font-weight: 800; color: #fff; }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,0.75); margin-top: 8px; }
.cta-banner .btn-glass { background: rgba(255,255,255,0.15); color: #fff; border: 1.5px solid rgba(255,255,255,0.3); }
.cta-banner .btn-glass:hover { background: rgba(255,255,255,0.25); }

/* ── ABOUT — STORY ── */
.story-section { padding: 100px 0; }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-img-mosaic { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 16px; }
.story-img { border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(135deg, var(--bg2), var(--bg3)); }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-img.tall { grid-row: span 2; }
.story-img.tall img { height: 480px; }
.story-img.short img { height: 220px; }
.story-img-placeholder { background: linear-gradient(135deg, var(--bg2), var(--bg3)); width: 100%; display: flex; align-items: center; justify-content: center; }
.story-content h2 { font-size: clamp(28px,3.5vw,48px); font-weight: 800; margin: 16px 0 20px; }
.story-content p { font-size: 16px; color: var(--ink2); line-height: 1.8; margin-bottom: 16px; }
.story-highlight {
  background: var(--accent-light); border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 24px; margin: 28px 0;
  font-size: 17px; color: var(--ink); font-style: italic; line-height: 1.65;
}

/* ── ABOUT — TIMELINE ── */
.timeline-section { background: var(--ink); padding: 100px 0; }
.timeline-section .tag { background: rgba(26,86,219,0.2); color: #7BA7F5; }
.timeline-section h2 { color: #fff; font-size: clamp(28px,3.5vw,48px); font-weight: 800; margin: 16px 0 56px; }
.timeline { position: relative; max-width: 720px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 28px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--accent) 0%, rgba(26,86,219,0.15) 100%); }
.timeline-item { display: flex; gap: 32px; margin-bottom: 48px; position: relative; }
.timeline-dot {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: var(--dark-surface); border: 2px solid rgba(26,86,219,0.4);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 800;
  color: var(--accent); position: relative; z-index: 1; transition: all 0.3s;
}
.timeline-item:hover .timeline-dot { background: var(--accent); border-color: var(--accent); color: #fff; }
.timeline-body { padding-top: 14px; }
.timeline-year { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.timeline-title { font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.timeline-text { font-size: 15px; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* ── ABOUT — VALUES ── */
.values-section { padding: 100px 0; background: var(--bg2); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.value-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: transform 0.32s var(--ease-spring), box-shadow 0.32s var(--ease-out), border-color 0.32s var(--ease-out); }
.value-card:hover { box-shadow: var(--shadow-lg), 0 0 0 1px rgba(var(--accent-rgb),0.3); transform: translateY(-6px); border-color: transparent; }
.value-icon { width: 52px; height: 52px; background: var(--accent-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.value-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.value-card p { font-size: 15px; color: var(--ink2); line-height: 1.7; }

/* ── ABOUT — TEAM ── */
.team-section { padding: 100px 0; }
.team-card { max-width: 480px; margin: 56px auto 0; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: transform 0.32s var(--ease-spring), box-shadow 0.32s var(--ease-out), border-color 0.32s var(--ease-out); display: grid; grid-template-columns: 200px 1fr; }
.team-card:hover { box-shadow: var(--shadow-lg), 0 0 0 1px rgba(var(--accent-rgb),0.3); transform: translateY(-6px); border-color: transparent; }
.team-photo { background: linear-gradient(135deg, var(--bg2), var(--bg3)); display: flex; align-items: center; justify-content: center; min-height: 220px; }
.team-photo-icon { font-size: 72px; opacity: 0.12; }
.team-info { padding: 28px; }
.team-name { font-size: 22px; font-weight: 800; }
.team-role { font-size: 14px; color: var(--accent); font-weight: 600; margin: 4px 0 16px; }
.team-bio { font-size: 14px; color: var(--ink2); line-height: 1.7; }
.team-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.team-badge { font-size: 12px; font-weight: 600; padding: 5px 12px; background: var(--bg2); border-radius: 100px; color: var(--ink2); border: 1px solid var(--border); }

/* ── ABOUT — CERTIFICATIONS ── */
.cert-section { background: var(--accent); padding: 80px 0; }
.cert-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; margin-top: 40px; }
.cert-item { text-align: center; }
.cert-icon { width: 64px; height: 64px; background: rgba(255,255,255,0.15); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.cert-label { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 700; color: #fff; }
.cert-sub { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 4px; }

/* ── CONTACT PAGE ── */
.quick-actions { background: var(--accent); }
.quick-grid { display: grid; grid-template-columns: repeat(3,1fr); }
.quick-item { padding: 32px; text-align: center; border-right: 1px solid rgba(255,255,255,0.15); transition: background 0.2s; text-decoration: none; display: block; }
.quick-item:last-child { border-right: none; }
.quick-item:hover { background: rgba(255,255,255,0.1); }
.quick-item-icon { font-size: 28px; margin-bottom: 8px; }
.quick-item-label { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 700; color: #fff; }
.quick-item-sub { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 4px; }
.contact-main { padding: 80px 0; }
.contact-main-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-info h2 { font-size: clamp(24px,3vw,36px); font-weight: 800; margin-bottom: 24px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; display: flex; align-items: flex-start; gap: 16px; transition: transform 0.28s var(--ease-spring), box-shadow 0.28s var(--ease-out), border-color 0.28s var(--ease-out); text-decoration: none; }
.contact-card:hover { box-shadow: var(--shadow-lg), 0 0 0 1px rgba(var(--accent-rgb),0.3); transform: translateY(-4px); border-color: transparent; }
.contact-card-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--accent-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent); }
.contact-card-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink3); margin-bottom: 4px; }
.contact-card-value { font-family: 'Inter', sans-serif; font-size: 17px; font-weight: 700; color: var(--ink); }
.contact-card-sub { font-size: 13px; color: var(--ink3); margin-top: 2px; }
.hours-card { background: var(--ink); border-radius: var(--radius-lg); padding: 28px; margin-top: 16px; }
.hours-card h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; display: inline-block; animation: blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.hours-card .hours-row:last-child { border-bottom: none; }
.hours-card .hours-time { color: #fff; }
.hours-today { background: rgba(26,86,219,0.2); margin: 0 -4px; padding: 10px 4px; border-radius: 6px; border-bottom: none !important; }
.hours-today .hours-day { color: #7BA7F5; font-weight: 600; }
.hours-today .hours-time { color: #7BA7F5; }
.booking-form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow); }
.booking-form-card h3 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.booking-form-card .subtitle { font-size: 15px; color: var(--ink2); margin-bottom: 32px; }
.booking-form-card .form-group { margin-bottom: 18px; }
.booking-form-card .form-submit .btn { padding: 17px; }

/* ── FOOTER ── */
footer { background: #080C10; padding: 72px 0 32px; }
.footer-top { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 56px; }
.footer-logo img { height: 44px; filter: brightness(0) invert(1); margin-bottom: 4px; }
.footer-logo .logo-fallback { font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 4px; }
.footer-logo .logo-fallback span { color: var(--accent); }
.footer-brand-desc { font-size: 14px; color: rgba(255,255,255,0.35); line-height: 1.75; margin-top: 16px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 38px; height: 38px; border-radius: 9px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.4); transition: all 0.2s; }
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s var(--ease-out); position: relative; display: inline-block; }
.footer-col a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1.5px;
  background: rgba(255,255,255,0.6); border-radius: 2px;
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.28s var(--ease-spring);
}
.footer-col a:hover::after { transform: scaleX(1); }
.footer-col a:hover { color: #fff; }
.footer-contact-row { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-row svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-row span { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.5; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.2); }

/* ── STICKY CTA ── */
.sticky-cta { position: fixed; bottom: 24px; right: 24px; z-index: 150; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.sticky-btn {
  background: var(--accent); color: #fff; border: none; cursor: pointer;
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(var(--accent-rgb),0.45);
  transition: all 0.22s; animation: pulse-btn 2.5s ease-in-out infinite;
}
.sticky-btn:hover { transform: scale(1.12); background: var(--accent-dark); }
@keyframes pulse-btn { 0%, 100% { box-shadow: 0 4px 20px rgba(var(--accent-rgb),0.45); } 50% { box-shadow: 0 4px 32px rgba(var(--accent-rgb),0.7); } }

/* ── SCROLL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(28px) scale(0.98); transition: opacity var(--dur-slow) var(--ease-spring), transform var(--dur-slow) var(--ease-spring); will-change: transform, opacity; }
.reveal.up { opacity: 1; transform: translateY(0) scale(1); }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity var(--dur-slow) var(--ease-spring), transform var(--dur-slow) var(--ease-spring); will-change: transform, opacity; }
.reveal-left.up { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity var(--dur-slow) var(--ease-spring), transform var(--dur-slow) var(--ease-spring); will-change: transform, opacity; }
.reveal-right.up { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: 0.08s; } .d2 { transition-delay: 0.16s; } .d3 { transition-delay: 0.24s; } .d4 { transition-delay: 0.32s; } .d5 { transition-delay: 0.4s; }

/* ── STAGGER: grid cards cascade by their position in the grid ──
   These cards are themselves .reveal elements (each revealed by the IntersectionObserver).
   nth-child transition-delays refine the cascade by grid position and override the
   generic .d* delay classes for a smoother, position-aware sequence. */
.services-grid .service-card.reveal,
.values-grid .value-card.reveal,
.reviews-grid .review-card.reveal,
.process-steps .process-step.reveal {
  transition: opacity 0.6s var(--ease-spring), transform 0.6s var(--ease-spring),
              box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}
.services-grid .service-card.reveal:nth-child(1), .values-grid .value-card.reveal:nth-child(1), .reviews-grid .review-card.reveal:nth-child(1), .process-steps .process-step.reveal:nth-child(1) { transition-delay: 0.04s; }
.services-grid .service-card.reveal:nth-child(2), .values-grid .value-card.reveal:nth-child(2), .reviews-grid .review-card.reveal:nth-child(2), .process-steps .process-step.reveal:nth-child(2) { transition-delay: 0.11s; }
.services-grid .service-card.reveal:nth-child(3), .values-grid .value-card.reveal:nth-child(3), .reviews-grid .review-card.reveal:nth-child(3), .process-steps .process-step.reveal:nth-child(3) { transition-delay: 0.18s; }
.services-grid .service-card.reveal:nth-child(4), .values-grid .value-card.reveal:nth-child(4), .reviews-grid .review-card.reveal:nth-child(4), .process-steps .process-step.reveal:nth-child(4) { transition-delay: 0.25s; }
.services-grid .service-card.reveal:nth-child(5), .values-grid .value-card.reveal:nth-child(5), .reviews-grid .review-card.reveal:nth-child(5) { transition-delay: 0.32s; }
.services-grid .service-card.reveal:nth-child(n+6), .values-grid .value-card.reveal:nth-child(n+6), .reviews-grid .review-card.reveal:nth-child(n+6) { transition-delay: 0.39s; }

/* ── STAGGER: .why-feature items (plain, not .reveal) — CSS-only fade-up ── */
@keyframes feature-fade-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.why-features .why-feature { opacity: 0; animation: feature-fade-in 0.6s var(--ease-spring) forwards; }
.why-features .why-feature:nth-child(1) { animation-delay: 0.08s; }
.why-features .why-feature:nth-child(2) { animation-delay: 0.18s; }
.why-features .why-feature:nth-child(3) { animation-delay: 0.28s; }
.why-features .why-feature:nth-child(4) { animation-delay: 0.38s; }
.why-features .why-feature:nth-child(n+5) { animation-delay: 0.48s; }

/* ── GALLERY: CSS-only staggered fade-in (items are not .reveal) ──
   Animate opacity only (not transform) so the hover lift transform stays intact. */
@keyframes gallery-fade-in { from { opacity: 0; } to { opacity: 1; } }
.gallery-grid .gallery-item { opacity: 0; animation: gallery-fade-in 0.6s var(--ease-out) forwards; }
.gallery-grid .gallery-item:nth-child(1) { animation-delay: 0.04s; }
.gallery-grid .gallery-item:nth-child(2) { animation-delay: 0.10s; }
.gallery-grid .gallery-item:nth-child(3) { animation-delay: 0.16s; }
.gallery-grid .gallery-item:nth-child(4) { animation-delay: 0.22s; }
.gallery-grid .gallery-item:nth-child(5) { animation-delay: 0.28s; }
.gallery-grid .gallery-item:nth-child(6) { animation-delay: 0.34s; }
.gallery-grid .gallery-item:nth-child(7) { animation-delay: 0.40s; }
.gallery-grid .gallery-item:nth-child(8) { animation-delay: 0.46s; }
.gallery-grid .gallery-item:nth-child(n+9) { animation-delay: 0.52s; }

/* ── PAGE TRANSITIONS: View Transitions API (cross-document MPA) ── */
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: vt-fade-out 0.22s var(--ease-out) both; }
::view-transition-new(root) { animation: vt-fade-in 0.26s var(--ease-out) both; }
@keyframes vt-fade-out { from { opacity: 1; } to { opacity: 0; } }
@keyframes vt-fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

@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, .reveal-left, .reveal-right { opacity: 1; transform: none; }
  /* new effects neutralised */
  .btn::before { display: none !important; }                 /* button sheen */
  .nav-links a::after, .footer-col a::after { transition: none !important; } /* link underlines: no grow */
  input:focus, select:focus, textarea:focus { transform: none !important; } /* no input lift */
  .gallery-grid .gallery-item { opacity: 1 !important; animation: none !important; } /* gallery fade-in off */
  .why-features .why-feature { opacity: 1 !important; transform: none !important; animation: none !important; } /* feature fade-in off */
  .service-card:hover, .value-card:hover, .review-card:hover,
  .team-card:hover, .contact-card:hover, .gallery-item:hover { transform: none !important; } /* no hover lift */
  /* cross-document view transition cross-fade off */
  ::view-transition-old(root), ::view-transition-new(root) { animation: none !important; }
}
/* fully disable the cross-page transition cross-fade when reduced motion is requested */
@media (prefers-reduced-motion: reduce) {
  @view-transition { navigation: none; }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 100px 32px 56px; }
  .hero-visual { height: 60vw; min-height: 320px; }
  .why-grid, .contact-grid, .faq-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-accent-img, .why-cert-badge { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .numbers-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .story-grid { grid-template-columns: 1fr; gap: 48px; }
  .team-card { grid-template-columns: 1fr; max-width: 400px; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .contact-main-grid { grid-template-columns: 1fr; gap: 40px; }
  .quick-grid { grid-template-columns: 1fr; }
  .quick-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .quick-item:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-right { display: none; }
  .hamburger { display: flex; align-items: center; justify-content: center; }
  .services-grid, .reviews-grid { grid-template-columns: 1fr; }
  .process-steps, .numbers-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .service-full-item, .service-full-item.reverse { grid-template-columns: 1fr; direction: ltr; gap: 32px; }
  .values-grid { grid-template-columns: 1fr; }
  .cert-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .booking-form-card { padding: 28px 20px; }
  .map-overlay-card { display: none; }
}

/* ── SUPPLIER LOGOS (trusted strip) ── */
.trusted-logo {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 8px; padding: 8px 14px; height: 38px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.14); transition: transform 0.2s;
}
.trusted-logo:hover { transform: translateY(-2px); }
.trusted-logo img { height: 22px; width: auto; max-width: 90px; object-fit: contain; display: block; }

/* ── CAR BRAND LOGOS (ticker) ── */
.brand-chip { display: inline-flex; align-items: center; justify-content: center; padding: 14px 22px; min-width: 92px; }
.brand-chip img { height: 30px; width: auto; max-width: 110px; object-fit: contain; display: block; transition: transform 0.25s; }
.brand-chip:hover img { transform: scale(1.08); }

/* ── TEAM (2-up) ── */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 920px; margin: 56px auto 0; }
.team-grid .team-card { margin: 0; max-width: none; grid-template-columns: 140px 1fr; }
.team-photo { overflow: hidden; }
.team-photo img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; display: block; }
@media (max-width: 860px) {
  .team-grid { grid-template-columns: 1fr; max-width: 440px; }
  .team-grid .team-card { grid-template-columns: 1fr; }
}

/* ── GALLERY ── */
.gallery-section { padding: 100px 0; background: var(--bg2); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 48px; }
.gallery-item { position: relative; aspect-ratio: 1 / 1; border-radius: var(--radius); overflow: hidden; cursor: pointer; background: var(--bg3); border: none; padding: 0; transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-out); }
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); z-index: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s var(--ease-spring); }
.gallery-item:hover img { transform: scale(1.09); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: rgba(26,86,219,0); transition: background 0.25s; }
.gallery-item:hover::after { background: rgba(26,86,219,0.12); }
@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── LIGHTBOX ── */
.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(8,12,16,0.93); backdrop-filter: blur(4px); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 10px; box-shadow: 0 24px 70px rgba(0,0,0,0.55); }
.lightbox-btn { position: absolute; background: rgba(255,255,255,0.12); color: #fff; border: none; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; font-size: 22px; line-height: 1; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.lightbox-btn:hover { background: rgba(255,255,255,0.26); }
.lightbox-close { top: 22px; right: 22px; }
.lightbox-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-counter { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.7); font-size: 13px; font-family: 'Inter', sans-serif; }
@media (max-width: 600px) { .lightbox-prev { left: 8px; } .lightbox-next { right: 8px; } .lightbox-btn { width: 42px; height: 42px; } }

/* ── NAV WEATHER ── */
.nav-weather { display: inline-flex; align-items: center; gap: 6px; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; color: var(--ink2); padding: 6px 12px; border-radius: 100px; background: var(--accent-light); white-space: nowrap; }
.nav-weather:empty { display: none; }
.nav-weather .nw-icon { font-size: 15px; line-height: 1; }
.nav-weather .nw-temp { color: var(--ink); }
.nav-weather .nw-city { color: var(--ink3); }
.mobile-weather { margin-top: 16px; justify-content: center; }
.mobile-weather:empty { display: none; }

/* ── COOKIE CONSENT V2 ── */
.cookie-banner {
  position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 1200;
  max-width: 560px; margin: 0 auto; display: none; flex-direction: column; gap: 14px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 22px 24px; box-shadow: 0 16px 50px rgba(13,17,23,0.22);
  opacity: 0; transform: translateY(12px); transition: opacity .28s, transform .28s;
}
.cookie-banner.open { opacity: 1; transform: none; }
.cookie-head strong { font-size: 16px; font-weight: 800; display: block; margin-bottom: 6px; }
.cookie-head p { font-size: 13.5px; color: var(--ink2); line-height: 1.6; }
.cookie-head a { color: var(--accent); font-weight: 600; }
.cookie-prefs { display: flex; flex-direction: column; gap: 8px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 12px 0; }
.cookie-opt { display: flex; align-items: center; justify-content: space-between; font-size: 14px; font-weight: 600; color: var(--ink); }
.cookie-opt input { width: 18px; height: 18px; accent-color: var(--accent); }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.cookie-actions .btn { font-size: 14px; padding: 10px 18px; }
.cookie-btn-ghost { background: transparent; color: var(--ink2); border: 1.5px solid var(--border); }
.cookie-btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.cookie-btn-save { background: var(--ink); color: #fff; }
.cookie-reopen { color: rgba(255,255,255,0.35) !important; }
.cookie-reopen:hover { color: #fff !important; }
@media (max-width: 600px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 18px; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
}

/* ── Honeypot spam trap (visually hidden, off-screen) ── */
.hp-field { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; pointer-events: none; }

/* ── Anchor offset under the fixed navbar + smooth scroll ── */
html { scroll-behavior: smooth; }
.service-full-item, #hero, #services, #why, #reviews, #faq, #contact, #team, #gallery { scroll-margin-top: 88px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ── Desktop nav dropdown (Υπηρεσίες) ── */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: inline-flex; align-items: center; gap: 4px; }
.nav-caret { transition: transform 0.2s var(--ease-out); }
.nav-dropdown:hover .nav-caret, .nav-dropdown:focus-within .nav-caret { transform: rotate(180deg); }
.nav-submenu {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 240px;
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow-lg); padding: 8px; list-style: none;
  display: grid; gap: 2px; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity 0.18s var(--ease-out), transform 0.18s var(--ease-out), visibility 0.18s;
  z-index: 210;
}
.nav-dropdown:hover .nav-submenu, .nav-dropdown:focus-within .nav-submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-submenu a { display: block; padding: 8px 12px; font-size: 13.5px; font-weight: 500; color: var(--ink2); border-radius: 8px; white-space: nowrap; }
.nav-submenu a::after { display: none; }
.nav-submenu a:hover { background: var(--accent-light); color: var(--accent); }

/* ── Mobile nav dropdown ── */
.m-dropdown-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.m-dropdown-head a { flex: 1; }
.m-dropdown-toggle { background: var(--bg2); border: none; color: var(--ink2); width: 38px; height: 38px; border-radius: 10px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .15s, color .15s; }
.m-dropdown-toggle svg { transition: transform 0.25s var(--ease-out); }
.m-dropdown.open .m-dropdown-toggle { background: var(--accent); color: #fff; }
.m-dropdown.open .m-dropdown-toggle svg { transform: rotate(180deg); }
.m-submenu { list-style: none; max-height: 0; overflow: hidden; transition: max-height 0.32s var(--ease-out); background: var(--bg2); border-radius: 12px; }
.m-dropdown.open .m-submenu { max-height: 760px; margin: 2px 0 14px; }
.m-submenu a { display: block; border-bottom: none !important; font-size: 14.5px !important; font-weight: 500 !important; padding: 10px 16px !important; color: var(--ink2) !important; }
.m-submenu li:first-child a { padding-top: 12px !important; }
.m-submenu li:last-child a { padding-bottom: 12px !important; }
.m-submenu a:active { color: var(--accent) !important; background: var(--accent-light); border-radius: 8px; }

/* ── Legal / cookies page content ── */
.legal-content { max-width: 760px; }
.legal-content h2 { font-size: clamp(20px, 2.4vw, 26px); font-weight: 800; margin: 28px 0 10px; color: var(--ink); }
.legal-content p { font-size: 16px; line-height: 1.75; color: var(--ink2); margin-bottom: 14px; }
.legal-content a { color: var(--accent); }
