/* =============================================
   MAXIMUS PAINTING — Custom CSS
   Brand Colors from Logo:
   - Primary Blue: #0B3E7D
   - Primary Red:  #EB1844
   - Dark Text:    #1a1a2e
   - Light BG:     #f8f9fc
============================================= */

:root {
  --primary-color: #0B3E7D;
  --secondary-color: #EB1844;
  --dark: #1a1a2e;
  --light-bg: #f8f9fc;
  --text-muted: #6c757d;
  --white: #ffffff;
  --border-color: #e0e6ef;
  --font-heading: 'Barlow', 'Poppins', Arial, sans-serif;
  --font-body: 'Poppins', Arial, sans-serif;
  --shadow: 0 8px 32px rgba(11,62,125,0.10);
  --shadow-strong: 0 16px 48px rgba(11,62,125,0.18);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: #fff;
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-color); text-decoration: none; transition: all 0.3s; }
a:hover { color: var(--secondary-color); }
ul { list-style: none; }

/* ---- TYPOGRAPHY ---- */
h1,h2,h3,h4,h5 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--dark);
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { margin-bottom: 1rem; }
.lead { font-size: 1.15rem; line-height: 1.8; }

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--secondary-color);
  margin-bottom: 0.75rem;
}
.section-title { margin-bottom: 1rem; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; }

/* ---- UTILITIES ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-fluid { width: 100%; padding: 0 24px; }
.text-center { text-align: center; }
.text-white { color: #fff !important; }
.text-primary { color: var(--primary-color) !important; }
.text-red { color: var(--secondary-color) !important; }
.bg-primary-dark { background: var(--primary-color); }
.bg-light { background: var(--light-bg); }
.bg-dark { background: var(--dark); }
.mt-1{margin-top:.25rem} .mt-2{margin-top:.5rem} .mt-3{margin-top:1rem} .mt-4{margin-top:1.5rem} .mt-5{margin-top:3rem}
.mb-1{margin-bottom:.25rem} .mb-2{margin-bottom:.5rem} .mb-3{margin-bottom:1rem} .mb-4{margin-bottom:1.5rem} .mb-5{margin-bottom:3rem}
.py-5 { padding-top: 80px; padding-bottom: 80px; }
.py-6 { padding-top: 100px; padding-bottom: 100px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--secondary-color);
  color: #fff;
  border-color: var(--secondary-color);
}
.btn-primary:hover {
  background: #c8102e;
  border-color: #c8102e;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(235,24,68,0.35);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: #fff;
  color: var(--primary-color);
  border-color: #fff;
}
.btn-outline-dark {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-outline-dark:hover {
  background: var(--primary-color);
  color: #fff;
}
.btn-lg { padding: 18px 42px; font-size: 1.05rem; }

/* ---- NAVBAR ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(11,62,125,0.12); }
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.navbar-brand img { height: 52px; width: auto; }
.navbar-brand span {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary-color);
  font-weight: 700;
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark);
  border-radius: 4px;
  letter-spacing: 0.02em;
  transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary-color);
  background: var(--light-bg);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-phone {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.9rem;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--secondary-color); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- HERO (HOME) ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11,62,125,0.82) 0%,
    rgba(11,62,125,0.4) 60%,
    rgba(11,62,125,0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(235,24,68,0.15);
  border: 1px solid rgba(235,24,68,0.4);
  color: #ffb3c1;
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--secondary-color);
}
.hero h1 {
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero h1 span { color: #f4b8c4; }
.hero .lead { color: rgba(255,255,255,0.85); margin-bottom: 2.5rem; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero slider controls */
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dot.active { background: #fff; width: 28px; border-radius: 4px; }

/* ---- STATS STRIP ---- */
.stats-strip {
  background: var(--primary-color);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item .number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
  position: absolute;
  right: 0; top: 10%; bottom: 10%;
}

/* ---- SERVICES PREVIEW ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 36px 28px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--secondary-color);
  transform: scaleY(0);
  transition: transform 0.3s;
  transform-origin: bottom;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 60px; height: 60px;
  background: var(--light-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s;
}
.service-card:hover .service-icon { background: var(--secondary-color); }
.service-icon svg { width: 28px; height: 28px; }
.service-card:hover .service-icon svg path,
.service-card:hover .service-icon svg rect { stroke: #fff; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ---- WHY CHOOSE US ---- */
.why-us { background: var(--light-bg); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-image-stack {
  position: relative;
}
.why-image-main {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-strong);
}
.why-image-main img { width: 100%; height: 400px; object-fit: cover; }
.why-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--secondary-color);
  color: #fff;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(235,24,68,0.3);
}
.why-badge .big-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.why-badge p { font-size: 0.78rem; margin: 0; opacity: 0.9; text-transform: uppercase; letter-spacing: 0.08em; }
.features-list { margin-top: 1.5rem; }
.feature-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-color);
}
.feature-item:last-child { border: none; }
.feature-check {
  width: 36px; height: 36px;
  background: rgba(11,62,125,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-color);
  font-size: 1rem;
}
.feature-text h4 { font-size: 1rem; font-family: var(--font-body); margin-bottom: 4px; }
.feature-text p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ---- PROCESS SECTION ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(11,62,125,0.3);
}
.process-step h4 { font-family: var(--font-body); font-weight: 600; margin-bottom: 8px; }
.process-step p { font-size: 0.87rem; color: var(--text-muted); }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0a2d5a 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(235,24,68,0.2) 0%, transparent 70%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-flex h2 { color: #fff; margin: 0; }
.cta-flex p { color: rgba(255,255,255,0.75); margin: 8px 0 0; }

/* ---- PAGE BANNER (inner pages) ---- */
.page-banner {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0a2d5a 100%);
  padding: 140px 0 70px;
  text-align: center;
}
.page-banner h1 { color: #fff; margin-bottom: 12px; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: 0.4; }

/* ---- ABOUT PAGE ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main img { width: 100%; height: 500px; object-fit: cover; border-radius: 12px; }
.about-accent-img {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 220px;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: var(--shadow-strong);
}
.about-accent-img img { width: 100%; height: 100%; object-fit: cover; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 2rem;
}
.value-card {
  background: var(--light-bg);
  border-radius: 8px;
  padding: 24px;
  border-left: 3px solid var(--secondary-color);
}
.value-card h4 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; color: var(--primary-color); }
.value-card p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.team-card {
  text-align: center;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-color);
  transition: transform 0.3s, box-shadow 0.3s;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-card img { width: 100%; height: 220px; object-fit: cover; }
.team-info { padding: 20px; }
.team-info h4 { font-family: var(--font-body); font-weight: 600; margin-bottom: 4px; }
.team-info p { font-size: 0.83rem; color: var(--secondary-color); margin: 0; font-weight: 500; }

/* ---- SERVICES PAGE ---- */
.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.service-detail-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-detail-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }
.service-detail-card img { width: 100%; height: 220px; object-fit: cover; }
.service-body { padding: 28px; }
.service-body .service-tag {
  display: inline-block;
  background: rgba(11,62,125,0.08);
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.service-body h3 { font-size: 1.3rem; margin-bottom: 12px; }
.service-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1rem; }
.service-benefits {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-color);
}
.service-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.service-benefits li::before {
  content: '✓';
  color: var(--secondary-color);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.service-full-card {
  background: var(--light-bg);
  border-radius: 12px;
  padding: 40px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: center;
}
.service-full-card img { width: 100%; height: 260px; object-fit: cover; border-radius: 8px; }

/* ---- CLIENTS PAGE ---- */
.clients-intro { max-width: 700px; margin: 0 auto; text-align: center; }
.clients-logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.client-logo-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 36px 24px;
  text-align: center;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 130px;
}
.client-logo-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.client-logo-card img { max-width: 140px; max-height: 60px; object-fit: contain; filter: grayscale(100%); opacity: 0.65; transition: all 0.3s; }
.client-logo-card:hover img { filter: none; opacity: 1; }
.client-logo-card .client-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-color);
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}
.client-logo-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.client-logo-fallback .logo-icon {
  width: 48px; height: 48px;
  background: var(--primary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.2rem;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 32px;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--light-bg);
  line-height: 1;
}
.stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 12px; }
.testimonial-card p { color: var(--text-muted); font-style: italic; font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer-info strong { display: block; font-size: 0.92rem; }
.reviewer-info span { font-size: 0.78rem; color: var(--text-muted); }

/* ---- CONTACT PAGE ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info-list { display: flex; flex-direction: column; gap: 28px; margin: 2rem 0; }
.contact-info-item { display: flex; gap: 16px; }
.contact-info-icon {
  width: 48px; height: 48px;
  background: rgba(11,62,125,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary-color);
  font-size: 1.1rem;
}
.contact-info-text strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 4px; }
.contact-info-text a, .contact-info-text p { font-size: 1rem; font-weight: 500; color: var(--dark); margin: 0; }
.contact-info-text a:hover { color: var(--secondary-color); }
.contact-form-card {
  background: var(--light-bg);
  border-radius: 16px;
  padding: 48px 40px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
  letter-spacing: 0.03em;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border-color);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(11,62,125,0.1);
}
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.map-wrapper { border-radius: 12px; overflow: hidden; margin-top: 40px; box-shadow: var(--shadow); }
.map-wrapper iframe { width: 100%; display: block; border: none; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 80px 0 60px;
}
.footer-brand img { height: 48px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  transition: all 0.3s;
}
.social-link:hover { background: var(--secondary-color); color: #fff; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: #fff; }

/* ---- SCROLL TO TOP ---- */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px; height: 44px;
  background: var(--secondary-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(235,24,68,0.4);
  transition: all 0.3s;
  z-index: 999;
}
.scroll-top:hover { transform: translateY(-3px); }
.scroll-top.visible { display: flex; }

/* ---- ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ---- GALLERY GRID ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.gallery-item img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tall img { height: 456px; }

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .clients-logos-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .navbar { height: 70px; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: #fff;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    z-index: 100;
    gap: 4px;
  }
  .nav-links.open a { display: block; padding: 12px 16px; }
  .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; }
  .service-full-card { grid-template-columns: 1fr; }
  .cta-flex { flex-direction: column; text-align: center; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .clients-logos-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; }
  .about-accent-img { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall img { height: 220px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .clients-logos-grid { grid-template-columns: 1fr 1fr; }
  h1 { font-size: 2rem; }
  .hero { min-height: 85vh; }
  .gallery-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
