/* ========== CSS RESET & VARIABLES ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --primary: #5DADE2;
  --primary-dark: #2E86C1;
  --primary-light: #AED6F1;
  --dark: #0F1923;
  --dark-soft: #1A2D3D;
  --light: #F0F5FA;
  --cream: #F0F8FF;
  --white: #ffffff;
  --text: #0F1923;
  --text-light: #5A6B7A;
  --shadow: 0 4px 20px rgba(15, 25, 35, 0.08);
  --shadow-lg: 0 12px 40px rgba(15, 25, 35, 0.14);
  --radius: 14px;
  --radius-sm: 8px;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: var(--font-body); }

/* ========== SHARED BUTTON STYLE ========== */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 50px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(93, 173, 226, 0.25);
  font-family: var(--font-body);
}
.btn:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 8px 30px rgba(93, 173, 226, 0.4);
  background: #7CC0E8;
}
.btn:active { transform: scale(0.97); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
  box-shadow: none;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  box-shadow: 0 8px 30px rgba(255,255,255,0.2);
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(15,25,35,0.2);
}
.btn-dark:hover {
  background: var(--dark-soft);
  box-shadow: 0 8px 30px rgba(15,25,35,0.3);
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 1.2rem 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar.scrolled {
  padding: 0.5rem 2.5rem;
  background: rgba(15, 25, 35, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.2);
}
.navbar.navbar-solid {
  background: rgba(15, 25, 35, 0.97);
  backdrop-filter: blur(12px);
}
.navbar.navbar-solid.scrolled { box-shadow: 0 2px 30px rgba(0,0,0,0.2); }
.nav-inner {
  display: flex; align-items: center; justify-content: center;
  width: 100%; max-width: 1200px; position: relative;
}
.lang-toggle {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  display: flex; gap: 0; background: rgba(255,255,255,0.1);
  border-radius: 20px; overflow: hidden; flex-shrink: 0;
}
.lang-btn {
  padding: 0.35rem 0.7rem; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.05em; color: rgba(255,255,255,0.45);
  background: transparent; transition: all 0.3s ease; font-family: var(--font-body);
}
.lang-btn.active { color: var(--dark); background: var(--primary); }
.nav-links-left, .nav-links-right { display: flex; align-items: center; gap: 2rem; }
.nav-links-left { justify-content: flex-end; flex: 1; }
.nav-links-right { justify-content: flex-start; flex: 1; }
.nav-link {
  color: rgba(255,255,255,0.8); font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: all 0.3s ease; position: relative; white-space: nowrap;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--primary); transition: width 0.3s ease;
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }
.nav-link.active { color: var(--primary); }
.nav-link.active::after { width: 100%; }
.nav-logo {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 700;
  color: #fff; letter-spacing: 0.03em; white-space: nowrap;
  transition: font-size 0.4s ease; padding: 0 1.5rem; flex-shrink: 0;
  text-transform: uppercase; display: flex; align-items: center; gap: 0.6rem;
}
.nav-logo img { height: 36px; width: auto; }
.navbar.scrolled .nav-logo { font-size: 1.1rem; }
.navbar.scrolled .nav-link { font-size: 0.8rem; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 8px; z-index: 1001; }
.hamburger span { width: 24px; height: 2px; background: #fff; transition: all 0.3s ease; border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  height: 100svh;
  background: rgba(15, 25, 35, 0.98); backdrop-filter: blur(20px); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; transition: opacity 0.4s ease;
  -webkit-overflow-scrolling: touch; overflow-y: auto;
}
.mobile-menu.active { display: flex; opacity: 1; }
.mobile-menu .nav-link { font-size: 1.3rem; color: #fff; }
.mobile-menu .lang-toggle { margin-top: 1rem; position: static; transform: none; }

/* ========== HERO ========== */
.hero { position: relative; width: 100%; height: 100vh; overflow: hidden; }
.hero-slide {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0; transition: opacity 1s ease;
  display: flex; align-items: center; justify-content: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transform: scale(1.05); transition: transform 6s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(15,25,35,0.55) 0%, rgba(15,25,35,0.7) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 2rem; }
.hero-title {
  font-family: var(--font-display); font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 1.5rem;
  text-transform: uppercase; letter-spacing: 0.03em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-sub {
  color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 520px;
  margin: 0 auto 2rem; line-height: 1.7;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 10;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff; display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s ease; backdrop-filter: blur(4px);
}
.hero-arrow:hover { background: rgba(93,173,226,0.3); border-color: var(--primary); transform: translateY(-50%) scale(1.1); }
.hero-arrow-left { left: 2rem; }
.hero-arrow-right { right: 2rem; }
.hero-dots { position: absolute; bottom: 6.5rem; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 12px; }
.hero-dot {
  width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.3);
  cursor: pointer; transition: all 0.3s ease;
}
.hero-dot.active { background: var(--primary); transform: scale(1.3); box-shadow: 0 0 12px rgba(93,173,226,0.5); }

/* ========== HERO COUNTERS ========== */
.hero-counters {
  position: absolute; bottom: 0; left: 0; width: 100%; z-index: 10;
  background: rgba(15, 25, 35, 0.75); backdrop-filter: blur(8px);
  padding: 1.5rem 2rem;
}
.counters-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; max-width: 1000px; margin: 0 auto; text-align: center;
}
.counter-item { padding: 0.3rem 0; }
.counter-number {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--primary); line-height: 1.1; margin-bottom: 0.2rem;
}
.counter-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.05em; }

/* ========== SECTIONS ========== */
.section { padding: 6rem 2rem; }
.section-title {
  font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; text-align: center; margin-bottom: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.02em;
}
.section-subtitle { text-align: center; color: var(--text-light); font-size: 1.05rem; max-width: 600px; margin: 0 auto 3rem; }

/* ========== PAGE HEADER ========== */
.page-header {
  padding: 10rem 2rem 4rem; text-align: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 100%);
  color: #fff; position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; top: -30%; right: -15%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(93,173,226,0.08) 0%, transparent 70%);
}
.page-header .section-title { color: #fff; }
.page-header .section-subtitle { color: rgba(255,255,255,0.65); }

/* ========== EXPLORE SECTIONS (index.html) ========== */
.explore-section {
  position: relative; height: 65vh; min-height: 450px;
  display: flex; align-items: center; overflow: hidden;
}
.explore-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover; background-position: center;
  transition: transform 0.6s ease;
}
.explore-section:hover .explore-bg { transform: scale(1.03); }
.explore-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(15,25,35,0.8) 0%, rgba(15,25,35,0.5) 100%);
}
.explore-content {
  position: relative; z-index: 2; max-width: 600px; padding: 3rem 4rem;
}
.explore-content h2 {
  font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700; color: #fff; text-transform: uppercase;
  letter-spacing: 0.02em; margin-bottom: 1rem;
}
.explore-content p { color: rgba(255,255,255,0.8); font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; }

/* ========== REVIEWS ========== */
.reviews { background: var(--light); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.review-card {
  background: var(--white); border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow); transition: all 0.3s ease;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-stars { color: var(--primary); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-text { font-size: 0.95rem; color: var(--text); line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
.review-author { font-weight: 700; font-size: 0.85rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; }
.review-source { font-size: 0.75rem; color: var(--text-light); margin-top: 0.3rem; }

/* ========== SERVICES GRID ========== */
.services-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}
.service-card {
  position: relative; width: calc(33.333% - 1.5rem); min-width: 280px; max-width: 380px;
  aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden;
  cursor: default; box-shadow: var(--shadow); transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card .card-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: filter 0.4s ease; filter: brightness(0.45);
}
.service-card:hover .card-bg { filter: brightness(0.3); }
.service-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius);
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(93,173,226,0.2), transparent 60%);
  opacity: 0; transition: opacity 0.3s ease; z-index: 2; pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.card-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 1.5rem; color: #fff; z-index: 1;
}
.card-title { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; text-transform: uppercase; color: #fff; }
.card-desc {
  font-size: 0.9rem; opacity: 0; max-height: 0; overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.4s ease; line-height: 1.5; color: rgba(255,255,255,0.95); font-weight: 500;
}
.service-card:hover .card-desc { opacity: 1; max-height: 120px; }

/* Service card with logos - brighter so brands are visible */
.service-card .card-bg.card-bg-logos {
  filter: brightness(0.7);
  background-size: 80% auto;
  background-position: center 35%;
}
.service-card:hover .card-bg.card-bg-logos { filter: brightness(0.85); }

/* ========== MARQUEE ========== */
.marquee-section { padding: 4rem 0; overflow: hidden; background: var(--light); }
.marquee-section .section-title, .marquee-section .section-subtitle { padding: 0 2rem; }
.marquee-container { overflow: hidden; margin-bottom: 12px; }
.marquee-row { display: flex; gap: 12px; width: max-content; }
.marquee-row-1 { animation: marquee 32s linear infinite; }
.marquee-row-2 { animation: marquee 40s linear infinite; }
.marquee-row-3 { animation: marquee 28s linear infinite; }
.marquee-container:hover .marquee-row { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-img {
  height: 200px; width: auto; min-width: 280px; object-fit: cover;
  border-radius: var(--radius-sm); transition: transform 0.3s ease, box-shadow 0.3s ease; flex-shrink: 0;
}
.marquee-img:hover { transform: scale(1.05); box-shadow: 0 8px 25px rgba(0,0,0,0.3); z-index: 2; }

/* ========== SHOWCASE / PROCESS ROWS ========== */
.showcase-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  max-width: 1100px; margin: 0 auto 4rem;
  opacity: 0; transform: translateY(30px); transition: all 0.7s ease;
}
.showcase-row.visible { opacity: 1; transform: translateY(0); }
.showcase-row.reverse { direction: rtl; }
.showcase-row.reverse > * { direction: ltr; }
.showcase-img {
  width: 100%; height: 350px; object-fit: cover;
  border-radius: var(--radius); transition: transform 0.4s ease;
}
.showcase-img:hover { transform: scale(1.03); }
.showcase-text h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 1rem; text-transform: uppercase; }
.showcase-text p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }
.step-number {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 700;
  color: var(--primary); line-height: 1; margin-bottom: 0.3rem; opacity: 0.75;
}

/* ========== HOURS ========== */
.hours { background: var(--light); }
.hours-grid { max-width: 500px; margin: 0 auto; display: flex; flex-direction: column; }
.hours-row {
  display: flex; justify-content: space-between; padding: 0.9rem 1.2rem;
  border-radius: var(--radius-sm); font-size: 0.95rem; transition: background 0.3s ease;
}
.hours-row.today { background: rgba(93,173,226,0.1); font-weight: 700; }
.hours-day { font-weight: 600; }
.hours-time { color: var(--text-light); }
.status-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.6rem 1.5rem; border-radius: 50px; font-weight: 700;
  font-size: 0.85rem; letter-spacing: 0.08em; margin: 2rem auto 0; text-align: center;
}
.status-badge.open { border: 2px solid #2ecc71; color: #2ecc71; animation: pulseGreen 2s infinite; }
.status-badge.closed { border: 2px solid #e74c3c; color: #e74c3c; }
@keyframes pulseGreen { 0%,100%{box-shadow:0 0 0 0 rgba(46,204,113,0.3)} 50%{box-shadow:0 0 15px 5px rgba(46,204,113,0.15)} }
.hours-note { text-align: center; color: var(--text-light); font-size: 0.8rem; margin-top: 1rem; font-style: italic; }

/* ========== LOCATION ========== */
.location-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  max-width: 1000px; margin: 0 auto; align-items: center;
}
.location-info { display: flex; flex-direction: column; gap: 1.2rem; }
.location-item { display: flex; align-items: flex-start; gap: 1rem; }
.location-item svg { flex-shrink: 0; color: var(--primary); margin-top: 2px; }
.location-item p { font-size: 0.95rem; line-height: 1.6; }
.location-address { font-weight: 600; }
.location-map {
  width: 100%; height: 350px; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.location-map iframe { width: 100%; height: 100%; border: 0; }

/* ========== CONTACT FORM ========== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
  max-width: 1000px; margin: 0 auto;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.2rem; background: var(--white); border-radius: var(--radius-sm);
  transition: all 0.3s ease; border: 1px solid rgba(15,25,35,0.06);
}
.contact-item:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.contact-item svg { flex-shrink: 0; color: var(--primary); }
.contact-item a, .contact-item span { font-size: 0.95rem; transition: color 0.3s ease; }
.contact-item:hover a { color: var(--primary); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form textarea {
  padding: 0.9rem 1.2rem; border: 2px solid rgba(15,25,35,0.1);
  border-radius: var(--radius-sm); font-family: var(--font-body);
  font-size: 0.95rem; transition: border-color 0.3s ease; background: var(--white);
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); }
.contact-form textarea { resize: vertical; min-height: 120px; }

/* ========== FOOTER ========== */
.footer { background: var(--dark); color: rgba(255,255,255,0.8); padding: 4rem 2rem 1.5rem; }
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem;
  max-width: 1100px; margin: 0 auto;
}
.footer-col h4 { font-family: var(--font-display); color: #fff; font-size: 1.1rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.03em; }
.footer-col p, .footer-col a { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.6); }
.footer-link { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: color 0.3s ease; margin-bottom: 0.3rem; }
.footer-link:hover { color: var(--primary); }
.footer-bottom {
  text-align: center; padding-top: 2rem; margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem; color: rgba(255,255,255,0.35);
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px;
  border-radius: 50%; background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 15px rgba(93,173,226,0.3);
  opacity: 0; transform: translateY(10px); transition: all 0.3s ease; z-index: 900;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(93,173,226,0.45); }

/* Scroll progress bar removed */

/* ========== NEXT PAGE CTA ========== */
.next-cta {
  background: var(--light); padding: 3.5rem 2rem; text-align: center;
}
.next-cta p {
  font-size: 0.9rem; color: var(--text-light); margin-bottom: 1rem;
  text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600;
}
.next-cta h3 {
  font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 2rem);
  text-transform: uppercase; margin-bottom: 1.5rem;
}

/* ========== ANIMATIONS ========== */
.fade-in { opacity: 0; transform: translateY(20px); transition: all 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ========== SOCIAL LINKS ========== */
.social-links { display: flex; gap: 0.8rem; align-items: center; }
.social-links a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); transition: all 0.3s ease;
}
.social-links a:hover { background: var(--primary); transform: translateY(-2px); }
.social-links svg { stroke: rgba(255,255,255,0.6); }
.social-links a:hover svg { stroke: #fff; }

/* ========== RESPONSIVE ========== */

/* --- Tablet --- */
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .services-grid { flex-direction: column; align-items: center; }
  .service-card { width: 100%; max-width: 100%; min-width: 0; aspect-ratio: 16/9; }
  .showcase-row { grid-template-columns: 1fr; gap: 1.5rem; }
  .showcase-row.reverse { direction: ltr; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .nav-links-left, .nav-links-right { display: none; }
  .nav-inner { justify-content: space-between; }
  .hamburger { display: flex; }
  .lang-toggle { position: static; transform: none; }
  .explore-content { padding: 2rem; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
}

/* --- Mobile --- */
@media (max-width: 600px) {
  /* Spacing */
  .section { padding: 3.5rem 1.2rem; }
  
  /* Navbar */
  .navbar { padding: 0.7rem 1rem; }
  .navbar.scrolled { padding: 0.5rem 1rem; }
  .nav-logo { font-size: 1.1rem; padding: 0 0.5rem; }
  .nav-logo img { height: 30px; }
  .navbar.scrolled .nav-logo { font-size: 1rem; }

  /* Mobile menu full screen */
  .mobile-menu { gap: 1.2rem; padding: 1rem; }
  .mobile-menu .nav-link { font-size: 1.15rem; padding: 0.8rem 1.5rem; width: 100%; text-align: center; }
  
  /* Hero */
  .hero { height: 100svh; min-height: 520px; }
  .hero-title { font-size: clamp(1.6rem, 7vw, 2.4rem); }
  .hero-sub { font-size: 0.95rem; margin-bottom: 1.5rem; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 0.8rem; width: 100%; padding: 0 1rem; }
  .hero-buttons .btn { width: 100%; text-align: center; padding: 0.85rem 1.5rem; font-size: 0.85rem; }
  .hero-arrow { display: none; }
  .hero-dots { bottom: auto; top: auto; }
  .hero-counters { padding: 0.8rem 1rem; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
  .counter-number { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .counter-label { font-size: 0.65rem; }
  .hero-dots { bottom: 5.2rem; }

  /* Page header */
  .page-header { padding: 7rem 1.2rem 2.5rem; }
  .page-header .section-title { font-size: clamp(1.4rem, 6vw, 2rem); }
  .page-header .section-subtitle { font-size: 0.9rem; }

  /* Typography */
  .section-title { font-size: clamp(1.4rem, 6vw, 2rem); }
  .section-subtitle { font-size: 0.92rem; margin-bottom: 2rem; }

  /* Explore sections */
  .explore-section { height: 55vh; min-height: 340px; }
  .explore-content { padding: 1.5rem; max-width: 100%; text-align: center; margin: 0 auto; }
  .explore-content h2 { font-size: clamp(1.3rem, 5.5vw, 1.8rem); }
  .explore-content p { font-size: 0.9rem; margin-bottom: 1.2rem; }
  .explore-content .btn { padding: 0.75rem 1.5rem; font-size: 0.82rem; }
  .explore-content[style*="margin-left:auto"] { margin: 0 auto !important; }

  /* Reviews */
  .reviews-grid { gap: 1rem; }
  .review-card { padding: 1.5rem; }
  .review-text { font-size: 0.88rem; }

  /* Services — show desc always on touch */
  .service-card { aspect-ratio: 16/10; min-height: 220px; }
  .card-title { font-size: 1.1rem; }
  .card-desc { font-size: 0.85rem; opacity: 1; max-height: 120px; }
  .service-card .card-bg { filter: brightness(0.4); }

  /* Marquee */
  .marquee-section { padding: 2.5rem 0; }
  .marquee-img { height: 150px; min-width: 210px; }
  .marquee-container { margin-bottom: 8px; }

  /* Showcase / Process rows */
  .showcase-img { height: 220px; border-radius: 10px; }
  .step-number { font-size: 2.5rem; }
  .showcase-text h3 { font-size: 1.15rem; }
  .showcase-text p { font-size: 0.9rem; }

  /* Hours */
  .hours-grid { max-width: 100%; }
  .hours-row { padding: 0.7rem 0.8rem; font-size: 0.88rem; }
  .status-badge { font-size: 0.78rem; padding: 0.5rem 1.2rem; }

  /* Location */
  .location-map { height: 260px; }
  .location-info .btn { width: 100%; text-align: center; }

  /* Contact form */
  .contact-info { gap: 0.8rem; }
  .contact-item { padding: 0.8rem 1rem; flex-wrap: wrap; }
  .contact-item a, .contact-item span { font-size: 0.88rem; word-break: break-word; }
  .contact-form input, .contact-form textarea { padding: 0.8rem 1rem; font-size: 0.9rem; }
  .contact-form .btn { width: 100%; text-align: center; }

  /* Next CTA */
  .next-cta { padding: 2.5rem 1.2rem; }
  .next-cta h3 { font-size: clamp(1.1rem, 4.5vw, 1.5rem); }

  /* Footer */
  .footer { padding: 3rem 1.2rem 1.2rem; }
  .footer-inner { gap: 1.5rem; }
  .footer-col h4 { font-size: 0.95rem; margin-bottom: 0.6rem; }
  .footer-col p, .footer-col a, .footer-link { font-size: 0.82rem; }
  .footer-bottom { font-size: 0.72rem; padding-top: 1.2rem; margin-top: 1.5rem; }

  /* Back to top */
  .back-to-top { bottom: 1.2rem; right: 1.2rem; width: 44px; height: 44px; }

  /* Min touch targets */
  .hamburger { padding: 10px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
  .hero-dot { width: 14px; height: 14px; }
  .lang-btn { min-width: 36px; min-height: 36px; display: flex; align-items: center; justify-content: center; }

  /* Cookie banner */
  .cookie-banner { padding: 1rem; }
  .cookie-content { flex-direction: column; text-align: center; gap: 1rem; }
  .cookie-content p { font-size: 0.82rem; }
  .cookie-buttons { justify-content: center; width: 100%; }
  .cookie-accept { padding: 0.55rem 1.2rem; font-size: 0.8rem; }
  .cookie-decline { padding: 0.55rem 1.2rem; font-size: 0.8rem; }
}

/* --- Small phones --- */
@media (max-width: 380px) {
  .hero-title { font-size: 1.5rem; }
  .hero-sub { font-size: 0.88rem; }
  .counter-number { font-size: 1.2rem; }
  .counter-label { font-size: 0.6rem; }
  .explore-section { height: 45vh; min-height: 300px; }
  .explore-content h2 { font-size: 1.2rem; }
  .service-card { min-height: 190px; }
  .marquee-img { height: 120px; min-width: 170px; }
  .showcase-img { height: 180px; }
  .nav-logo { font-size: 0.95rem; }
  .nav-logo img { height: 26px; }
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; width: 100%; z-index: 9999;
  background: var(--dark); color: rgba(255,255,255,0.85);
  padding: 1.2rem 2rem; box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-content {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.cookie-content p { font-size: 0.9rem; margin: 0; flex: 1; min-width: 200px; }
.cookie-buttons { display: flex; gap: 0.8rem; flex-shrink: 0; }
.cookie-accept { padding: 0.6rem 1.5rem; font-size: 0.85rem; }
.cookie-decline {
  padding: 0.6rem 1.5rem; background: transparent;
  color: rgba(255,255,255,0.6); font-size: 0.85rem; font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 50px;
  cursor: pointer; transition: all 0.3s ease; font-family: var(--font-body);
}
.cookie-decline:hover { color: #fff; border-color: rgba(255,255,255,0.5); }
