/* ============================================================
   PARLAK Kuru Temizleme - Ana CSS
   Tema: Kuru Temizleme & Giyim Bakımı
   Renkler: Royal Navy + Fresh Sky Blue Accent
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --primary:    #1E3A5F;
  --primary-dark: #152942;
  --accent:     #5BACE3;
  --accent-dark: #3D94D4;
  --secondary:  #243447;
  --text-dark:  #2B2B2B;
  --text-muted: #6C757D;
  --surface:    #F5F9FC;
  --white:      #FFFFFF;
  --border:     #E0EBF5;
  --shadow-sm:  0 2px 8px rgba(30,58,95,.08);
  --shadow-md:  0 6px 24px rgba(30,58,95,.14);
  --shadow-lg:  0 12px 40px rgba(30,58,95,.18);
  --radius:     8px;
  --transition: all .3s ease;
  --font-head:  'Outfit', sans-serif;
  --font-body:  'Inter', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-dark); }

img { max-width: 100%; height: auto; display: block; }

/* ---------- Typography Helpers ---------- */
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: .5rem;
}
.section-title.centered::after { margin-left: auto; margin-right: auto; }

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
}
.section-lead.centered { margin: 0 auto; }

.text-accent { color: var(--accent) !important; }
.bg-primary-custom { background-color: var(--primary); }
.bg-surface { background-color: var(--surface); }
.bg-accent { background-color: var(--accent); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(91,172,227,.35);
}

.btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-accent {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline-accent:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.btn .btn-arrow { transition: transform .3s ease; }
.btn:hover .btn-arrow { transform: translateX(5px); }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background .35s ease, padding .35s ease, box-shadow .35s ease;
  background: transparent;
}
.navbar.scrolled {
  background: var(--primary);
  padding: .75rem 0;
  box-shadow: 0 2px 20px rgba(30,58,95,.25);
}

.navbar-brand {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--white) !important;
  letter-spacing: -.3px;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.navbar-brand .brand-icon {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}
.navbar-brand .brand-dot { color: var(--accent); }

.navbar .nav-link {
  color: rgba(255,255,255,.88) !important;
  font-weight: 500;
  font-size: .92rem;
  padding: .4rem .85rem !important;
  position: relative;
  transition: color .25s;
}
.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: .85rem;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 1px;
  transition: width .3s ease;
}
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { width: calc(100% - 1.7rem); }
.navbar .nav-link:hover { color: var(--white) !important; }

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 6px;
  padding: .4rem 1.1rem !important;
  font-weight: 600 !important;
  margin-left: .5rem;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--accent-dark); }

.navbar-toggler {
  border: none;
  padding: .25rem .5rem;
  color: var(--white);
  font-size: 1.4rem;
  background: transparent;
}
.navbar-toggler:focus { box-shadow: none; }

/* Offcanvas */
.offcanvas { max-width: 300px; }
.offcanvas-header { background: var(--primary); }
.offcanvas .nav-link { color: var(--primary) !important; padding: .65rem 0 !important; border-bottom: 1px solid var(--border); }
.offcanvas .nav-link::after { display: none; }
.offcanvas .nav-link:hover { color: var(--accent) !important; }
.offcanvas .nav-cta { background: var(--accent); color: var(--white) !important; border-radius: 6px; padding: .65rem 1rem !important; border: none; margin-top: .5rem; }

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1582735689369-4fe89db7114c?w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,58,95,.90) 0%,
    rgba(30,58,95,.68) 55%,
    rgba(91,172,227,.28) 100%
  );
}
.hero-content { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(91,172,227,.22);
  border: 1px solid rgba(91,172,227,.5);
  color: #B8DCFA;
  font-size: .85rem;
  font-weight: 600;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-title span { color: #B8DCFA; }

.hero-lead {
  font-size: clamp(.98rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.82);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.5rem;
  margin-bottom: 2.25rem;
}
.hero-feature {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  font-weight: 500;
}
.hero-feature i { color: var(--accent); font-size: 1rem; }

.hero-buttons { display: flex; flex-wrap: wrap; gap: .75rem; }

.hero-stats {
  position: absolute;
  bottom: 3rem;
  right: 0; left: 0;
  z-index: 2;
}
.hero-stat-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  color: var(--white);
}
.hero-stat-number {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 800;
  color: #B8DCFA;
  line-height: 1;
}
.hero-stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.75);
  margin-top: .3rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ---------- About Section ---------- */
.about-image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.about-image-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 12px;
}
.about-badge {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: var(--accent);
  color: var(--white);
  border-radius: 10px;
  padding: 1.1rem 1.4rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(91,172,227,.4);
}
.about-badge .badge-number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}
.about-badge .badge-label { font-size: .78rem; font-weight: 600; opacity: .9; }

.about-features { list-style: none; padding: 0; margin: 1.5rem 0; }
.about-features li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: .6rem 0;
  color: var(--text-dark);
  font-size: .95rem;
  border-bottom: 1px solid var(--border);
}
.about-features li:last-child { border-bottom: none; }
.about-features li i { color: var(--accent); font-size: 1.1rem; margin-top: .1rem; flex-shrink: 0; }

/* ---------- Services Section ---------- */
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.75rem;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--accent);
  transition: width .4s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(91,172,227,.2);
}
.service-card:hover::before { width: 100%; }

.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(91,172,227,.14), rgba(91,172,227,.06));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--accent);
  color: var(--white);
}

.service-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .6rem;
}
.service-card p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.service-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap .25s;
}
.service-link:hover { gap: .6rem; color: var(--accent-dark); }

/* ---------- Stats Section ---------- */
.stats-section {
  background-image: url('https://images.unsplash.com/photo-1558171812-4517524f87dd?w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,58,95,.93), rgba(91,172,227,.72));
}
.stats-inner { position: relative; z-index: 1; }

.stat-box {
  text-align: center;
  padding: 2rem 1rem;
  border-right: 1px solid rgba(255,255,255,.15);
}
.stat-box:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 800;
  color: #B8DCFA;
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.78);
  margin-top: .5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .7px;
}
.stat-icon {
  font-size: 1.75rem;
  color: rgba(255,255,255,.4);
  margin-bottom: .75rem;
}

/* ---------- References Section ---------- */
.ref-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.ref-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.ref-card-img {
  height: 220px;
  overflow: hidden;
}
.ref-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.ref-card:hover .ref-card-img img { transform: scale(1.07); }
.ref-card-body { padding: 1.4rem 1.5rem; }
.ref-card-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(91,172,227,.12);
  padding: .2rem .7rem;
  border-radius: 50px;
  margin-bottom: .6rem;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.ref-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .4rem;
}
.ref-card p { font-size: .88rem; color: var(--text-muted); margin: 0; }

/* ---------- Testimonials ---------- */
.testimonials-section { background: var(--surface); }
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: .2;
  position: absolute;
  top: 1rem; left: 1.5rem;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: .95rem;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: .85rem; }
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  font-family: var(--font-head);
  flex-shrink: 0;
}
.testimonial-author-info strong { display: block; font-size: .92rem; color: var(--primary); }
.testimonial-author-info span { font-size: .8rem; color: var(--text-muted); }
.testimonial-stars { color: #F5A623; font-size: .8rem; margin-bottom: .15rem; }

.carousel-controls { display: flex; align-items: center; gap: .75rem; }
.carousel-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
}
.carousel-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }

/* ---------- CTA Section ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #2A5080 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(91,172,227,.18);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: rgba(91,172,227,.12);
}
.cta-inner { position: relative; z-index: 1; }

/* ---------- Footer ---------- */
.footer {
  background: var(--secondary);
  color: rgba(255,255,255,.75);
  padding-top: 4rem;
}
.footer h5 {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.footer p { font-size: .88rem; line-height: 1.7; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: var(--transition);
}
.footer-links a i { color: var(--accent); font-size: .8rem; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .85rem;
  font-size: .88rem;
}
.footer-contact-item i {
  color: var(--accent);
  font-size: 1rem;
  margin-top: .15rem;
  flex-shrink: 0;
}

.footer-social { display: flex; gap: .6rem; margin-top: 1rem; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--accent); color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 0;
  margin-top: 3rem;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: var(--accent); }

/* ---------- Inner Page Hero ---------- */
.inner-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #2A5080 100%);
  padding: 7rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(91,172,227,.12);
}
.inner-hero h1 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}
.inner-hero .breadcrumb { background: transparent; padding: 0; margin: 0; }
.inner-hero .breadcrumb-item a { color: rgba(255,255,255,.65); font-size: .88rem; }
.inner-hero .breadcrumb-item.active { color: var(--accent); font-size: .88rem; }
.inner-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ---------- About Page Sidebar ---------- */
.about-sidebar {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
  position: sticky;
  top: 90px;
}
.sidebar-nav { list-style: none; padding: 0; margin: 0; }
.sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 1.25rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-dark);
  border-left: 3px solid transparent;
  transition: var(--transition);
  border-bottom: 1px solid var(--surface);
}
.sidebar-nav li a:hover,
.sidebar-nav li a.active {
  color: var(--accent);
  border-left-color: var(--accent);
  background: rgba(91,172,227,.06);
  padding-left: 1.5rem;
}
.sidebar-nav li a i { font-size: .9rem; }

/* ---------- Contact Page ---------- */
.contact-info-card {
  background: var(--primary);
  border-radius: 12px;
  padding: 2rem;
  color: var(--white);
  height: 100%;
}
.contact-info-card h4 { color: var(--white); margin-bottom: 1.5rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-info-icon {
  width: 42px; height: 42px;
  background: rgba(91,172,227,.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #B8DCFA;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-text strong { display: block; font-size: .8rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .5px; margin-bottom: .15rem; }
.contact-info-text span { font-size: .92rem; color: var(--white); }

.contact-form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-label { font-size: .88rem; font-weight: 600; color: var(--primary); margin-bottom: .4rem; }
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: .65rem 1rem;
  font-size: .92rem;
  color: var(--text-dark);
  background: var(--surface);
  transition: border-color .25s, box-shadow .25s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(91,172,227,.12);
  background: var(--white);
  outline: none;
}
textarea.form-control { resize: vertical; min-height: 130px; }

/* ---------- Services Detail Page ---------- */
.service-detail-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(91,172,227,.15), rgba(91,172,227,.06));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.service-item-row {
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.service-item-row:last-child { border-bottom: none; }
.service-item-row img {
  width: 100%; height: 300px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}

/* ---------- Map placeholder ---------- */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ---------- Utility ---------- */
.py-section { padding-top: 5rem; padding-bottom: 5rem; }
@media (max-width: 991px) { .py-section { padding-top: 3.5rem; padding-bottom: 3.5rem; } }

.divider-wave {
  position: absolute;
  bottom: -1px; left: 0;
  width: 100%;
  line-height: 0;
}

.placeholder-img {
  background: linear-gradient(135deg, var(--surface), #D4E6F5);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary);
  font-size: 2.5rem;
  opacity: .6;
}

/* ---------- AOS Overrides ---------- */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .hero-bg { background-attachment: scroll; }
  .stats-section { background-attachment: scroll; }
  .stat-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); }
  .stat-box:last-child { border-bottom: none; }
  .hero-stats { position: static; padding: 2rem 1rem; }
  .hero { min-height: auto; padding: 6rem 0 2rem; }
  .about-image-wrap img { height: 320px; }
}

@media (max-width: 767px) {
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.6rem; }
  .hero-stats .row .col-6 { border-bottom: 1px solid rgba(255,255,255,.1); }
  .contact-form-card { padding: 1.5rem; }
  .footer h5 { font-size: .95rem; }
  .hero-features { gap: .5rem 1rem; }
}
