/* =============================================
   VARIABLES & RESET
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --navy:      #002B41;
  --blue:      #09619D;
  --lightblue: #247EA7;
  --accent:    #5BB8E8;
  --white:     #ffffff;
  --offwhite:  #F4F8FB;
  --light-gray:#E8EFF5;
  --text:      #1A2C3A;
  --text-muted:#5A7A8A;
  --border:    #D0E2EE;
  --font:      'Lexend', sans-serif;
  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(0,43,65,0.10);
  --shadow-lg: 0 8px 48px rgba(0,43,65,0.18);
  --container: 1220px;
  --green:     #22c55e;
  --red:       #ef4444;
}

/* =============================================
   BASE
============================================= */
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--white); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
h1, h2, h3, h4 { line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2rem,4.5vw,3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem,3vw,2.2rem); font-weight: 700; }
h3 { font-size: clamp(1.1rem,2vw,1.4rem); font-weight: 600; }
p  { color: var(--text); line-height: 1.75; }

/* =============================================
   UTILITIES
============================================= */
.section-label {
  display: inline-block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lightblue); margin-bottom: 10px;
}
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }
.section-title { font-size: clamp(1.6rem,3vw,2.2rem); color: var(--navy); margin-bottom: 14px; }
.section-subtitle { font-size: 1rem; color: var(--text-muted); max-width: 580px; line-height: 1.7; }

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px;
  border-radius: var(--radius); font-family: var(--font); font-size: 0.95rem;
  font-weight: 600; cursor: pointer; transition: all 0.3s ease;
  border: 2px solid transparent; text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--blue); color: var(--white); border-color: var(--blue); }
.btn-primary:hover { background: var(--navy); border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.55); }
.btn-outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-outline-dark:hover { background: var(--blue); color: var(--white); }

/* =============================================
   ANIMATIONS
============================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   HEADER
============================================= */
/* Default: solid header for inner pages — no transition so it's always immediately visible */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy); padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,43,65,0.25);
}
/* Index page: starts transparent, transitions to solid on scroll */
#site-header.hero-header {
  background: transparent; padding: 18px 0; box-shadow: none;
  transition: background 0.4s, box-shadow 0.4s, padding 0.3s;
}
#site-header.hero-header.scrolled {
  background: rgba(0,43,65,0.97); backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,43,65,0.25); padding: 12px 0;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.site-logo img { height: 44px; width: auto; transition: height 0.3s; }
#site-header.hero-header .site-logo img { height: 52px; }
#site-header.hero-header.scrolled .site-logo img { height: 44px; }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav > li { position: relative; }
.main-nav > li > a,
.main-nav > li > button {
  display: flex; align-items: center; gap: 5px; padding: 8px 13px;
  font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.88);
  background: none; border: none; border-radius: var(--radius); cursor: pointer;
  font-family: var(--font); transition: all 0.25s; white-space: nowrap;
}
.main-nav > li > a:hover,
.main-nav > li > button:hover,
.main-nav > li > a.active { color: var(--white); background: rgba(255,255,255,0.12); }
.main-nav > li > a.active { color: var(--accent); }

.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 230px;
  padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.25s; z-index: 100; border: 1px solid var(--border);
}
.main-nav > li:hover .dropdown-menu,
.main-nav > li:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu li a {
  display: block; padding: 10px 20px; font-size: 0.85rem; font-weight: 500;
  color: var(--text); transition: all 0.2s;
}
.dropdown-menu li a:hover { background: var(--offwhite); color: var(--blue); padding-left: 28px; }

.nav-chevron { display: inline-block; width: 14px; height: 14px; transition: transform 0.3s; }
.main-nav > li:hover .nav-chevron { transform: rotate(180deg); }

.header-actions { display: flex; align-items: center; gap: 12px; }
.lang-switcher { display: flex; align-items: center; gap: 2px; background: rgba(255,255,255,0.1); border-radius: var(--radius); padding: 3px; }
.lang-switcher a { padding: 5px 10px; font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.65); border-radius: 5px; transition: all 0.2s; }
.lang-switcher a.active, .lang-switcher a:hover { background: var(--blue); color: var(--white); }

.mobile-menu-btn { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.mobile-menu-btn span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: 0; background: var(--navy); z-index: 999;
  padding: 90px 28px 40px; display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%); transition: transform 0.35s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a, .mobile-nav button {
  display: block; padding: 14px 0; font-size: 1.15rem; font-weight: 600;
  color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.08);
  background: none; border-left: none; border-right: none; border-top: none;
  text-align: left; font-family: var(--font); cursor: pointer; width: 100%;
}
.mobile-nav a:hover, .mobile-nav button:hover { color: var(--accent); }
.mobile-nav-sub { padding-left: 16px; display: none; }
.mobile-nav-sub.open { display: block; }
.mobile-nav-sub a { font-size: 1rem; font-weight: 500; color: rgba(255,255,255,0.6); padding: 10px 0; }
.mobile-lang { display: flex; gap: 8px; padding-top: 20px; }
.mobile-lang a { border: 1px solid rgba(255,255,255,0.2); padding: 8px 18px; border-radius: var(--radius); font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.mobile-lang a.active { background: var(--blue); color: white; border-color: var(--blue); }

/* =============================================
   PAGE HERO
============================================= */
.page-hero {
  position: relative; height: 360px; background: var(--navy);
  display: flex; align-items: center; overflow: hidden; padding-top: 68px;
}
.page-hero-bg {
  position: absolute; inset: -8%; background-size: cover;
  background-position: center; filter: brightness(0.32);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,43,65,0.75) 0%, rgba(9,97,157,0.45) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.breadcrumb a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { opacity: 0.4; }
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p  { color: rgba(255,255,255,0.78); font-size: 1.1rem; max-width: 600px; }

/* =============================================
   CTA SECTION
============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 88px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: rgba(255,255,255,0.03); top: -280px; right: -120px; pointer-events: none;
}
.cta-section::after {
  content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.03); bottom: -200px; left: -80px; pointer-events: none;
}
.cta-inner { position: relative; z-index: 2; }
.cta-section h2 { color: var(--white); font-size: clamp(1.8rem,3vw,2.5rem); margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 32px; }
.cta-contact-info { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.cta-contact-info a {
  display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7);
  font-size: 0.9rem; font-weight: 500; transition: color 0.2s;
}
.cta-contact-info a:hover { color: white; }
.cta-contact-info a svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.cta-divider { color: rgba(255,255,255,0.25); }

/* =============================================
   FOOTER
============================================= */
#site-footer { background: var(--navy); color: rgba(255,255,255,0.75); padding-top: 64px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo { display: block; margin-bottom: 16px; }
.footer-logo img { height: 46px; }
.footer-desc { font-size: 0.855rem; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; }
.social-link {
  width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; color: rgba(255,255,255,0.65);
}
.social-link:hover { background: var(--blue); color: white; }
.social-link svg { width: 18px; height: 18px; fill: currentColor; }
.footer-col h4 {
  color: var(--white); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.855rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.855rem; color: rgba(255,255,255,0.6); margin-bottom: 14px;
}
.footer-contact-item svg { width: 15px; height: 15px; min-width: 15px; margin-top: 3px; stroke: var(--accent); fill: none; stroke-width: 2; }
.footer-contact-item a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  padding: 20px 0; display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom-left { font-size: 0.78rem; color: rgba(255,255,255,0.38); }
.footer-legal-links { display: flex; gap: 18px; }
.footer-legal-links a { font-size: 0.78rem; color: rgba(255,255,255,0.38); transition: color 0.2s; }
.footer-legal-links a:hover { color: var(--accent); }
.footer-bottom-right { display: flex; align-items: center; gap: 10px; }
.footer-bottom-right span { font-size: 0.78rem; color: rgba(255,255,255,0.38); }
.footer-bottom-right img { height: 20px; opacity: 0.65; transition: opacity 0.2s; }
.footer-bottom-right img:hover { opacity: 1; }

/* =============================================
   RESPONSIVE BASE
============================================= */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .main-nav, .header-actions .btn-primary { display: none; }
  .mobile-menu-btn { display: flex; }
  .page-hero { height: 280px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* =============================================
   INDEX PAGE
============================================= */

/* Hero Slider */
.hero-slider {
  position: relative; height: 100vh; min-height: 600px; max-height: 920px;
  overflow: hidden; background: var(--navy);
}
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease; z-index: 1; }
.slide.active { opacity: 1; z-index: 2; }
.slide-bg {
  position: absolute; inset: -8%; background-size: cover; background-position: center;
  will-change: transform; transition: transform 0.1s linear;
}
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,43,65,0.82) 0%, rgba(0,43,65,0.42) 55%, rgba(9,97,157,0.28) 100%);
  z-index: 1;
}
.slide-content { position: absolute; inset: 0; display: flex; align-items: center; z-index: 2; }
.slide-text { max-width: 680px; }
.slide-text .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px;
}
.slide-text .eyebrow::before {
  content: ''; display: block; width: 32px; height: 2px; background: var(--accent); border-radius: 2px;
}
.slide-text h1 { color: var(--white); margin-bottom: 20px; text-wrap: pretty; }
.slide-text p { font-size: clamp(1rem,1.5vw,1.12rem); color: rgba(255,255,255,0.83); margin-bottom: 34px; max-width: 520px; }
.slide-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.slider-nav {
  position: absolute; bottom: 38px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 10;
}
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.35);
  border: none; cursor: pointer; transition: all 0.3s; padding: 0;
}
.slider-dot.active { background: var(--white); width: 28px; border-radius: 5px; }

.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  color: white; width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s; backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: var(--blue); border-color: var(--blue); }
.slider-arrow.prev { left: 28px; }
.slider-arrow.next { right: 28px; }
.slider-arrow svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 2; }

.scroll-indicator {
  position: absolute; bottom: 32px; right: 44px; display: flex; flex-direction: column;
  align-items: center; gap: 6px; z-index: 10; color: rgba(255,255,255,0.45);
  font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.scroll-indicator::after {
  content: ''; display: block; width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
}

/* Why Us */
.why-us { background: var(--offwhite); padding: 84px 0; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 24px; }
.why-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px;
  border: 1px solid var(--border); transition: all 0.3s; position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--lightblue));
  transform: scaleX(0); transition: transform 0.3s;
}
.why-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; margin-bottom: 20px;
}
.why-icon svg { width: 26px; height: 26px; stroke: white; fill: none; stroke-width: 1.8; }
.why-card h3 { font-size: 1rem; margin-bottom: 10px; color: var(--navy); }
.why-card p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* Services */
.services-section { padding: 84px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }
.service-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/4; background: var(--navy); cursor: pointer; transition: all 0.35s;
  text-decoration: none;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card-img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.55s ease;
}
.service-card:hover .service-card-img { transform: scale(1.07); }
.service-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,43,65,0.94) 0%, rgba(0,43,65,0.3) 55%, transparent 100%);
}
.service-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 20px; z-index: 2; }
.service-card-content h3 { color: var(--white); font-size: 1rem; margin-bottom: 8px; }
.service-card-content p  { color: rgba(255,255,255,0.72); font-size: 0.78rem; line-height: 1.5; margin-bottom: 14px; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.78rem; font-weight: 700; color: var(--accent); transition: gap 0.2s;
}
.service-card:hover .service-link { gap: 10px; }
.service-link svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2.5; }

/* Clients */
.clients-section { padding: 84px 0; background: var(--navy); }
.clients-section .section-label { color: var(--accent); }
.clients-section .section-title { color: var(--white); }
.clients-section .section-subtitle { color: rgba(255,255,255,0.6); }
.clients-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 16px; }
.client-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 1; background: var(--blue); transition: transform 0.3s;
}
.client-card:hover { transform: scale(1.04); }
.client-card-img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 0.4s;
}
.client-card:hover .client-card-img { transform: scale(1.08); }
.client-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,43,65,0.88) 0%, rgba(0,43,65,0.15) 100%);
  display: flex; align-items: flex-end; padding: 16px;
}
.client-card-overlay span { color: var(--white); font-size: 0.82rem; font-weight: 600; }

/* Areas */
.areas-section { padding: 84px 0; background: var(--offwhite); }
.areas-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.areas-map-box {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--light-gray); height: 420px;
  display: flex; flex-direction: column; gap: 16px;
  border: 1px solid var(--border); padding: 0;
}
.areas-map-inner { text-align: center; }
.areas-map-inner svg { width: 72px; height: 72px; margin: 0 auto 16px; opacity: 0.25; }
.areas-map-inner p { font-size: 0.85rem; color: var(--text-muted); }
.greece-map { width: 100%; height: 100%; object-fit: contain; }
.areas-content h2 { margin-bottom: 16px; }
.areas-content p   { color: var(--text-muted); margin-bottom: 28px; line-height: 1.75; }
.areas-tags { display: flex; gap: 10px; flex-wrap: wrap; }
.area-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--white); border: 1.5px solid var(--border);
  color: var(--navy); font-size: 0.85rem; font-weight: 600;
  padding: 9px 18px; border-radius: 100px; transition: all 0.25s;
}
.area-tag:hover { border-color: var(--blue); color: var(--blue); }
.area-tag svg { width: 14px; height: 14px; stroke: var(--blue); fill: none; stroke-width: 2; }

/* FAQ */
.faq-section { padding: 84px 0; background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 960px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; background: var(--white); transition: border-color 0.25s;
}
.faq-item:hover { border-color: var(--lightblue); }
.faq-question {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  padding: 20px 22px; cursor: pointer; font-weight: 600; font-size: 0.9rem; color: var(--navy);
  background: none; border: none; width: 100%; text-align: left; font-family: var(--font); line-height: 1.45;
}
.faq-icon {
  width: 22px; height: 22px; min-width: 22px; background: var(--offwhite); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, background 0.3s; margin-top: 1px;
}
.faq-item.open .faq-icon { background: var(--blue); transform: rotate(45deg); }
.faq-icon svg { width: 10px; height: 10px; stroke: var(--text); stroke-width: 2.5; fill: none; }
.faq-item.open .faq-icon svg { stroke: white; }
.faq-answer {
  display: none; padding: 0 22px 20px; font-size: 0.875rem; color: var(--text-muted);
  line-height: 1.72; border-top: 1px solid var(--border);
}
.faq-item.open .faq-answer { display: block; }

/* Index Responsive */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3,1fr); }
  .clients-grid  { grid-template-columns: repeat(3,1fr); }
  .areas-inner   { grid-template-columns: 1fr; gap: 36px; }
  .faq-grid      { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hero-slider { min-height: 520px; max-height: 700px; }
  .slide-text h1 { font-size: 1.85rem; }
  .slider-arrow  { display: none; }
  .scroll-indicator { display: none; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .clients-grid  { grid-template-columns: 1fr 1fr; }
  .areas-map-box { height: 240px; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .slide-btns    { flex-direction: column; }
  .cta-btns      { flex-direction: column; align-items: center; }
}

/* =============================================
   ABOUT PAGE
============================================= */
.about-intro { padding: 80px 0; background: var(--white); }
.about-intro-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-intro-text h2 { margin-bottom: 20px; }
.about-intro-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 18px; }

.team-section { padding: 80px 0; background: var(--offwhite); }
.team-inner { display: grid; grid-template-columns: 360px 1fr; gap: 64px; align-items: start; }
.team-photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.team-info { padding-top: 12px; }
.team-name { font-size: clamp(1.6rem,2.5vw,2rem); font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.team-title { font-size: 1rem; color: var(--blue); font-weight: 600; margin-bottom: 24px; }
.team-bio { color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }
.team-credentials { display: flex; flex-direction: column; gap: 12px; }
.credential { display: flex; align-items: center; gap: 12px; padding: 14px 18px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); }
.credential-icon { width: 36px; height: 36px; min-width: 36px; background: linear-gradient(135deg,var(--navy),var(--blue)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.credential-icon svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 1.8; }
.credential span { font-size: 0.875rem; font-weight: 600; color: var(--navy); }

.mission-section { padding: 80px 0; background: var(--navy); }
.mission-section .section-label { color: var(--accent); }
.mission-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.mission-text h2 { color: var(--white); margin-bottom: 20px; }
.mission-text p  { color: rgba(255,255,255,0.72); line-height: 1.8; }
.mission-points { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.mission-point { display: flex; align-items: flex-start; gap: 14px; }
.mission-check { width: 22px; height: 22px; min-width: 22px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
.mission-check svg { width: 12px; height: 12px; stroke: white; fill: none; stroke-width: 2.5; }
.mission-point p { color: rgba(255,255,255,0.78); font-size: 0.9rem; line-height: 1.65; }
.mission-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 28px 24px; text-align: center; }
.stat-number { font-size: 2.4rem; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.stat-label  { font-size: 0.82rem; color: rgba(255,255,255,0.6); font-weight: 500; }

.whyus-section { padding: 80px 0; background: var(--white); }
.whyus-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.whyus-item { display: flex; align-items: flex-start; gap: 16px; padding: 24px; background: var(--offwhite); border-radius: var(--radius); border: 1px solid var(--border); transition: all 0.3s; }
.whyus-item:hover { border-color: var(--lightblue); box-shadow: var(--shadow); }
.whyus-icon { width: 44px; height: 44px; min-width: 44px; background: linear-gradient(135deg,var(--navy),var(--blue)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.whyus-icon svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 1.8; }
.whyus-item h3 { font-size: 0.95rem; margin-bottom: 6px; color: var(--navy); }
.whyus-item p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* About Responsive */
@media (max-width: 1024px) {
  .about-intro-inner, .team-inner, .mission-inner { grid-template-columns: 1fr; gap: 40px; }
  .team-photo { aspect-ratio: 3/2; max-height: 400px; }
  .whyus-grid { grid-template-columns: 1fr; }
}

/* =============================================
   CONTACT PAGE
============================================= */
.contact-section { padding: 80px 0; background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: start; }

.contact-form-wrap { background: var(--offwhite); border-radius: var(--radius-lg); padding: 40px; border: 1px solid var(--border); }
.contact-form-wrap h2 { margin-bottom: 8px; font-size: 1.5rem; }
.contact-form-wrap > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }
/* Honeypot field — invisible to humans, bots fill it in */
.hp-field { position: absolute; left: -9999px; width: 0; height: 0; overflow: hidden; opacity: 0; pointer-events: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group .required-star { color: var(--blue); }
.form-control {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-family: var(--font); font-size: 0.9rem;
  color: var(--text); background: var(--white); transition: border-color 0.25s, box-shadow 0.25s; outline: none;
}
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(9,97,157,0.12); }
.form-control::placeholder { color: rgba(90,122,138,0.5); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.acceptance-group { margin: 16px 0; }
.acceptance-group label { display: flex; align-items: flex-start; gap: 10px; font-size: 0.82rem; color: var(--text-muted); cursor: pointer; line-height: 1.55; }
.acceptance-group input[type=checkbox] { margin-top: 2px; accent-color: var(--blue); width: 16px; height: 16px; flex-shrink: 0; }
.acceptance-group a { color: var(--blue); text-decoration: underline; }
.form-submit-btn {
  width: 100%; padding: 16px; background: var(--blue); color: white; border: none;
  border-radius: var(--radius); font-family: var(--font); font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit-btn:hover { background: var(--navy); transform: translateY(-1px); }
.form-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.recaptcha-note { font-size: 0.72rem; color: var(--text-muted); text-align: center; margin-top: 10px; }
.recaptcha-note a { color: var(--blue); }
.form-message { padding: 16px 20px; border-radius: var(--radius); margin-bottom: 20px; font-size: 0.9rem; font-weight: 500; display: none; }
.form-message.success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; display: flex; align-items: center; gap: 10px; }
.form-message.error   { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; display: flex; align-items: center; gap: 10px; }
.form-message svg { width: 20px; height: 20px; flex-shrink: 0; }

.contact-info h3 { font-size: 1.3rem; margin-bottom: 24px; }
.info-card { background: var(--offwhite); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 16px; transition: all 0.3s; }
.info-card:hover { border-color: var(--lightblue); box-shadow: var(--shadow); }
.info-card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 8px; }
.info-icon { width: 44px; height: 44px; min-width: 44px; background: linear-gradient(135deg,var(--navy),var(--blue)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.info-icon svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 1.8; }
.info-card h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--navy); }
.info-card p, .info-card a { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }
.info-card a:hover { color: var(--blue); }
.map-placeholder { background: var(--light-gray); border-radius: var(--radius-lg); height: 220px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); margin-top: 20px; overflow: hidden; }
.map-placeholder iframe { width: 100%; height: 100%; border: none; }

/* Contact Responsive */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
}

/* =============================================
   METHODOLOGY PAGE
============================================= */
.intro-section { padding: 72px 0; background: var(--white); }
.intro-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: center; }
.intro-text .section-label { margin-bottom: 10px; }
.intro-text h2 { margin-bottom: 20px; }
.intro-text p  { color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }

.steps-section { padding: 80px 0; background: var(--offwhite); }
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 0; max-width: 860px; margin: 0 auto; }
.step-item { display: grid; grid-template-columns: 80px 1fr; gap: 28px; padding: 40px 0; border-bottom: 1px solid var(--border); align-items: start; }
.step-item:last-child { border-bottom: none; }
.step-number-wrap { display: flex; flex-direction: column; align-items: center; gap: 0; }
.step-number {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white; font-size: 1.4rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(9,97,157,0.3);
}
.step-line { width: 2px; height: 40px; background: linear-gradient(to bottom, var(--blue), transparent); margin-top: 8px; }
.step-item:last-child .step-line { display: none; }
.step-content h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.15rem; }
.step-content p  { color: var(--text-muted); line-height: 1.75; font-size: 0.95rem; }
.step-badge { display: inline-block; margin-top: 10px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); background: rgba(9,97,157,0.08); padding: 4px 12px; border-radius: 100px; }

.products-section { padding: 80px 0; background: var(--white); }
.products-inner { display: grid; grid-template-columns: 1.2fr 1fr; gap: 72px; align-items: center; }
.products-text h2 { margin-bottom: 20px; }
.products-text p  { color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; }
.certif-list { display: flex; flex-direction: column; gap: 14px; }
.certif-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px; background: var(--offwhite); border-radius: var(--radius); border: 1px solid var(--border); }
.certif-icon { width: 40px; height: 40px; min-width: 40px; background: linear-gradient(135deg,var(--navy),var(--blue)); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.certif-icon svg { width: 20px; height: 20px; stroke: white; fill: none; stroke-width: 1.8; }
.certif-item h4 { font-size: 0.9rem; margin-bottom: 4px; color: var(--navy); }
.certif-item p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }
.products-image { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.products-image img { width: 100%; height: 100%; object-fit: cover; }

/* Methodology Responsive */
@media (max-width: 1024px) {
  .intro-inner, .products-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .step-item { grid-template-columns: 56px 1fr; gap: 16px; }
  .step-number { width: 48px; height: 48px; font-size: 1.1rem; }
}

/* =============================================
   PRIVACY PAGE
============================================= */
.privacy-content { padding: 64px 0 80px; }
.privacy-inner { display: grid; grid-template-columns: 240px 1fr; gap: 64px; align-items: start; }
.toc { position: sticky; top: 88px; background: var(--offwhite); border-radius: var(--radius-lg); padding: 24px; border: 1px solid var(--border); }
.toc h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 16px; }
.toc ul { display: flex; flex-direction: column; gap: 4px; }
.toc ul li a { font-size: 0.82rem; color: var(--text-muted); padding: 6px 10px; border-radius: var(--radius); display: block; transition: all 0.2s; }
.toc ul li a:hover { background: var(--white); color: var(--blue); }
.toc ul li a.active { background: var(--white); color: var(--blue); font-weight: 600; }
.last-updated { font-size: 0.8rem; color: var(--text-muted); background: var(--offwhite); padding: 12px 16px; border-radius: var(--radius); margin-bottom: 32px; border-left: 3px solid var(--blue); }

/* Privacy body scoped overrides */
.privacy-body a:not(.btn) { color: var(--blue); }
.privacy-body a:not(.btn):hover { text-decoration: underline; }
.privacy-body h2 { font-size: 1.35rem; font-weight: 700; margin: 36px 0 12px; padding-top: 8px; border-top: 2px solid var(--border); }
.privacy-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.privacy-body h3 { font-size: 1.05rem; font-weight: 600; margin: 20px 0 8px; }
.privacy-body p { color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; }
.privacy-body ul.content-list { list-style: disc; padding-left: 20px; margin-bottom: 14px; }
.privacy-body ul.content-list li { color: var(--text-muted); line-height: 1.8; margin-bottom: 6px; }

/* Privacy Responsive */
@media (max-width: 1024px) {
  .privacy-inner { grid-template-columns: 1fr; }
  .toc { position: static; }
}
@media (max-width: 768px) {
  .page-hero.privacy-hero { height: 200px; }
}

/* =============================================
   SERVICE PAGES (SHARED)
============================================= */
section { padding: 80px 0; }

.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.intro-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.intro-image { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.intro-image img { width: 100%; height: 100%; object-fit: cover; }

.methods-section { background: var(--offwhite); }
.methods-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 24px; }
.method-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px;
  border: 1px solid var(--border); transition: all 0.3s; position: relative; overflow: hidden;
}
.method-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--lightblue));
  transform: scaleX(0); transition: transform 0.3s;
}
.method-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.method-card:hover::before { transform: scaleX(1); }
.method-num { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.method-card h3 { margin-bottom: 10px; font-size: 1rem; }
.method-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

.pests-section { background: var(--navy); }
.pests-section .section-label { color: var(--accent); }
.pests-section h2 { color: var(--white); }
.pests-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.pest-tag {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 16px 20px; text-align: center;
  color: rgba(255,255,255,0.85); font-size: 0.875rem; font-weight: 600; transition: all 0.3s;
}
.pest-tag:hover { background: var(--blue); border-color: var(--blue); color: white; }

.spaces-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.space-item {
  display: flex; align-items: center; gap: 10px; padding: 14px 18px;
  background: var(--offwhite); border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 0.875rem; font-weight: 600;
  color: var(--navy); transition: all 0.25s;
}
.space-item:hover { border-color: var(--blue); color: var(--blue); }
.space-item svg { width: 16px; height: 16px; stroke: var(--blue); fill: none; stroke-width: 2; flex-shrink: 0; }

/* Service Pages Responsive */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .methods-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .methods-grid { grid-template-columns: 1fr; }
}
