/* ============================================
   İLYA Nakliyat – style.css (v2, full site)
   ============================================ */

:root {
  --red:        #d62b2b;
  --red-dark:   #b02020;
  --red-light:  #fdf0f0;
  --navy:       #0d2647;
  --navy-mid:   #163a6e;
  --navy-light: #e8f0fb;
  --teal:       #0f7c6e;
  --teal-light: #e6f5f3;
  --white:      #ffffff;
  --gray-50:    #f7f9fc;
  --gray-100:   #eef1f7;
  --gray-200:   #dde3ef;
  --gray-400:   #8d99b3;
  --gray-600:   #546080;
  --gray-800:   #2a3250;
  --text:       #1c2237;
  --border:     #e0e6f0;
  --shadow-sm:  0 2px 8px rgba(13,38,71,.07);
  --shadow-md:  0 6px 24px rgba(13,38,71,.12);
  --shadow-lg:  0 16px 56px rgba(13,38,71,.18);
  --radius:     12px;
  --trans:      .28s ease;
}

*,*::before,*::after { box-sizing: border-box; margin:0; padding:0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  padding-bottom: 0;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1,h2,h3,h4,h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.15;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 80px 0; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 6px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 14px;
  cursor: pointer; transition: var(--trans); border: 2px solid transparent;
  white-space: nowrap;
}
.btn--red    { background: var(--red); color: #fff; border-color: var(--red); box-shadow: 0 4px 16px rgba(214,43,43,.3); }
.btn--red:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-2px); }
.btn--navy   { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-mid); transform: translateY(-2px); }
.btn--teal   { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn--teal:hover { background: #0a6357; transform: translateY(-2px); }
.btn--white  { background: #fff; color: var(--navy); border-color: #fff; }
.btn--white:hover { background: var(--gray-100); transform: translateY(-2px); }
.btn--wa     { background: #25d366; color: #fff; border-color: #25d366; }
.btn--wa:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn--outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline-navy:hover { background: var(--navy); color: #fff; }
.btn--sm  { padding: 9px 18px; font-size: 13px; }
.btn--lg  { padding: 16px 36px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }
.mt-16 { margin-top: 16px; }

/* ── SECTION COMMONS ── */
.section-header { text-align: center; max-width: 660px; margin: 0 auto 56px; }
.section-tag {
  display: inline-block;
  background: var(--red-light); color: var(--red);
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 4px; margin-bottom: 12px;
}
.section-header h2 { font-size: clamp(26px,3.5vw,40px); color: var(--navy); margin-bottom: 12px; }
.section-header p  { color: var(--gray-600); font-size: 16px; }
.text-red { color: var(--red); }

/* ══════════════════════════════
   TOPBAR
══════════════════════════════ */
.topbar {
  background: var(--navy);
  padding: 8px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,.75);
}
.topbar-container {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  flex-wrap: wrap;
}
.topbar-left { display: flex; align-items: center; gap: 18px; }
.topbar-badge {
  background: var(--red); color: #fff; border-radius: 3px;
  padding: 2px 8px; font-weight: 700; font-size: 11px;
}
.topbar-right { display: flex; align-items: center; gap: 14px; }
.topbar-phone { color: #fff; font-weight: 700; display: flex; align-items: center; gap: 5px; transition: var(--trans); }
.topbar-phone:hover { color: var(--red); }
.topbar-wa { background: #25d366; color: #fff; padding: 4px 12px; border-radius: 4px; font-weight: 700; display: flex; align-items: center; gap: 5px; transition: var(--trans); }
.topbar-wa:hover { background: #1ebe5d; }

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: #fff; box-shadow: var(--shadow-md);
  padding: 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 0;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; margin-right: 32px; flex-shrink: 0; height: 100%; }
.site-logo { display: block; object-fit: contain; }
.site-logo--header { width: 108px; height: 58px; }
.nav-links { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 13px; border-radius: 6px;
  font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 13.5px;
  color: var(--gray-800); transition: var(--trans); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--red); background: var(--red-light); }
.has-dropdown { position: relative; }
.dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); min-width: 240px; padding: 8px 0; z-index: 200;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 18px; font-size: 14px; font-weight: 500;
  color: var(--gray-800); transition: var(--trans);
}
.dropdown li a:hover { background: var(--red-light); color: var(--red); padding-left: 22px; }
.nav-cta {
  margin-left: auto; background: var(--red); color: #fff;
  padding: 11px 22px; border-radius: 6px;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13.5px;
  transition: var(--trans); flex-shrink: 0; box-shadow: 0 4px 14px rgba(214,43,43,.3);
}
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: var(--trans); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero { position: relative; height: 620px; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide  { position: absolute; inset: 0; opacity: 0; transition: opacity .8s ease; }
.hero-slide.active { opacity: 1; z-index: 1; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(13,38,71,.88) 0%, rgba(13,38,71,.5) 60%, rgba(13,38,71,.2) 100%); z-index: 1; }
.slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.slide-bg--1 { background-color: #0d2647; background-image: repeating-linear-gradient(135deg, rgba(214,43,43,.08) 0px, rgba(214,43,43,.08) 2px, transparent 2px, transparent 60px), repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0px, rgba(255,255,255,.03) 2px, transparent 2px, transparent 60px); }
.slide-bg--2 { background: linear-gradient(135deg, #0d2647 0%, #1a4080 100%); }
.slide-bg--3 { background: linear-gradient(135deg, #0a1f3d 0%, #0d2647 50%, #1a4080 100%); }

/* Hero truck visual */
.slide-bg--1::after, .slide-bg--2::after, .slide-bg--3::after {
  content: '🚛';
  position: absolute;
  right: 8%;
  bottom: 15%;
  font-size: 180px;
  opacity: .12;
  filter: grayscale(1) brightness(3);
}

.hero-content {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1200px; width: 100%; padding: 0 20px;
  z-index: 2;
  max-width: 640px;
  left: calc(50% - 240px);
  transform: translateY(-50%);
}
.hero-tag {
  display: inline-block; background: var(--red); color: #fff;
  font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: .08em; padding: 6px 16px;
  border-radius: 4px; margin-bottom: 16px;
}
.hero-content h1 { font-size: clamp(34px, 4.5vw, 58px); color: #fff; margin-bottom: 16px; }
.hl { color: var(--red); }
.hero-content p  { color: rgba(255,255,255,.8); font-size: 17px; max-width: 500px; margin-bottom: 28px; line-height: 1.7; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero phone strip */
.hero-phone-strip {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(13,38,71,.9); backdrop-filter: blur(8px);
  z-index: 3; padding: 14px 20px;
  border-top: 3px solid var(--red);
}
.hps-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.hps-inner svg { color: var(--red); flex-shrink: 0; }
.hps-inner span { display: block; font-size: 12px; color: rgba(255,255,255,.6); }
.hps-inner a    { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 900; color: #fff; transition: var(--trans); }
.hps-inner a:hover { color: var(--red); }
.hps-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

/* Slide controls */
.slide-dots { position: absolute; bottom: 80px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 5; }
.dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.4); border: none; cursor: pointer; transition: var(--trans); }
.dot.active { background: var(--red); width: 28px; border-radius: 5px; }
.slide-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  color: #fff; font-size: 36px; width: 50px; height: 50px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 5; transition: var(--trans); backdrop-filter: blur(4px);
  line-height: 1;
}
.slide-arrow:hover { background: var(--red); border-color: var(--red); }
.slide-arrow--prev { left: 20px; }
.slide-arrow--next { right: 20px; }

/* ══════════════════════════════
   QUICK SERVICES
══════════════════════════════ */
.quick-services {
  background: var(--white);
  padding: 0;
  box-shadow: var(--shadow-md);
  position: relative; z-index: 10;
}
.qs-container {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.qs-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 28px 20px; text-align: center;
  border-right: 1px solid var(--border);
  transition: var(--trans); cursor: pointer;
  text-decoration: none;
}
.qs-card:last-child { border-right: none; }
.qs-card:hover { background: var(--red); color: #fff; }
.qs-card:hover .qs-icon { transform: scale(1.15); }
.qs-card:hover h3 { color: #fff; }
.qs-card:hover p  { color: rgba(255,255,255,.8); }
.qs-icon { font-size: 36px; transition: var(--trans); }
.qs-card h3 { font-size: 15px; color: var(--navy); transition: var(--trans); }
.qs-card p  { font-size: 12.5px; color: var(--gray-400); transition: var(--trans); margin: 0; }

/* ══════════════════════════════
   ABOUT
══════════════════════════════ */
.about { background: var(--gray-50); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 16px; padding: 48px; text-align: center;
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.about-img-main::before {
  content: ''; position: absolute; top: -30%; right: -20%;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(214,43,43,.12);
}
.about-logo {
  display: block;
  width: 190px;
  max-width: 100%;
  margin: 0 auto 16px;
  padding: 14px 18px;
  background: rgba(255,255,255,.96);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.about-img-text   { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 900; color: #fff; }
.about-img-sub    { font-size: 13px; color: rgba(255,255,255,.6); margin-top: 4px; }
.about-badge-1, .about-badge-2 {
  position: absolute; background: #fff; border-radius: 10px;
  padding: 12px 16px; text-align: center;
  box-shadow: var(--shadow-md); border: 2px solid var(--border);
}
.about-badge-1 { top: -12px; right: -12px; }
.about-badge-2 { bottom: -12px; left: -12px; }
.about-badge-1 span, .about-badge-2 span { display: block; font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 900; color: var(--red); }
.about-badge-1 small, .about-badge-2 small { font-size: 11px; color: var(--gray-600); font-weight: 600; }
.trust-strip { display: flex; gap: 0; margin-top: 16px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.trust-item { flex: 1; display: flex; align-items: center; justify-content: center; padding: 16px 8px; background: #fff; font-size: 12px; font-weight: 800; color: var(--navy); border-right: 1px solid var(--border); transition: var(--trans); text-align: center; }
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--red); color: #fff; }

.about-content .section-tag { margin-bottom: 10px; }
.about-content h2 { font-size: clamp(26px,3vw,38px); color: var(--navy); margin-bottom: 16px; }
.about-lead { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 12px; }
.about-content > p { color: var(--gray-600); margin-bottom: 24px; }
.about-features { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.af-item { display: flex; gap: 14px; align-items: flex-start; }
.af-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--red); color: #fff; font-size: 13px; font-weight: 900; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.af-item h4 { font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 15px; color: var(--navy); margin-bottom: 2px; }
.af-item p  { font-size: 13.5px; color: var(--gray-600); }
.about-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
.services {
  background:
    linear-gradient(180deg, #fff 0%, var(--gray-50) 100%);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 10px 34px rgba(13,38,71,.08);
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(214,43,43,.38);
  box-shadow: 0 20px 48px rgba(13,38,71,.14);
}
.service-photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 168px;
  aspect-ratio: 1.48 / 1;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(13,38,71,.82), rgba(214,43,43,.58)),
    repeating-linear-gradient(135deg, rgba(255,255,255,.16) 0 1px, transparent 1px 18px);
}
.service-photo::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(13,38,71,0), rgba(13,38,71,.64));
  pointer-events: none;
}
.service-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.service-card:hover .service-photo img { transform: scale(1.06); }
.service-photo img ~ .service-photo-placeholder { display: none; }
.service-photo-placeholder {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 126px;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}
.service-card-icon {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(13,38,71,.18);
  font-size: 24px;
}
.service-card-num {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  color: var(--red);
}
.service-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 24px 26px;
}
.service-card h3 {
  color: var(--navy);
  font-size: 19px;
  margin-bottom: 12px;
  letter-spacing: 0;
}
.service-card p {
  color: var(--gray-600);
  font-size: 14.5px;
  line-height: 1.72;
  margin-bottom: 22px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--red);
  transition: gap var(--trans), color var(--trans);
}
.service-link::after {
  content: '→';
  font-size: 18px;
  line-height: 1;
}
.service-link:hover {
  gap: 12px;
  color: var(--red-dark);
}

/* ══════════════════════════════
   STATS
══════════════════════════════ */
.stats { background: var(--navy); padding: 64px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-card { text-align: center; padding: 32px 20px; border-right: 1px solid rgba(255,255,255,.1); }
.stat-card:last-child { border-right: none; }
.stat-icon { display: block; font-size: 32px; margin-bottom: 10px; }
.stat-num  { font-family: 'Montserrat', sans-serif; font-size: 52px; font-weight: 900; color: #fff; line-height: 1; }
.stat-plus { font-family: 'Montserrat', sans-serif; font-size: 36px; font-weight: 900; color: var(--red); }
.stat-label { display: block; font-size: 14px; font-weight: 600; color: rgba(255,255,255,.6); margin-top: 6px; }

/* ══════════════════════════════
   WHY
══════════════════════════════ */
.why { background: var(--gray-50); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 26px;
  box-shadow: var(--shadow-sm); transition: var(--trans);
}
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.why-icon { font-size: 36px; width: 64px; height: 64px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.why-icon--red  { background: var(--red-light); }
.why-icon--navy { background: var(--navy-light); }
.why-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.why-card p  { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

/* ══════════════════════════════
   CTA BANNER
══════════════════════════════ */
.cta-banner { position: relative; overflow: hidden; padding: 64px 0; }
.cta-bg { position: absolute; inset: 0; background: #0a1f3d; }
.cta-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-text h2 { font-size: clamp(24px,3vw,38px); color: #fff; margin-bottom: 8px; }
.cta-text p  { color: rgba(255,255,255,.8); font-size: 16px; }
.cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.faq { background: var(--gray-50); }
.faq-grid { max-width: 900px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: none; border: none; cursor: pointer;
  font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 700;
  color: var(--navy); text-align: left; transition: var(--trans); gap: 12px;
}
.faq-q:hover { background: var(--red-light); color: var(--red); }
.faq-q.open { background: var(--navy); color: #fff; }
.faq-q.open .faq-arrow { transform: rotate(180deg); stroke: #fff; }
.faq-arrow { flex-shrink: 0; transition: transform var(--trans); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a.open { max-height: 300px; }
.faq-a p { padding: 16px 22px 20px; font-size: 14.5px; color: var(--gray-600); line-height: 1.7; }

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact-section { background: var(--white); }
.contact-layout { display: grid; grid-template-columns: 320px 1fr; gap: 36px; align-items: start; }
.contact-sidebar { display: flex; flex-direction: column; gap: 14px; }
.cs-card {
  background: var(--gray-50); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 18px 20px;
}
.cs-icon { font-size: 24px; margin-bottom: 6px; }
.cs-card h4 { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-400); font-weight: 700; margin-bottom: 6px; }
.cs-card a  { display: block; font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 900; color: var(--navy); transition: var(--trans); }
.cs-card a:hover { color: var(--red); }
.cs-card p, .cs-card small { font-size: 13.5px; color: var(--gray-600); line-height: 1.5; display: block; }

.contact-form-box {
  background: var(--gray-50); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px;
}
.contact-form-box h3 { font-size: 22px; color: var(--navy); margin-bottom: 24px; }
.fg { margin-bottom: 14px; }
.fg-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gray-600); margin-bottom: 5px; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: 7px; font-family: 'Open Sans', sans-serif; font-size: 14.5px;
  color: var(--text); background: #fff; transition: var(--trans); outline: none;
  appearance: none;
}
.fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238d99b3' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(214,43,43,.1); }
.fg textarea { resize: vertical; min-height: 80px; }
.form-note { font-size: 12px; color: var(--gray-400); margin-top: 10px; text-align: center; }
.form-success {
  display: none; margin-top: 12px; padding: 12px 16px;
  background: #e6f7ee; border: 1px solid #9fd4b8;
  border-radius: 8px; font-weight: 700; color: #1a6e3e; font-size: 14px;
}
.form-success.show { display: block; }

/* ══════════════════════════════
   REGION
══════════════════════════════ */
.region-sec { background: var(--gray-50); padding: 60px 0; }
.region-cols { display: flex; gap: 40px; background: #fff; border-radius: 16px; border: 1px solid var(--border); padding: 32px; }
.rc { flex: 1; }
.rc h4 { display: flex; align-items: center; gap: 10px; font-size: 16px; font-family: 'Open Sans', sans-serif; font-weight: 800; color: var(--navy); margin-bottom: 16px; }
.rc-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.rc-dot--red  { background: var(--red); }
.rc-dot--navy { background: var(--navy-mid); }
.rc-sep { width: 1px; background: var(--border); }
.rtags { display: flex; flex-wrap: wrap; gap: 7px; }
.rtags span { background: var(--gray-100); border: 1px solid var(--border); color: var(--gray-800); font-size: 12.5px; font-weight: 600; padding: 4px 11px; border-radius: 20px; transition: var(--trans); cursor: default; }
.rtags span:hover { background: var(--red); color: #fff; border-color: var(--red); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer-top { background: var(--navy); padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.3fr; gap: 40px; }
.footer-logo { display: flex; align-items: center; margin-bottom: 18px; }
.site-logo--footer {
  width: 180px;
  max-width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.fg-brand > p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.fg-brand em  { font-style: italic; color: rgba(255,255,255,.8); }
.footer-phones { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
.footer-phones a { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 16px; color: #fff; transition: var(--trans); }
.footer-phones a:hover { color: var(--red); }
.footer-wa-btn { display: inline-flex; align-items: center; gap: 8px; background: #25d366; color: #fff; padding: 10px 18px; border-radius: 6px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13.5px; transition: var(--trans); }
.footer-wa-btn:hover { background: #1ebe5d; }
.fg-links h4, .fg-contact h4 { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); font-family: 'Montserrat', sans-serif; font-weight: 700; margin-bottom: 16px; }
.fg-links ul { display: flex; flex-direction: column; gap: 8px; }
.fg-links a { color: rgba(255,255,255,.7); font-size: 14px; transition: var(--trans); }
.fg-links a:hover { color: #fff; padding-left: 4px; }
.fc-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; color: rgba(255,255,255,.7); font-size: 14px; }
.fc-item a { color: rgba(255,255,255,.85); transition: var(--trans); }
.fc-item a:hover { color: #fff; }
.footer-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.footer-badges span { background: rgba(255,255,255,.08); color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.12); padding: 4px 11px; border-radius: 4px; font-size: 12px; font-weight: 600; }
.footer-bottom { background: #08192e; padding: 16px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { color: rgba(255,255,255,.4); font-size: 12.5px; }
.footer-bottom a { color: rgba(255,255,255,.5); transition: var(--trans); }
.footer-bottom a:hover { color: #fff; }

/* ══════════════════════════════
   FLOAT BUTTONS
══════════════════════════════ */
.float-btns { position: fixed; right: 20px; bottom: 80px; display: flex; flex-direction: column; gap: 12px; z-index: 900; }
.float-call, .float-wa {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
  width: 56px; height: 56px; border-radius: 50%;
  font-size: 12px; font-weight: 800; font-family: 'Montserrat', sans-serif;
  line-height: 1;
  color: #fff; transition: var(--trans);
  box-shadow: var(--shadow-lg);
}
.float-call svg, .float-wa svg { display: block; flex: 0 0 auto; }
.float-call span, .float-wa span { display: block; line-height: 1; }
.float-call { background: var(--red); }
.float-wa   { background: #25d366; }
.float-call:hover { background: var(--red-dark); transform: scale(1.1); }
.float-wa:hover   { background: #1ebe5d; transform: scale(1.1); }

/* Mobile bottom bar */
.mobile-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy); border-top: 2px solid var(--red);
}
.mb-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 13px 8px; font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 13px; color: #fff; border-right: 1px solid rgba(255,255,255,.1);
  transition: var(--trans);
}
.mb-btn:last-child { border-right: none; }
.mb-btn--red  { background: var(--red); }
.mb-btn--wa   { background: #25d366; }
.mb-btn--navy { background: var(--navy-mid); }
.mb-btn:hover { filter: brightness(1.1); }

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
.anim-card { opacity: 0; transform: translateY(24px); transition: opacity .5s ease, transform .5s ease; }
.anim-card.visible { opacity: 1; transform: translateY(0); }
.anim-stat { opacity: 0; transform: scale(.9); transition: opacity .5s ease, transform .5s ease; }
.anim-stat.visible { opacity: 1; transform: scale(1); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1100px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; padding: 12px 0;
    box-shadow: var(--shadow-lg); z-index: 999;
    max-height: calc(100vh - 68px); overflow-y: auto;
  }
  .nav-links.open .nav-link { padding: 13px 24px; border-radius: 0; border-bottom: 1px solid var(--gray-100); }
  .has-dropdown .dropdown { position: static; display: none; box-shadow: none; border: none; background: var(--gray-50); border-radius: 0; }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown li a { padding: 10px 36px; }
  .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .about-grid    { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .qs-container  { grid-template-columns: repeat(2, 1fr); }
  .qs-card { border-bottom: 1px solid var(--border); }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .stat-card:nth-child(2) { border-right: none; }
  .topbar-left span:not(.topbar-badge) { display: none; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
  .mobile-bar  { display: flex; }
  .float-btns  { display: none; }
  .hero        { height: auto; min-height: 540px; }
  .hero-content { left: 20px; max-width: calc(100% - 40px); transform: translateY(-50%); }
  .hps-inner   { gap: 12px; }
  .hps-divider { display: none; }
  .hero-phone-strip { padding: 12px 16px; }
  .slide-arrow { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  body { padding-bottom: 58px; }
  .region-cols { flex-direction: column; }
  .rc-sep { width: 100%; height: 1px; }
}
@media (max-width: 540px) {
  section { padding: 64px 0; }
  .nav-logo { margin-right: 16px; }
  .site-logo--header { width: 92px; height: 52px; }
  .hero-content h1 { font-size: 30px; }
  .slide-dots      { bottom: 112px; }
  .qs-container    { grid-template-columns: repeat(2, 1fr); }
  .stats-grid      { grid-template-columns: repeat(2, 1fr); }
  .why-grid        { grid-template-columns: 1fr; }
  .services-grid   { grid-template-columns: 1fr; }
  .service-card-body { padding: 22px 20px 24px; }
  .service-photo { min-height: 190px; }
  .fg-row          { grid-template-columns: 1fr; }
  .contact-form-box { padding: 20px; }
}
