/* ============================================================
   KISKANÇ TEL ÇİT — style.css
   ============================================================ */

/* ── Custom Properties ─────────────────────────────────────── */
:root {
  --primary:       #2C3E50;
  --primary-light: #34495E;
  --secondary:     #95A5A6;
  --accent:        #E67E22;
  --accent-hover:  #D35400;
  --green:         #27AE60;
  --whatsapp:      #25D366;
  --whatsapp-dark: #1EAD55;
  --light:         #F8F9FA;
  --white:         #FFFFFF;
  --text:          #2D3436;
  --text-light:    #636E72;
  --border:        #E2E8F0;
  --shadow:        0 4px 20px rgba(0,0,0,.08);
  --shadow-md:     0 8px 40px rgba(0,0,0,.14);
  --radius:        8px;
  --radius-lg:     12px;
  --ease:          all .3s ease;
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        color: var(--text); line-height: 1.65; background: var(--white); }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
button { font-family: inherit; }

/* ── Container ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Utilities ─────────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .93rem;
  transition: var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(230,126,34,.4); }
.btn-outline { border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-outline-dark { border-color: var(--accent); color: var(--accent); }
.btn-outline-dark:hover { background: var(--accent); color: var(--white); }
.btn-wa { background: var(--whatsapp); color: var(--white); }
.btn-wa:hover { background: var(--whatsapp-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.4); }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Section Shared ────────────────────────────────────────── */
section { padding: 72px 0; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block;
  background: rgba(230,126,34,.1);
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.section-header h2 { font-size: 2rem; font-weight: 700; color: var(--primary); line-height: 1.3; }
.section-header p { color: var(--text-light); font-size: 1rem; margin-top: 10px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ================================================================
   HEADER
================================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 16px;
}
/* Logo */
.logo a { display: flex; flex-direction: column; line-height: 1; gap: 2px; }
.logo-main { font-size: 1.25rem; font-weight: 700; color: var(--white); letter-spacing: .4px; }
.logo-sub  { font-size: .62rem; color: var(--secondary); font-weight: 400; letter-spacing: .2px; }

/* Desktop nav */
.main-nav ul { display: flex; gap: 2px; }
.main-nav a {
  color: rgba(255,255,255,.82);
  font-size: .87rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: var(--ease);
}
.main-nav a:hover,
.main-nav a.active { color: var(--white); background: rgba(255,255,255,.1); }

/* Phone CTA */
.header-phone {
  color: var(--accent);
  font-weight: 700;
  font-size: .9rem;
  white-space: nowrap;
  padding: 8px 14px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  transition: var(--ease);
}
.header-phone:hover { background: var(--accent); color: var(--white); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav Drawer */
.mobile-nav {
  display: none;
  background: var(--primary-light);
  border-top: 1px solid rgba(255,255,255,.1);
}
.mobile-nav.open { display: block; }
.mobile-nav ul  { flex-direction: column; padding: 12px 20px; }
.mobile-nav li  { border-bottom: 1px solid rgba(255,255,255,.07); }
.mobile-nav a   { display: block; color: rgba(255,255,255,.85); font-size: .9rem; font-weight: 500; padding: 12px 4px; transition: var(--ease); }
.mobile-nav a:hover { color: var(--accent); }

/* ================================================================
   HERO SLIDER
================================================================ */
.hero-slider { position: relative; height: 580px; overflow: hidden; background: var(--primary); }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity .85s ease; }
.slide.active { opacity: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(44,62,80,.85) 0%, rgba(44,62,80,.42) 60%, rgba(44,62,80,.2) 100%);
}
.slide-content { position: absolute; inset: 0; display: flex; align-items: center; }
.slide-text { max-width: 640px; padding: 0 48px; color: var(--white); }
.slide-text .slide-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.slide-text h1 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.slide-text p { font-size: 1.05rem; margin-bottom: 28px; color: rgba(255,255,255,.9); line-height: 1.6; }

/* Slider controls */
.slider-nav {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  border: none;
  transition: var(--ease);
}
.slider-dot.active { background: var(--accent); transform: scale(1.35); }
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  border: 2px solid rgba(255,255,255,.25);
  color: var(--white);
  width: 50px; height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}
.slider-arrow:hover { background: var(--accent); border-color: var(--accent); }
.slider-prev { left: 20px; }
.slider-next { right: 20px; }

/* ================================================================
   USP BAR
================================================================ */
.usp-bar { background: var(--accent); padding: 14px 0; }
.usp-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.usp-item { display: flex; align-items: center; gap: 9px; color: var(--white); font-weight: 600; font-size: .88rem; }
.usp-item svg { width: 20px; height: 20px; fill: var(--white); flex-shrink: 0; }

/* ================================================================
   SERVICES GRID (index + hizmetlerimiz)
================================================================ */
.services { background: var(--light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--ease);
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.service-card-img { position: relative; }
.service-card-img img { width: 100%; height: 210px; object-fit: cover; }
.service-card-body { padding: 20px; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.service-card p { color: var(--text-light); font-size: .88rem; line-height: 1.65; margin-bottom: 14px; }
.service-link { color: var(--accent); font-weight: 600; font-size: .85rem; display: inline-flex; align-items: center; gap: 4px; transition: var(--ease); }
.service-link:hover { color: var(--accent-hover); gap: 8px; }

/* ================================================================
   FEATURES / WHY US (homepage)
================================================================ */
.features { background: var(--white); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 28px; }
.feature-card { text-align: center; padding: 32px 20px; border-radius: var(--radius-lg); transition: var(--ease); }
.feature-card:hover { background: var(--light); transform: translateY(-4px); }
.feature-icon {
  width: 68px; height: 68px;
  background: rgba(230,126,34,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.feature-icon svg { width: 32px; height: 32px; fill: var(--accent); }
.feature-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.feature-card p { color: var(--text-light); font-size: .88rem; }

/* ================================================================
   CTA BANNER
================================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 64px 0;
  text-align: center;
  color: var(--white);
}
.cta-banner h2 { font-size: 1.9rem; font-weight: 700; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.85); margin-bottom: 30px; font-size: 1.05rem; }
.cta-banner .btn-group { justify-content: center; }

/* ================================================================
   MAP
================================================================ */
.map-section { line-height: 0; }
.map-section iframe { display: block; width: 100%; }

/* ================================================================
   PAGE HERO (inner pages)
================================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 56px 0 48px;
  color: var(--white);
  text-align: center;
}
.page-hero h1 { font-size: 2.1rem; font-weight: 700; margin-bottom: 10px; }
.page-hero p  { color: rgba(255,255,255,.85); font-size: 1rem; max-width: 540px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: .83rem;
  color: rgba(255,255,255,.65);
}
.breadcrumb a { color: rgba(255,255,255,.65); transition: var(--ease); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: .5; }

/* ================================================================
   KURUMSAL PAGE
================================================================ */
.about-section { padding: 72px 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-img img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; height: 440px; object-fit: cover; }
.about-text h2 { font-size: 1.75rem; font-weight: 700; color: var(--primary); margin-bottom: 16px; line-height: 1.3; }
.about-text p { color: var(--text-light); margin-bottom: 14px; font-size: .96rem; }
.check-list { margin: 18px 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--text);
  font-size: .92rem;
}
.check-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.mvd-section { background: var(--light); }
.mvd-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mvd-card { background: var(--white); border-radius: var(--radius-lg); padding: 30px 24px; box-shadow: var(--shadow); border-top: 4px solid var(--accent); }
.mvd-card h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.mvd-card p  { color: var(--text-light); font-size: .88rem; line-height: 1.7; }

/* ================================================================
   HİZMETLERİMİZ PAGE — Detail blocks
================================================================ */
.service-detail { padding: 64px 0; border-bottom: 1px solid var(--border); }
.service-detail:last-child { border-bottom: none; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.service-detail.reverse .service-detail-grid { direction: rtl; }
.service-detail.reverse .service-detail-grid > * { direction: ltr; }
.service-detail-img img { border-radius: var(--radius-lg); width: 100%; height: 370px; object-fit: cover; box-shadow: var(--shadow-md); }
.service-label { display: inline-block; background: rgba(44,62,80,.08); color: var(--primary); font-size: .75rem; font-weight: 700; padding: 3px 12px; border-radius: 20px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: .8px; }
.service-detail-text h2 { font-size: 1.55rem; font-weight: 700; color: var(--primary); margin-bottom: 14px; line-height: 1.35; }
.service-detail-text p  { color: var(--text-light); font-size: .93rem; margin-bottom: 12px; line-height: 1.75; }
.use-areas { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.use-tag { background: var(--light); color: var(--primary); font-size: .78rem; padding: 4px 12px; border-radius: 20px; border: 1px solid var(--border); font-weight: 500; }
.sales-text { background: rgba(230,126,34,.06); border-left: 3px solid var(--accent); padding: 12px 16px; border-radius: 0 var(--radius) var(--radius) 0; color: var(--text); font-size: .9rem; font-style: italic; margin-top: 12px; }

/* Gallery */
.gallery-section { padding: 72px 0; background: var(--light); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.gallery-item img { width: 100%; height: 190px; object-fit: cover; transition: transform .4s ease; display: block; }
.gallery-item:hover img { transform: scale(1.05); }

/* ================================================================
   NEDEN BİZ PAGE
================================================================ */
.stats-section { background: var(--primary); padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-card { padding: 20px 12px; }
.stat-number { font-size: 2.6rem; font-weight: 700; color: var(--accent); line-height: 1; }
.stat-suffix { font-size: 1.4rem; font-weight: 700; color: var(--accent); }
.stat-label  { color: rgba(255,255,255,.75); font-size: .84rem; margin-top: 8px; line-height: 1.4; }

.advantages-section { padding: 72px 0; }
.advantages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.advantage-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  padding: 22px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--ease);
}
.advantage-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.adv-icon {
  width: 46px; height: 46px;
  background: rgba(39,174,96,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.adv-icon svg { width: 22px; height: 22px; fill: var(--green); }
.advantage-card h4 { font-size: .95rem; font-weight: 700; color: var(--primary); margin-bottom: 5px; }
.advantage-card p  { color: var(--text-light); font-size: .85rem; line-height: 1.6; }

.process-section { background: var(--light); }
.process-steps { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 24px; counter-reset: step; }
.process-step { text-align: center; padding: 30px 16px; counter-increment: step; }
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 52px;
  margin: 0 auto 16px;
  display: block;
}
.process-step h3 { font-size: 1rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.process-step p  { color: var(--text-light); font-size: .86rem; }

.testimonials-section { padding: 72px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.quote-mark { font-size: 4rem; color: rgba(230,126,34,.18); line-height: 1; margin-bottom: -16px; font-family: Georgia, serif; }
.stars { color: #F39C12; font-size: .9rem; margin-bottom: 10px; }
.testimonial-text { color: var(--text); font-size: .91rem; line-height: 1.72; margin-bottom: 18px; }
.testimonial-author { font-weight: 700; color: var(--primary); font-size: .87rem; }
.testimonial-loc { color: var(--text-light); font-size: .78rem; }

/* ================================================================
   İLETİŞİM PAGE
================================================================ */
.contact-section { padding: 72px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; }
.contact-info h2 { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: 22px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.c-icon {
  width: 46px; height: 46px;
  background: rgba(230,126,34,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-icon svg { width: 22px; height: 22px; fill: var(--accent); }
.contact-item h4 { font-size: .88rem; font-weight: 700; color: var(--primary); margin-bottom: 3px; }
.contact-item a,
.contact-item p { color: var(--text-light); font-size: .92rem; }
.contact-item a:hover { color: var(--accent); }
.wa-big-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: var(--white);
  padding: 13px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  margin-top: 8px;
  transition: var(--ease);
}
.wa-big-btn:hover { background: var(--whatsapp-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,.4); }
.wa-big-btn svg { width: 22px; height: 22px; fill: var(--white); }

/* Contact Form */
.contact-form h2 { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: .86rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .91rem;
  color: var(--text);
  background: var(--white);
  transition: var(--ease);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(230,126,34,.12); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--ease);
}
.btn-submit:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(230,126,34,.4); }

/* ================================================================
   FOOTER
================================================================ */
footer { background: var(--primary); color: rgba(255,255,255,.78); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .logo-main { font-size: 1.2rem; color: var(--white); font-weight: 700; }
.footer-brand .logo-sub  { font-size: .65rem; color: var(--secondary); display: block; margin-bottom: 14px; }
.footer-desc { font-size: .86rem; line-height: 1.75; color: rgba(255,255,255,.65); margin-bottom: 18px; }
.footer-ci   { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; font-size: .85rem; }
.footer-ci a { color: rgba(255,255,255,.65); transition: var(--ease); }
.footer-ci a:hover { color: var(--accent); }
.footer-col h4 {
  color: var(--white);
  font-weight: 700;
  font-size: .92rem;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(255,255,255,.1);
}
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .85rem; transition: var(--ease); display: block; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 24px;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
}

/* ================================================================
   WHATSAPP FLOAT BUTTON
================================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.55);
  transition: var(--ease);
  animation: waPulse 2.8s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.12); animation: none; box-shadow: 0 6px 30px rgba(37,211,102,.7); }
.wa-float svg { width: 32px; height: 32px; fill: var(--white); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.55); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,.85), 0 0 0 9px rgba(37,211,102,.12); }
}

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

/* 1024px */
@media (max-width: 1024px) {
  .hero-slider { height: 500px; }
  .slide-text h1 { font-size: 2.1rem; }
  .slide-text  { padding: 0 36px; }
  .about-grid  { gap: 36px; }
  .service-detail-grid { gap: 36px; }
  .stats-grid  { grid-template-columns: repeat(2,1fr); gap: 20px; }
  .mvd-grid    { grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(3,1fr); }
}

/* 768px */
@media (max-width: 768px) {
  .main-nav    { display: none; }
  .hamburger   { display: flex; }
  .header-phone{ font-size: .8rem; padding: 7px 10px; }
  .hero-slider { height: 420px; }
  .slide-text  { padding: 0 24px; }
  .slide-text h1{ font-size: 1.65rem; }
  .slide-text p { font-size: .93rem; }
  .usp-inner   { gap: 18px; }
  .usp-item    { font-size: .8rem; }
  section      { padding: 52px 0; }
  .section-header h2 { font-size: 1.65rem; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .about-grid  { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr !important; direction: ltr !important; }
  .service-detail.reverse .service-detail-grid { direction: ltr; }
  .service-detail-img img { height: 260px; }
  .mvd-grid    { grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); }
  .stats-grid  { grid-template-columns: repeat(2,1fr); }
  .about-img img{ height: 300px; }
  .form-row    { grid-template-columns: 1fr; }
}

/* 480px */
@media (max-width: 480px) {
  .hero-slider  { height: 360px; }
  .slide-text h1{ font-size: 1.35rem; }
  .btn          { padding: 11px 18px; font-size: .86rem; }
  .btn-group    { flex-direction: column; }
  .features-grid{ grid-template-columns: 1fr; }
  .stats-grid   { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .slider-arrow { display: none; }
  .process-steps{ grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 1.6rem; }
  .header-phone { display: none; }
}

/* 360px */
@media (max-width: 360px) {
  .container    { padding: 0 14px; }
  .header-inner { padding: 10px 14px; }
  .logo-main    { font-size: 1.05rem; }
}
