/* ===== AK Vinç - Corporate Website Styles ===== */
/* Color Palette: Dark Blue #0A1628, Yellow #F5A623, White #FFFFFF, Light Gray #F4F6F8 */

:root {
  --blue: #0a1628;
  --blue-light: #132238;
  --blue-mid: #1b3a5c;
  --yellow: #f5a623;
  --yellow-dark: #d4900e;
  --white: #ffffff;
  --gray-light: #f4f6f8;
  --gray: #e2e6ea;
  --gray-mid: #8a95a3;
  --gray-dark: #4a5568;
  --text: #1a202c;
  --text-light: #718096;
  --shadow: 0 4px 24px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 12px 48px rgba(10, 22, 40, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Plus Jakarta Sans", "Inter", sans-serif;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}
ul,
ol {
  list-style: none;
}
button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.2;
  color: var(--blue);
}
h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}
h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
}
h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.75rem);
}
h4 {
  font-size: 1.25rem;
}
p {
  margin-bottom: 1rem;
  color: var(--gray-dark);
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

/* ===== Section ===== */
.section {
  padding: 80px 0;
}
.section--gray {
  background: var(--gray-light);
}
.section--blue {
  background: var(--blue);
  color: var(--white);
}
.section--blue h2,
.section--blue h3,
.section--blue h4 {
  color: var(--white);
}
.section--blue p {
  color: rgba(255, 255, 255, 0.75);
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-header .badge {
  display: inline-block;
  background: rgba(245, 166, 35, 0.12);
  color: var(--yellow-dark);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.section--blue .section-header .badge {
  background: rgba(245, 166, 35, 0.2);
  color: var(--yellow);
}
.section-header p {
  font-size: 1.1rem;
  color: var(--gray-mid);
}

/* ===== Header / Topbar ===== */
.topbar {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  color: var(--white);
  font-size: 0.82rem;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 40px;
}
.topbar a {
  color: rgba(255, 255, 255, 0.9);
  transition: color var(--transition);
}
.topbar a:hover {
  color: var(--yellow);
}
.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-left span,
.topbar-right span {
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.2px;
}
.topbar svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  opacity: 0.8;
}
.topbar-right .topbar-badge {
  background: var(--yellow);
  color: var(--blue);
  font-weight: 800;
  font-size: 0.72rem;
  padding: 3px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.topbar-right .topbar-badge svg {
  opacity: 1;
  width: 12px;
  height: 12px;
}
@media (max-width: 767px) {
  .topbar-right {
    display: none;
  }
  .topbar-left {
    gap: 12px;
  }
  .topbar-left span:last-child {
    display: none;
  }
}

/* Header */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(10, 22, 40, 0.06);
  transition: box-shadow var(--transition);
}
.header.scrolled {
  box-shadow: 0 4px 24px rgba(10, 22, 40, 0.1);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo img {
  height: 44px;
  width: auto;
  transition: transform var(--transition);
}
.logo:hover img {
  transform: scale(1.03);
}

/* Navigation */
.nav {
  display: none;
}
.nav.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 16px 48px rgba(10, 22, 40, 0.15);
  padding: 16px 24px 24px;
  gap: 2px;
  z-index: 999;
  border-top: 2px solid var(--yellow);
  max-height: 80vh;
  overflow-y: auto;
}
.nav a {
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  transition: all var(--transition);
  position: relative;
}
.nav a:hover {
  color: var(--yellow-dark);
  background: rgba(245, 166, 35, 0.06);
}
.nav a.active {
  color: var(--yellow-dark);
  background: rgba(245, 166, 35, 0.08);
}

/* Dropdown */
.nav-item {
  position: relative;
}
.nav-item > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item > a svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition);
}
.nav-item:hover > a svg {
  transform: rotate(180deg);
}
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: -12px;
  background: var(--white);
  min-width: 280px;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(10, 22, 40, 0.15);
  padding: 8px 0;
  z-index: 100;
  border: 1px solid rgba(10, 22, 40, 0.06);
  animation: dropdownFade 0.2s ease;
}
@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.dropdown::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}
.dropdown a {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 0.88rem;
  border-radius: 0;
  transition: all var(--transition);
}
.dropdown a:hover {
  background: var(--gray-light);
  color: var(--yellow-dark);
  padding-left: 24px;
}
.nav-item:hover .dropdown {
  display: block;
}
/* Mobile dropdown */
@media (max-width: 1023px) {
  .nav.active .dropdown {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0 16px;
    min-width: auto;
    animation: none;
  }
  .nav.active .dropdown::before {
    display: none;
  }
  .nav.active .nav-item.dropdown-open .dropdown {
    display: block;
  }
  .nav.active .dropdown a {
    font-size: 0.85rem;
    padding: 8px 16px;
    color: var(--gray-dark);
  }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  background: none;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.hamburger:hover {
  background: var(--gray-light);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
  .nav {
    display: flex;
    align-items: center;
    gap: 2px;
  }
  .nav.active {
    position: static;
    flex-direction: row;
    box-shadow: none;
    padding: 0;
    border-top: none;
    max-height: none;
    overflow: visible;
  }
}

/* Header CTA */
.header-cta {
  display: none;
}
@media (min-width: 1024px) {
  .header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }
}
.btn-header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--blue);
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.88rem;
  transition: all var(--transition);
  box-shadow: 0 2px 12px rgba(245, 166, 35, 0.25);
  white-space: nowrap;
}
.btn-header-phone:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.3);
}
.btn-header-phone svg {
  width: 16px;
  height: 16px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--blue);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.92) 0%,
    rgba(10, 22, 40, 0.6) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 120px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 166, 35, 0.15);
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero h1 strong {
  color: var(--yellow);
}
.hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  margin-bottom: 36px;
  max-width: 560px;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-stat {
  text-align: center;
}
.hero-stat .number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--yellow);
  display: block;
}
.hero-stat .label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 4px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.btn-primary {
  background: var(--yellow);
  color: var(--blue);
  border-color: var(--yellow);
}
.btn-primary:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}
.btn-dark {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-dark:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}
.btn-sm {
  padding: 10px 24px;
  font-size: 0.9rem;
}
.btn-lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* ===== Services Grid ===== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--gray);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--yellow);
}
.service-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.08);
}
.service-card-body {
  padding: 28px;
}
.service-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.service-card-body p {
  font-size: 0.95rem;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--yellow-dark);
  font-size: 0.9rem;
}
.service-card-link:hover {
  gap: 10px;
}

/* ===== Fleet / Machine Grid ===== */
.fleet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .fleet-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.fleet-card-img {
  height: 240px;
  overflow: hidden;
}
.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fleet-card-body {
  padding: 24px;
}
.fleet-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.fleet-card-specs {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.fleet-card-specs .spec {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--gray-light);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
}

/* ===== Regions ===== */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) {
  .regions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .regions-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.region-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue);
  transition: all var(--transition);
  border: 1px solid var(--gray);
}
.region-link:hover {
  border-color: var(--yellow);
  color: var(--yellow-dark);
  transform: translateX(4px);
}
.region-link svg {
  width: 16px;
  height: 16px;
  color: var(--yellow);
  flex-shrink: 0;
}

/* ===== Why Choose ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.why-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition);
}
.why-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}
.why-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(245, 166, 35, 0.15);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.why-card-icon svg {
  width: 28px;
  height: 28px;
  color: var(--yellow);
}
.why-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.why-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== Trust / References ===== */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 0;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.trust-item .number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--blue);
}
.trust-item .label {
  font-size: 0.9rem;
  color: var(--gray-mid);
  font-weight: 600;
}

/* ===== Quote Form ===== */
.quote-form-wrapper {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full {
  grid-column: 1 / -1;
}
.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue);
}
.form-input,
.form-select,
.form-textarea {
  background: var(--gray-light);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 1rem;
  color: var(--text);
  transition: border-color var(--transition);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--yellow);
  background: var(--white);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  margin-top: 8px;
}

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 32px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--gray);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.active {
  border-color: var(--yellow);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue);
  background: var(--white);
  gap: 16px;
}
.faq-question:hover {
  color: var(--yellow-dark);
}
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ===== Map ===== */
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrapper iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* ===== Footer ===== */
.footer {
  background: var(--blue);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}
.footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.footer-about p {
  font-size: 0.9rem;
  line-height: 1.8;
}
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.footer-logo img {
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
}
.footer-logo span {
  color: var(--yellow);
}
.footer-links a {
  display: block;
  padding: 6px 0;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-links a:hover {
  color: var(--yellow);
  padding-left: 6px;
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--yellow);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
}

/* ===== Floating Buttons ===== */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.float-btn:hover {
  transform: scale(1.1);
}
.float-btn svg {
  width: 26px;
  height: 26px;
}
.float-btn--whatsapp {
  background: #25d366;
}
.float-btn--phone {
  background: var(--yellow);
  color: var(--blue);
}
.float-btn--top {
  background: var(--blue);
  opacity: 0;
  pointer-events: none;
}
.float-btn--top.visible {
  opacity: 1;
  pointer-events: all;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  padding: 16px 0;
  background: var(--gray-light);
  border-bottom: 1px solid var(--gray);
}
.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
}
.breadcrumb-list a {
  color: var(--gray-mid);
  font-weight: 500;
}
.breadcrumb-list a:hover {
  color: var(--yellow-dark);
}
.breadcrumb-list .sep {
  color: var(--gray);
}
.breadcrumb-list .current {
  color: var(--blue);
  font-weight: 700;
}

/* ===== Page Hero ===== */
.page-hero {
  background: var(--blue);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.95),
    rgba(27, 58, 92, 0.8)
  );
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
  max-width: 640px;
}

/* ===== Service Detail Page ===== */
.service-detail {
  padding: 64px 0;
}
.service-content {
  max-width: 800px;
}
.service-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.service-content h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 1.2rem;
}
.service-content p {
  line-height: 1.9;
  margin-bottom: 16px;
}
.service-content ul {
  margin: 16px 0;
  padding-left: 0;
}
.service-content ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--gray-dark);
}
.service-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}
.service-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-card {
  background: var(--gray-light);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-card h4 {
  margin-bottom: 16px;
  font-size: 1rem;
}
.sidebar-card a {
  display: block;
  padding: 10px 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-dark);
  border-bottom: 1px solid var(--gray);
  transition: all var(--transition);
}
.sidebar-card a:last-child {
  border-bottom: none;
}
.sidebar-card a:hover {
  color: var(--yellow-dark);
  padding-left: 8px;
}
.sidebar-card a.active {
  color: var(--yellow-dark);
  font-weight: 700;
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .service-layout {
    grid-template-columns: 1fr 320px;
  }
}

/* ===== About Page ===== */
.about-hero-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin: -80px 0 48px;
  box-shadow: var(--shadow-lg);
}
.about-hero-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .about-values {
    grid-template-columns: repeat(3, 1fr);
  }
}
.value-card {
  padding: 32px 24px;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid var(--gray);
  transition: all var(--transition);
}
.value-card:hover {
  border-color: var(--yellow);
  box-shadow: var(--shadow);
}
.value-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(245, 166, 35, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.value-card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--yellow-dark);
}
.value-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== Contact Page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray);
  margin-bottom: 16px;
  transition: all var(--transition);
}
.contact-info-card:hover {
  border-color: var(--yellow);
}
.contact-info-card .icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 166, 35, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-card .icon svg {
  width: 22px;
  height: 22px;
  color: var(--yellow-dark);
}
.contact-info-card h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.contact-info-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}
.contact-info-card a {
  color: var(--yellow-dark);
  font-weight: 600;
}

/* ===== District Page Grid ===== */
.district-machines-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) {
  .district-machines-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .district-machines-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.district-machine-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray);
  transition: all var(--transition);
}
.district-machine-card:hover {
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.district-machine-card .icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 166, 35, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.district-machine-card h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.district-machine-card p {
  font-size: 0.8rem;
  margin-bottom: 0;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Utility ===== */
.text-center {
  text-align: center;
}
.text-yellow {
  color: var(--yellow);
}
.mb-0 {
  margin-bottom: 0;
}
.mb-2 {
  margin-bottom: 8px;
}
.mb-4 {
  margin-bottom: 16px;
}
.mb-6 {
  margin-bottom: 24px;
}
.mb-8 {
  margin-bottom: 32px;
}
.mt-4 {
  margin-top: 16px;
}
.mt-8 {
  margin-top: 32px;
}
.pt-0 {
  padding-top: 0;
}

/* ===== Specs Table ===== */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
.specs-table th,
.specs-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gray);
  font-size: 0.9rem;
}
.specs-table th {
  background: var(--gray-light);
  font-weight: 700;
  color: var(--blue);
}
.specs-table tr:hover td {
  background: rgba(245, 166, 35, 0.04);
}

/* ===== Rich Content Images ===== */
.content-image {
  border-radius: var(--radius);
  overflow: hidden;
  margin: 32px 0;
  box-shadow: var(--shadow);
}
.content-image img {
  width: 100%;
  height: auto;
}

/* ===== Print ===== */
@media print {
  .header,
  .topbar,
  .floating-buttons,
  .footer {
    display: none;
  }
  .hero {
    min-height: auto;
    padding: 40px 0;
  }
  body {
    font-size: 12pt;
  }
}

/* ===== SEO Master Content ===== */
.seo-content {
  padding: 80px 0;
}
.seo-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .seo-content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}
.seo-content h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 20px;
  color: var(--blue);
}
.seo-content h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--blue);
}
.seo-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--gray-dark);
  margin-bottom: 16px;
}
.seo-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.seo-content ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.7;
}
.seo-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}
.seo-content-full {
  grid-column: 1 / -1;
}
.seo-services-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.seo-services-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--gray-light);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue);
  transition: all var(--transition);
}
.seo-services-list a:hover {
  background: var(--yellow);
  color: var(--blue);
  transform: translateY(-2px);
}
.seo-services-list a svg {
  width: 18px;
  height: 18px;
  color: var(--yellow-dark);
  flex-shrink: 0;
}
.seo-services-list a:hover svg {
  color: var(--blue);
}
