/* ============================================
   AK Vinç - Corporate Website Stylesheet
   Modern Industrial Design System
   ============================================ */

/* --- CSS Variables / Design Tokens --- */
:root {
  --primary: #0a1628;
  --primary-light: #1e3a5f;
  --secondary: #2c5282;
  --accent: #f7c948;
  --accent-dark: #d4a017;
  --white: #ffffff;
  --light: #f4f6f8;
  --gray-100: #e9ecef;
  --gray-200: #dee2e6;
  --gray-300: #ced4da;
  --gray-500: #6c757d;
  --gray-700: #495057;
  --dark: #212529;
  --success: #28a745;
  --danger: #dc3545;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}
h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}
h3 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
}
h4 {
  font-size: 1.2rem;
}

p {
  margin-bottom: 1rem;
  color: var(--gray-700);
}

/* --- Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}
.section-dark {
  background: var(--primary);
  color: var(--white);
}
.section-dark h2,
.section-dark h3,
.section-dark p {
  color: var(--white);
}
.section-light {
  background: var(--light);
}
.section-accent {
  background: var(--accent);
}

.text-center {
  text-align: center;
}
.text-accent {
  color: var(--accent);
}
.text-primary {
  color: var(--primary);
}
.text-white {
  color: var(--white);
}
.font-bold {
  font-weight: 700;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}
.section-header p {
  max-width: 640px;
  margin: 1.5rem auto 0;
  font-size: 1.1rem;
}

.badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background: rgba(247, 201, 72, 0.15);
  color: var(--accent-dark);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.section-dark .badge {
  background: rgba(247, 201, 72, 0.2);
  color: var(--accent);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: var(--radius);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  letter-spacing: 0.3px;
}

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

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

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

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-phone {
  background: var(--secondary);
  color: var(--white);
}
.btn-phone:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* --- Top Bar --- */
.top-bar {
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  border-bottom: 2px solid var(--accent);
}

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

.top-bar a {
  color: var(--white);
  transition: var(--transition);
}
.top-bar a:hover {
  color: var(--accent);
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-item svg {
  width: 14px;
  height: 14px;
  fill: var(--accent);
  flex-shrink: 0;
}

/* --- Header / Navigation --- */
.header {
  background: var(--white);
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--primary);
}

.logo span {
  color: var(--accent-dark);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-700);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 1rem;
  right: 1rem;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 260px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
  border: 1px solid var(--gray-100);
}

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

.nav-dropdown-menu a {
  display: block;
  padding: 0.6rem 1.5rem;
  font-size: 0.88rem;
  color: var(--gray-700);
  transition: var(--transition);
}

.nav-dropdown-menu a:hover {
  background: var(--light);
  color: var(--primary);
  padding-left: 2rem;
}

.nav-cta {
  margin-left: 0.5rem;
}

/* Mobile Nav */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.6);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-nav-overlay.active {
  opacity: 1;
}

@media (max-width: 1024px) {
  .nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    box-shadow: var(--shadow-xl);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
    gap: 0.25rem;
  }
  .nav.active {
    right: 0;
  }
  .mobile-nav-overlay {
    display: block;
  }
  .mobile-nav-overlay.active {
    display: block;
  }
  .hamburger {
    display: flex;
  }

  .nav-link {
    padding: 0.85rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--gray-100);
  }
  .nav-link::after {
    display: none;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 1rem;
    min-width: auto;
    border: none;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }
  .nav-dropdown-menu a {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--gray-100);
  }
  .nav-cta {
    margin: 1rem 0 0;
  }
  .top-bar-right {
    display: none;
  }
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 22, 40, 0.92) 0%,
    rgba(30, 58, 95, 0.85) 100%
  );
}

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

.hero-content {
  max-width: 700px;
  color: var(--white);
}

.hero-content .badge {
  background: rgba(247, 201, 72, 0.2);
  color: var(--accent);
  font-size: 0.9rem;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
}

.hero-content h1 .highlight {
  color: var(--accent);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat h3 {
  color: var(--accent);
  font-size: 2.2rem;
  margin-bottom: 0.25rem;
}

.hero-stat p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

/* Hero Shapes */
.hero-shapes {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border: 2px solid rgba(247, 201, 72, 0.1);
  border-radius: 50%;
}

.hero-shape-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
}
.hero-shape-2 {
  width: 250px;
  height: 250px;
  bottom: -50px;
  right: 20%;
}
.hero-shape-3 {
  width: 150px;
  height: 150px;
  top: 30%;
  right: 10%;
  background: rgba(247, 201, 72, 0.05);
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
  }
  .hero-stats {
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  .hero-stat h3 {
    font-size: 1.8rem;
  }
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-body {
  padding: 1.75rem;
}
.card-body h3 {
  margin-bottom: 0.75rem;
  font-size: 1.2rem;
}
.card-body p {
  font-size: 0.95rem;
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--accent) 0%,
    var(--accent-dark) 100%
  );
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.card-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--primary);
}

.card-img {
  height: 220px;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.card:hover .card-img img {
  transform: scale(1.05);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 0.75rem;
  transition: var(--transition);
}
.card-link:hover {
  color: var(--primary);
  gap: 10px;
}

/* --- Grid Layouts --- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card .card-body {
  padding: 2rem;
}

.service-card .card-icon {
  width: 56px;
  height: 56px;
}

/* --- Why Choose Us --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 1px solid var(--gray-100);
}
.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(
    135deg,
    rgba(247, 201, 72, 0.15),
    rgba(247, 201, 72, 0.05)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.feature-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--accent-dark);
}

.feature-item h3 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}
.feature-item p {
  font-size: 0.9rem;
  margin: 0;
}

/* --- Regions --- */
.regions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
}

.region-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  border: 2px solid var(--gray-100);
  transition: var(--transition);
  font-weight: 600;
  color: var(--primary);
}
.region-card:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.region-card svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-dark);
  margin-bottom: 0.5rem;
}
.region-card:hover svg {
  fill: var(--primary);
}

/* --- Fleet / Equipment --- */
.fleet-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.fleet-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.fleet-card-img {
  height: 240px;
  background: var(--light);
  overflow: hidden;
  position: relative;
}
.fleet-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.fleet-card:hover .fleet-card-img img {
  transform: scale(1.05);
}

.fleet-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: var(--primary);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
}

.fleet-card-body {
  padding: 1.75rem;
}
.fleet-card-body h3 {
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.fleet-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 1rem;
}
.fleet-spec {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-500);
}
.fleet-spec svg {
  width: 16px;
  height: 16px;
  fill: var(--accent-dark);
  flex-shrink: 0;
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 2px solid rgba(247, 201, 72, 0.1);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.cta-phone {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  display: block;
  margin-bottom: 2rem;
  font-family: "Montserrat", sans-serif;
}

/* --- Trust / Counter --- */
.trust-section {
  padding: 4rem 0;
  background: var(--light);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.trust-item h3 {
  font-size: 2.5rem;
  color: var(--accent-dark);
  margin-bottom: 0.5rem;
}
.trust-item p {
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

@media (max-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  transition: var(--transition);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.faq-question:hover {
  color: var(--secondary);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  fill: var(--gray-500);
  transition: var(--transition);
  flex-shrink: 0;
}
.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  fill: var(--accent-dark);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray-700);
  line-height: 1.8;
}

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

/* --- Contact Form --- */
.form-group {
  margin-bottom: 1.25rem;
}

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

.form-control {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
  color: var(--dark);
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(247, 201, 72, 0.15);
}

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

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* --- Contact Page --- */
.contact-info-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  transition: var(--transition);
}
.contact-info-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
}

.contact-info-text h4 {
  margin-bottom: 0.35rem;
}
.contact-info-text p {
  margin: 0;
  font-size: 0.95rem;
}
.contact-info-text a {
  color: var(--secondary);
  font-weight: 600;
}
.contact-info-text a:hover {
  color: var(--primary);
}

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

/* --- Breadcrumb --- */
.breadcrumb {
  background: var(--light);
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
}
.breadcrumb-list a {
  color: var(--secondary);
}
.breadcrumb-list a:hover {
  color: var(--primary);
}
.breadcrumb-list span {
  color: var(--gray-500);
}

/* --- Page Hero --- */
.page-hero {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 2px solid rgba(247, 201, 72, 0.08);
  top: -100px;
  right: -50px;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* --- Content Article --- */
.article-content {
  max-width: 800px;
}

.article-content h2 {
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--accent);
}

.article-content h3 {
  margin: 2rem 0 0.75rem;
}

.article-content ul,
.article-content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}
.article-content li {
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
  position: relative;
  list-style: none;
}
.article-content li::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}
.article-content ol li {
  list-style: decimal;
}
.article-content ol li::before {
  display: none;
}

.article-content p {
  line-height: 1.9;
  font-size: 1.02rem;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--gray-100);
  margin-bottom: 1.5rem;
}
.sidebar-card h4 {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent);
}

.sidebar-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0;
  font-size: 0.92rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}
.sidebar-links a:last-child {
  border-bottom: none;
}
.sidebar-links a:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}
.sidebar-links a::before {
  content: "▸";
  color: var(--accent-dark);
  font-weight: bold;
}

/* Article-Sidebar layout */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
  }
}

/* --- Footer --- */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  margin-bottom: 1.25rem;
}
.footer-brand .logo span {
  color: var(--accent);
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  line-height: 1.8;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-links a {
  display: block;
  padding: 0.4rem 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 0.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* --- Floating CTA Buttons --- */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 900;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.floating-btn:hover {
  transform: scale(1.1);
}
.floating-btn svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

.floating-whatsapp {
  background: #25d366;
}
.floating-phone {
  background: var(--secondary);
}
.floating-top {
  background: var(--primary);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.floating-top.visible {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 640px) {
  .floating-cta {
    bottom: 1rem;
    right: 1rem;
  }
  .floating-btn {
    width: 48px;
    height: 48px;
  }
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* --- About Page --- */
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.about-value {
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  text-align: center;
}
.about-value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: linear-gradient(
    135deg,
    rgba(247, 201, 72, 0.15),
    rgba(247, 201, 72, 0.05)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-value-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--accent-dark);
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  padding-bottom: 2rem;
  padding-left: 1.5rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: -2rem;
  top: 0.35rem;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--accent);
  margin-left: -5.5px;
}
.timeline-item h4 {
  margin-bottom: 0.5rem;
}

/* --- Service Detail Banner --- */
.service-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
}
.service-banner-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 350px;
}
.service-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .service-banner {
    grid-template-columns: 1fr;
  }
  .service-banner-img {
    height: 250px;
  }
}

/* --- Table --- */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}
.spec-table th,
.spec-table td {
  padding: 0.85rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
  font-size: 0.92rem;
}
.spec-table th {
  background: var(--primary);
  color: var(--white);
  font-weight: 700;
}
.spec-table tr:nth-child(even) {
  background: var(--light);
}
.spec-table tr:hover {
  background: rgba(247, 201, 72, 0.08);
}

/* --- Loading/Performance --- */
.lazyload {
  opacity: 0;
  transition: opacity 0.5s;
}
.lazyload.loaded {
  opacity: 1;
}

/* --- Print --- */
@media print {
  .header,
  .top-bar,
  .floating-cta,
  .footer {
    display: none;
  }
  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
  body {
    color: #000;
  }
}
