/* ===== ERKAN LOJİSTİK - ANA STİL DOSYASI ===== */
/* Renk Paleti: Koyu Lacivert, Turuncu, Beyaz, Açık Gri */

:root {
  --primary: #0d1f3c;
  --primary-light: #152d54;
  --secondary: #e67e22;
  --secondary-dark: #cf6d17;
  --accent: #2980b9;
  --accent-light: #3498db;
  --dark: #1a1a2e;
  --text: #2c3e50;
  --text-light: #7f8c8d;
  --bg: #ffffff;
  --bg-light: #f4f5f7;
  --bg-alt: #eef1f5;
  --border: #dce1e8;
  --white: #ffffff;
  --success: #27ae60;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  line-height: 1.7;
  background: var(--bg);
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.3;
  color: var(--primary);
}

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

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--primary);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar-left {
  display: flex;
  gap: 24px;
  align-items: center;
}

.top-bar-left a {
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-left a:hover {
  color: var(--secondary);
}

.top-bar-right {
  display: flex;
  gap: 12px;
  align-items: center;
}

.top-bar-right a {
  color: rgba(255, 255, 255, 0.85);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s;
}

.top-bar-right a:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

/* ===== HEADER / NAV ===== */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--secondary);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0;
  padding-bottom: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
  line-height: 1.2;
}

.logo-text .tagline {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  gap: 0;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: block;
  padding: 20px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  border-bottom: 3px solid transparent;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

/* Dropdown */
.nav-menu .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--white);
  border-top: 3px solid var(--secondary);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s;
  z-index: 100;
}

.nav-menu li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 12px 20px;
  font-size: 0.85rem;
  color: var(--text);
  border-bottom: 1px solid var(--bg-light);
  transition: all 0.2s;
}

.dropdown a:hover {
  background: var(--bg-light);
  color: var(--secondary);
  padding-left: 26px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--primary);
  cursor: pointer;
  padding: 8px;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></svg>')
    repeat;
  background-size: 200px;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  font-size: 2.8rem;
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 800;
}

.hero h1 span {
  color: var(--secondary);
}

.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--secondary);
}

.hero-stat .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--secondary-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section-light {
  background: var(--bg-light);
}

.section-dark {
  background: var(--primary);
  color: var(--white);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.section-header .divider {
  width: 60px;
  height: 3px;
  background: var(--secondary);
  margin: 0 auto 16px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--secondary);
}

.service-card .icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--secondary);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.service-card .link {
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card .link:hover {
  gap: 10px;
}

/* ===== WHY US / FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.feature-item {
  text-align: center;
  padding: 32px 20px;
}

.feature-item .icon {
  width: 64px;
  height: 64px;
  background: rgba(230, 126, 34, 0.1);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 20px;
}

.feature-item h3 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.feature-item p {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(
    135deg,
    var(--secondary) 0%,
    var(--secondary-dark) 100%
  );
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner p {
  font-size: 1.05rem;
  margin-bottom: 28px;
  opacity: 0.9;
}

.cta-banner .btn {
  background: var(--white);
  color: var(--secondary);
}

.cta-banner .btn:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-preview-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-preview-content p {
  margin-bottom: 16px;
  color: var(--text-light);
}

.about-image {
  background: var(--bg-light);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 4px solid var(--secondary);
}

.about-image .placeholder-icon {
  font-size: 6rem;
  color: var(--border);
}

/* ===== COUNTER / STATS ===== */
.stats-section {
  background: var(--primary);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
  color: var(--white);
}

.stat-item .number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--secondary);
  display: block;
}

.stat-item .label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-top: 4px;
}

/* ===== PAGE HERO (SUB PAGES) ===== */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  padding: 60px 0 50px;
  color: var(--white);
}

.page-hero h1 {
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 8px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.breadcrumb span {
  color: var(--secondary);
}

/* ===== CONTENT SECTIONS ===== */
.content-section {
  padding: 60px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
}

.content-main h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.content-main h3 {
  font-size: 1.2rem;
  margin-top: 28px;
  margin-bottom: 12px;
}

.content-main p {
  margin-bottom: 16px;
  color: var(--text);
}

.content-main ul {
  margin-bottom: 16px;
  padding-left: 0;
}

.content-main ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: var(--text);
}

.content-main ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: bold;
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.sidebar-widget {
  background: var(--bg-light);
  padding: 28px;
  border-top: 3px solid var(--secondary);
}

.sidebar-widget h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.sidebar-widget ul li {
  margin-bottom: 0;
}

.sidebar-widget ul li a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.92rem;
  transition: all 0.2s;
}

.sidebar-widget ul li a:hover {
  color: var(--secondary);
  padding-left: 8px;
}

.sidebar-cta {
  background: var(--primary);
  color: var(--white);
  padding: 28px;
  text-align: center;
}

.sidebar-cta h3 {
  color: var(--white);
  margin-bottom: 12px;
  border: none;
  padding: 0;
}

.sidebar-cta p {
  font-size: 0.9rem;
  margin-bottom: 16px;
  opacity: 0.8;
}

.sidebar-cta .phone {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary);
  display: block;
  margin-bottom: 16px;
}

/* ===== TEAM / ABOUT PAGE ===== */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--bg-alt);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--secondary);
}

.timeline-item h3 {
  color: var(--secondary);
  font-size: 1rem;
  margin-bottom: 6px;
}

.timeline-item h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* ===== FAQ ===== */
.faq-item {
  border: 1px solid var(--border);
  margin-bottom: 12px;
}

.faq-question {
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  background: var(--bg-light);
  transition: all 0.2s;
}

.faq-question:hover {
  background: var(--bg-alt);
}

.faq-question .toggle {
  color: var(--secondary);
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-question .toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
}

.faq-item.active .faq-answer {
  padding: 20px 24px;
  max-height: 500px;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-item .icon {
  width: 48px;
  height: 48px;
  background: var(--bg-light);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--primary);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  margin-bottom: 20px;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--secondary);
}

.contact-form textarea {
  height: 140px;
  resize: vertical;
}

.map-container {
  width: 100%;
  height: 400px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  border: 1px solid var(--border);
}

/* ===== FLEET GRID ===== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.fleet-card {
  border: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
  transition: all 0.3s;
}

.fleet-card:hover {
  border-color: var(--secondary);
  transform: translateY(-4px);
}

.fleet-card-img {
  height: 200px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--border);
}

.fleet-card-body {
  padding: 24px;
}

.fleet-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.fleet-card-body p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.fleet-card-specs {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.fleet-card-specs span {
  background: var(--bg-light);
  padding: 4px 12px;
  font-size: 0.8rem;
  color: var(--text);
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-about p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  transition: all 0.2s;
}

.footer ul li a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-contact li .icon {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  margin-top: 48px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    border-top: 1px solid var(--border);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu > li > a {
    padding: 14px 20px;
    border-bottom: 1px solid var(--bg-light);
  }

  .nav-menu .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-top: none;
    background: var(--bg-light);
  }

  .hero {
    padding: 60px 0 50px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .about-preview {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .fleet-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 50px 0;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.6rem;
  }
  .section-header h2 {
    font-size: 1.5rem;
  }
  .page-hero h1 {
    font-size: 1.6rem;
  }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .btn-group {
    flex-direction: column;
  }
}

/* ===== UTILITY ===== */
.text-center {
  text-align: center;
}
.text-secondary {
  color: var(--secondary);
}
.mt-4 {
  margin-top: 32px;
}
.mb-4 {
  margin-bottom: 32px;
}
.mb-2 {
  margin-bottom: 16px;
}

/* ===== INFO BOXES ===== */
.info-box {
  padding: 24px;
  background: var(--bg-light);
  border-left: 4px solid var(--secondary);
  margin: 24px 0;
}

.info-box h4 {
  margin-bottom: 8px;
  color: var(--primary);
}

.info-box p {
  color: var(--text-light);
  font-size: 0.92rem;
}

/* ===== TWO COLUMN LAYOUT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.process-step {
  text-align: center;
  padding: 24px 16px;
  position: relative;
}

.process-step .step-num {
  width: 48px;
  height: 48px;
  background: var(--secondary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 auto 16px;
}

.process-step h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* ===== VALUES GRID ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  padding: 32px 24px;
  background: var(--bg-light);
  border-left: 3px solid var(--secondary);
}

.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}
