@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600;700&display=swap');

/* ───────── RESET & BASE ───────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --clr-primary: #0d0d0d;
  --clr-accent: #e65100;
  --clr-accent-light: #ff8f00;
  --clr-accent-dark: #bf360c;
  --clr-bg: #f5f5f5;
  --clr-white: #ffffff;
  --clr-card: #ffffff;
  --clr-text: #1a1a1a;
  --clr-text-light: #555;
  --clr-text-muted: #888;
  --clr-dark-bg: #111111;
  --clr-dark-card: #1a1a1a;
  --clr-border: #e0e0e0;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--font-body); border: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* ───────── HEADER ───────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.3); }

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--clr-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
}
.logo img, .logo svg { height: 48px; width: auto; }
.logo-placeholder {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
}
.logo-placeholder img { width: 100%; height: 100%; object-fit: contain; }
.logo-text span { color: var(--clr-accent); }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--clr-accent);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--clr-white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-links a.nav-cta {
  background: var(--clr-accent);
  color: var(--clr-white) !important;
  padding: 18px 56px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(230, 81, 0, 0.35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--clr-accent-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(230, 81, 0, 0.5); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--clr-white);
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ───────── MOBILE NAV ───────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0; bottom: 0;
  background: rgba(13, 13, 13, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  color: var(--clr-white);
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-heading);
}
.mobile-nav a:hover { color: var(--clr-accent); }

/* ───────── HERO SECTION ───────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--clr-primary);
  overflow: hidden;
  padding-top: var(--header-height);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.85) 0%, rgba(26,26,26,0.75) 50%, rgba(13,13,13,0.85) 100%),
              url('../assets/img/hero-bg.avif') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(230, 81, 0, 0.08) 0%, transparent 70%);
}
/* Speedometer */
.hero-speedometer {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 300px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}
.speedometer-svg { width: 100%; height: 100%; }
.speedo-needle { }

/* Floating tool icons */
.hero-floating-tools {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.float-tool {
  position: absolute;
}
.float-wrench {
  width: 120px; height: 120px;
  bottom: 15%;
  right: 8%;
}
.float-gear {
  width: 180px; height: 180px;
  top: 12%;
  right: 2%;
}
.float-piston {
  width: 100px; height: 100px;
  top: 30%;
  right: 38%;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 60px 0;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(230, 81, 0, 0.15);
  border: 1px solid rgba(230, 81, 0, 0.3);
  color: var(--clr-accent-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
}
.hero-badge svg { width: 16px; height: 16px; fill: currentColor; }

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--clr-white);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
}
.hero h1 span { color: var(--clr-accent); }

.hero-text {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 560px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  transform: translateY(30px);
}
.hero-stat h3 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--clr-accent);
}
.hero-stat p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-top: 4px;
}

.hero-image {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 45%;
  max-width: 600px;
  z-index: 1;
  opacity: 0;
}
.hero-image img {
  width: 100%;
  mask-image: linear-gradient(to left, black 60%, transparent);
  -webkit-mask-image: linear-gradient(to left, black 60%, transparent);
}

/* ───────── BUTTONS ───────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--clr-accent);
  color: var(--clr-white);
  border-color: var(--clr-accent);
}
.btn-primary:hover {
  background: var(--clr-accent-dark);
  border-color: var(--clr-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 81, 0, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--clr-accent);
  color: var(--clr-accent);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary);
}
.btn-dark:hover {
  background: #222;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn svg { width: 18px; height: 18px; fill: currentColor; }

/* ───────── SECTION COMMON ───────── */
.section { padding: 100px 0; }
.section-dark { background: var(--clr-dark-bg); color: var(--clr-white); }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-header .overline {
  display: inline-block;
  color: var(--clr-accent);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-header p {
  color: var(--clr-text-light);
  font-size: 1.05rem;
}
.section-dark .section-header p { color: rgba(255,255,255,0.6); }

/* ───────── SERVICES PREVIEW (HOME) ───────── */
.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--clr-card);
  border-radius: 16px;
  padding: 36px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--clr-border);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--clr-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }
.service-card:hover::before { transform: scaleX(1); }

.service-card-icon {
  width: 56px; height: 56px;
  background: rgba(230, 81, 0, 0.1);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-card-icon svg { width: 28px; height: 28px; fill: var(--clr-accent); }
.service-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--clr-text-light); font-size: 0.95rem; }

/* ───────── CTA BANNER ───────── */
.cta-banner {
  background: linear-gradient(135deg, var(--clr-accent) 0%, var(--clr-accent-dark) 100%);
  border-radius: 20px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--clr-white);
}
.cta-banner h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.cta-banner p { opacity: 0.9; font-size: 1.05rem; max-width: 500px; }
.cta-banner .btn { background: var(--clr-white); color: var(--clr-accent); border-color: var(--clr-white); }
.cta-banner .btn:hover { background: transparent; color: var(--clr-white); transform: translateY(-2px); }

/* ───────── WHY US (HOME) ───────── */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.why-card {
  text-align: center;
  padding: 32px 20px;
}
.why-card-icon {
  width: 72px; height: 72px;
  background: rgba(230, 81, 0, 0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.why-card-icon svg { width: 32px; height: 32px; fill: var(--clr-accent); }
.why-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { color: var(--clr-text-light); font-size: 0.9rem; }

/* ───────── SERVICES PAGE ───────── */
.page-hero {
  padding: 140px 0 80px;
  background: var(--clr-primary);
  color: var(--clr-white);
  text-align: center;
}
.page-hero .overline {
  display: inline-block;
  color: var(--clr-accent);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.page-hero p { color: rgba(255,255,255,0.6); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid var(--clr-border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail-img {
  border-radius: 16px;
  overflow: hidden;
  height: 320px;
  background: #e0e0e0;
  position: relative;
}
.service-detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail-content { padding: 20px 0; }
.service-detail-content .overline {
  display: inline-block;
  color: var(--clr-accent);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.service-detail-content h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 16px; }
.service-detail-content p { color: var(--clr-text-light); margin-bottom: 16px; font-size: 0.95rem; }
.service-detail-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.service-detail-content ul li {
  padding: 6px 0;
  padding-left: 28px;
  position: relative;
  color: var(--clr-text-light);
  font-size: 0.95rem;
}
.service-detail-content ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 12px;
  width: 16px; height: 16px;
  background: var(--clr-accent);
  border-radius: 50%;
  opacity: 0.2;
}
.service-detail-content ul li::after {
  content: '✓';
  position: absolute;
  left: 3px; top: 6px;
  color: var(--clr-accent);
  font-size: 0.75rem;
  font-weight: 700;
}

/* ───────── ABOUT PAGE ───────── */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-intro-img {
  border-radius: 16px;
  overflow: hidden;
  height: 420px;
  position: relative;
}
.about-intro-img img { width: 100%; height: 100%; object-fit: cover; }
.about-intro-content h2 { font-size: 2rem; font-weight: 800; margin-bottom: 20px; }
.about-intro-content p { color: var(--clr-text-light); margin-bottom: 16px; font-size: 1rem; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.value-card {
  background: var(--clr-dark-card);
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.08);
}
.value-card h3 { color: var(--clr-accent); font-size: 1.15rem; margin-bottom: 12px; }
.value-card p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }

.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.about-gallery-item {
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
}
.about-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.about-gallery-item:hover img { transform: scale(1.05); }

/* ───────── CONTACT PAGE ───────── */
.contact-section {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: flex-start;
  padding-top: calc(var(--header-height) + 32px);
  padding-bottom: 24px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 100%;
  align-items: start;
}
.contact-info h1 {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 12px;
}
.contact-info > p {
  color: var(--clr-text-light);
  margin-bottom: 28px;
  font-size: 0.95rem;
  line-height: 1.6;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  background: rgba(230, 81, 0, 0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.contact-item-icon svg { width: 20px; height: 20px; fill: var(--clr-accent); }
.contact-item-text h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 2px; }
.contact-item-text p, .contact-item-text a {
  color: var(--clr-text-light);
  font-size: 0.9rem;
}
.contact-item-text a:hover { color: var(--clr-accent); }

.contact-form-wrapper {
  background: var(--clr-card);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--clr-border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.contact-form-wrapper h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 20px; }

.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--clr-text);
}
.form-group label .optional { color: var(--clr-text-muted); font-weight: 400; }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--clr-white);
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--clr-accent);
  box-shadow: 0 0 0 3px rgba(230, 81, 0, 0.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-submit {
  width: 100%;
  padding: 12px;
  background: var(--clr-accent);
  color: var(--clr-white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  margin-top: 4px;
}
.form-submit:hover { background: var(--clr-accent-dark); transform: translateY(-1px); }

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success.show { display: block; }
.form-success svg { width: 48px; height: 48px; fill: #4caf50; margin-bottom: 16px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--clr-text-light); }

/* Contact Map */
.contact-map-section {
  padding: 0 0 0;
}
.contact-map-section .container {
  padding-top: 40px;
}
.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  height: 400px;
  border: 1px solid var(--clr-border);
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* ───────── LEGAL PAGES ───────── */
.legal-page { padding: 120px 0 80px; }
.legal-page h1 { font-size: 2rem; font-weight: 800; margin-bottom: 32px; }
.legal-page h2 { font-size: 1.4rem; font-weight: 700; margin-top: 32px; margin-bottom: 12px; }
.legal-page h3 { font-size: 1.15rem; font-weight: 600; margin-top: 24px; margin-bottom: 8px; }
.legal-page p { color: var(--clr-text-light); margin-bottom: 12px; line-height: 1.7; }
.legal-page ul { padding-left: 24px; margin-bottom: 12px; }
.legal-page ul li { color: var(--clr-text-light); margin-bottom: 6px; list-style: disc; }
.legal-page a { color: var(--clr-accent); }
.legal-page a:hover { text-decoration: underline; }
.legal-content { max-width: 800px; }

/* ───────── FOOTER ───────── */
.footer {
  background: var(--clr-dark-bg);
  color: var(--clr-white);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-about .logo { margin-bottom: 16px; }
.footer-about p { color: rgba(255,255,255,0.5); font-size: 0.9rem; max-width: 300px; }

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--clr-white);
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--clr-accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

/* ───────── COOKIE BANNER ───────── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--clr-dark-bg);
  color: var(--clr-white);
  padding: 20px 0;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cookie-text { flex: 1; }
.cookie-text p { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.cookie-text a { color: var(--clr-accent); text-decoration: underline; }
.cookie-buttons { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}
.cookie-accept { background: var(--clr-accent); color: var(--clr-white); }
.cookie-accept:hover { background: var(--clr-accent-dark); }
.cookie-decline { background: rgba(255,255,255,0.1); color: var(--clr-white); }
.cookie-decline:hover { background: rgba(255,255,255,0.2); }
.cookie-options { background: transparent; color: var(--clr-accent); border: 1px solid var(--clr-accent); }
.cookie-options:hover { background: var(--clr-accent); color: var(--clr-white); }

/* Cookie Settings Modal */
.cookie-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10001;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.cookie-modal.show { display: flex; }
.cookie-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}
.cookie-modal-content {
  position: relative;
  background: var(--clr-white);
  border-radius: 16px;
  padding: 32px;
  max-width: 520px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  color: var(--clr-text);
}
.cookie-modal-content h3 { font-size: 1.3rem; margin-bottom: 20px; }
.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--clr-border);
}
.cookie-option:last-of-type { border-bottom: none; }
.cookie-option-info h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.cookie-option-info p { font-size: 0.8rem; color: var(--clr-text-muted); }

.toggle-switch {
  position: relative;
  width: 48px; height: 26px;
}
.toggle-switch input { display: none; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 26px;
  cursor: pointer;
  transition: background var(--transition);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  background: var(--clr-white);
  border-radius: 50%;
  top: 3px; left: 3px;
  transition: transform var(--transition);
}
.toggle-switch input:checked + .toggle-slider { background: var(--clr-accent); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(22px); }
.toggle-switch input:disabled + .toggle-slider { opacity: 0.7; cursor: not-allowed; }

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.cookie-modal-actions .btn { flex: 1; justify-content: center; padding: 12px; font-size: 0.9rem; }

/* ───────── SCROLL ANIMATIONS ───────── */
.reveal { opacity: 0; transform: translateY(40px); }
.reveal-left { opacity: 0; transform: translateX(-40px); }
.reveal-right { opacity: 0; transform: translateX(40px); }

/* ───────── RESPONSIVE ───────── */
@media (max-width: 1024px) {
  .hero-image { display: none; }
  .hero-speedometer { display: none; }
  .hero-floating-tools { display: none; }
  .hero-content { max-width: 100%; }
  .service-detail { grid-template-columns: 1fr; gap: 24px; }
  .service-detail.reverse { direction: ltr; }
  .about-intro { grid-template-columns: 1fr; gap: 32px; }
  .about-intro-img { height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: auto; padding-top: calc(var(--header-height) + 40px); padding-bottom: 60px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .hero-stats .hero-stat { flex: 1; min-width: 120px; }

  .section { padding: 60px 0; }
  .services-preview-grid { grid-template-columns: 1fr; }

  .cta-banner { flex-direction: column; text-align: center; padding: 40px 24px; }

  .contact-section { padding-top: calc(var(--header-height) + 16px); padding-bottom: 16px; }
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-info h1 { font-size: 1.4rem; margin-bottom: 8px; }
  .contact-info > p { font-size: 0.85rem; margin-bottom: 16px; }
  .contact-details { gap: 10px; }
  .contact-item { gap: 10px; }
  .contact-item-icon { width: 32px; height: 32px; min-width: 32px; }
  .contact-item-icon svg { width: 16px; height: 16px; }
  .contact-form-wrapper { padding: 20px; }
  .contact-form-wrapper h2 { font-size: 1.1rem; margin-bottom: 12px; }
  .form-group { margin-bottom: 10px; }
  .form-group label { font-size: 0.8rem; }
  .form-group input, .form-group textarea { padding: 8px 12px; font-size: 0.9rem; }
  .form-group textarea { min-height: 60px; }
  .form-row { grid-template-columns: 1fr; gap: 10px; }

  .about-gallery { grid-template-columns: 1fr; }
  .about-gallery-item { height: 220px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .cookie-content { flex-direction: column; text-align: center; }
  .cookie-buttons { flex-wrap: wrap; justify-content: center; }

  .map-wrapper { height: 300px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 16px; }
  .hero-stat h3 { font-size: 1.6rem; }

  .page-hero { padding: 120px 0 60px; }
  .page-hero h1 { font-size: 1.8rem; }

  .contact-form-wrapper { padding: 16px; }
}
