/* ========================================
   ADS METAL - Corporate Header Styles
   Poppins Font - Keskin Hatlar
   ======================================== */

:root {
  --primary-dark: #0a1628;
  --primary-blue: #0d3b5c;
  --secondary-blue: #1a5a8a;
  --accent-orange: #d35400;
  --accent-orange-hover: #b94700;
  --text-dark: #0f172a;
  --text-medium: #475569;
  --text-gray: #64748b;
  --border-color: #e2e8f0;
  --white: #ffffff;
  --bg-light: #f8fafc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   Top Bar - Kurumsal & Keskin
   ======================================== */

.top-bar {
  background-color: var(--primary-dark);
  padding: 0;
  height: 42px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1100;
}

.top-bar .container {
  max-width: 1320px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  height: 42px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 42px;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
}

.top-contact:hover {
  color: var(--accent-orange);
}





.top-contact i {
  font-size: 12px;
  opacity: 0.8;
}

.top-divider {
  width: 1px;
  height: 16px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 24px;
}

/* Dil menüsü z-index düzeltildi */
.lang-selector {
  position: relative;
  z-index: 1200;
}

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 0;
}

.lang-btn::after {
  display: none;
}

.lang-btn:hover,
.lang-btn:focus {
  border-color: var(--white);
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.lang-btn i {
  font-size: 9px;
  transition: transform 0.2s ease;
}

.lang-selector .dropdown-menu {
  min-width: 100px;
  border: none;
  border-radius: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 0;
  margin-top: 8px;
  z-index: 1300;
}

.lang-selector .dropdown-item {
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-color);
  border-radius: 0;
}

.lang-selector .dropdown-item:last-child {
  border-bottom: none;
}

.lang-selector .dropdown-item:hover,
.lang-selector .dropdown-item.active {
  background-color: var(--primary-dark);
  color: var(--white);
}

/* Social Links */
.social-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.social-link {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  transition: all 0.2s ease;
}

.social-link:hover {
  color: var(--accent-orange);
}

/* ========================================
   Main Header - Kurumsal Tasarım
   ======================================== */

.main-header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 1000;
}

.main-header .container {
  max-width: 1320px;
}

.main-header .navbar {
  padding: 0;
  /* header yüksekliği 80px'den 95px'e çıkarıldı */
  min-height: 95px;
}

/* Logo img stili eklendi */
.navbar-brand {
  padding: 0;
  margin: 0;
}

.header-logo {
  /* logo boyutu büyütüldü */
  height: 65px;
  width: auto;
  display: block;
}

/* ========================================
   Navigation - Keskin & Kurumsal
   ======================================== */

.navbar-nav {
  gap: 0;
  align-items: stretch;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav-link {
  color: var(--text-dark) !important;
  /* font boyutu 13px'den 15px'e çıkarıldı */
  font-size: 15px;
  font-weight: 500;
  /* padding artırıldı */
  padding: 35px 22px !important;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-arrow {
  /* ok ikonu büyütüldü */
  font-size: 11px;
  transition: transform 0.2s ease;
  opacity: 0.6;
}

.nav-item.has-dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 40px);
  height: 3px;
  background-color: var(--accent-orange);
  transition: transform 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

.nav-link:hover {
  color: var(--primary-blue) !important;
}

.nav-link.active {
  color: var(--text-dark) !important;
}

/* ========================================
   Dropdown Menü - Kompakt Yapı
   ======================================== */
/* Ripple default sub-menu'yi tamamen kapat */
.navigation .sub-menu {
    display: none !important;
}

.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: var(--white);
  border-top: 3px solid var(--accent-orange);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  z-index: 1050;
  padding: 8px 0;
}

.nav-item.has-dropdown:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu-custom a {
    display: block;
    padding: 12px 24px !important;
    color: var(--text-medium) !important;
    text-decoration: none;
    font-size: 13px !important;
    font-weight: 500 !important;
    transition: all 0.15s ease !important;
    border-left: 3px solid transparent !important;
    line-height: 18px !important;
}


.dropdown-menu-custom a:hover {
  background-color: var(--bg-light);
  color: var(--primary-blue);
  border-left-color: var(--accent-orange);
  padding-left: 28px;
}

/* ========================================
   Mobile Toggler - Keskin Hatlar
   ======================================== */

.navbar-toggler {
  border: none;
  padding: 10px;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.toggler-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--primary-dark);
  transition: all 0.2s ease;
}

.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(2) {
  opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   Hero Section - Video Background
   ======================================== */

.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.7) 0%, rgba(13, 59, 92, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0 60px;
}

.hero-text {
  margin-bottom: 80px;
}

.hero-title {
  margin-bottom: 28px;
  line-height: 1.1;
}

.title-white {
  display: block;
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1px;
}

.title-orange {
  display: block;
  font-size: 64px;
  font-weight: 700;
  color: var(--accent-orange);
  letter-spacing: -1px;
}

.hero-description {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background-color: var(--accent-orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.2s ease;
  border: 2px solid var(--accent-orange);
}

.btn-hero-primary:hover {
  background-color: var(--accent-orange-hover);
  border-color: var(--accent-orange-hover);
  color: var(--white);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background-color: transparent;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.2s ease;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-hero-secondary:hover {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--primary-dark);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
  padding: 0 48px;
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-number {
  font-size: 52px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -2px;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-orange);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.25);
}

/* Hero Responsive */
@media (max-width: 991.98px) {
  .hero-section {
    min-height: 75vh;
  }

  .title-white,
  .title-orange {
    font-size: 48px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-text {
    margin-bottom: 60px;
  }

  .stat-number {
    font-size: 42px;
  }

  .stat-item {
    padding: 0 32px;
  }
}

@media (max-width: 767.98px) {
  .hero-section {
    min-height: auto;
    padding: 60px 0;
  }

  .hero-content {
    padding: 40px 0;
  }

  .title-white,
  .title-orange {
    font-size: 36px;
  }

  .hero-description {
    font-size: 15px;
    line-height: 1.7;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    justify-content: center;
    padding: 14px 24px;
  }

  .hero-text {
    margin-bottom: 40px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    padding: 0;
    width: calc(50% - 12px);
    text-align: center;
  }

  .stat-item:first-child {
    padding-left: 0;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 10px;
  }
}

@media (max-width: 575.98px) {
  .title-white,
  .title-orange {
    font-size: 32px;
  }

  .stat-item {
    width: 100%;
  }
}

/* ========================================
   About Section - Kurumsal Tasarım
   ======================================== */

.about-section {
  padding: 120px 0;
  background-color: #fafbfc;
  position: relative;
  overflow: hidden;
}

/* Section Header */
.section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.section-tag-line {
  display: block;
  width: 40px;
  height: 2px;
  background-color: var(--accent-orange);
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-orange);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.25;
  margin-bottom: 28px;
  letter-spacing: -0.5px;
}

.section-title .title-accent {
  display: block;
  color: var(--primary-blue);
  margin-top: 4px;
}

.section-description {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-medium);
  line-height: 1.9;
  margin-bottom: 40px;
  padding-right: 20px;
}

/* About Image Wrapper */
.about-image-wrapper {
  position: relative;
  padding: 30px;
  padding-left: 0;
}

.about-image-main {
  position: relative;
  overflow: hidden;
}

.about-image-main img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.about-accent-line {
  position: absolute;
  left: 0;
  top: 60px;
  bottom: 60px;
  width: 4px;
  background-color: var(--accent-orange);
}

.about-experience-box {
  position: absolute;
  right: -30px;
  bottom: 50px;
  z-index: 10;
}

.experience-inner {
  background-color: var(--primary-dark);
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.experience-number {
  font-size: 56px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -2px;
}

.experience-number sup {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-orange);
}

.experience-text {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 2px solid var(--accent-orange);
  padding-left: 16px;
}

/* About Content */
.about-content {
  padding-left: 40px;
  padding-top: 20px;
}

/* Features Grid - Kurumsal Tasarım */
.about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background-color: var(--white);
  border: 1px solid #e8ecf0;
  transition: all 0.3s ease;
  position: relative;
}

.feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background-color: var(--accent-orange);
  transition: width 0.3s ease;
}

.feature-card:hover {
  border-color: transparent;
  box-shadow: 0 8px 30px rgba(10, 22, 40, 0.08);
}

.feature-card:hover::before {
  width: 4px;
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-dark);
  color: var(--white);
  font-size: 22px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  background-color: var(--accent-orange);
}

.feature-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.feature-info p {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-gray);
  margin: 0;
  line-height: 1.5;
}

/* Corporate Button */
.btn-corporate {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 36px;
  background-color: var(--accent-orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-corporate::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--primary-dark);
  transition: left 0.3s ease;
  z-index: 0;
}

.btn-corporate:hover::before {
  left: 0;
}

.btn-corporate span,
.btn-corporate i {
  position: relative;
  z-index: 1;
}

.btn-corporate:hover {
  color: var(--white);
}

.btn-corporate i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.btn-corporate:hover i {
  transform: translateX(6px);
}

/* About Section Responsive */
@media (max-width: 991.98px) {
  .about-section {
    padding: 80px 0;
  }

  .about-image-wrapper {
    margin-bottom: 50px;
    padding: 0;
  }

  .about-image-main img {
    height: 400px;
  }

  .about-accent-line {
    display: none;
  }

  .about-experience-box {
    right: 20px;
    bottom: 30px;
  }

  .experience-inner {
    padding: 24px 28px;
  }

  .experience-number {
    font-size: 44px;
  }

  .about-content {
    padding-left: 0;
    padding-top: 0;
  }

  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 767.98px) {
  .about-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 26px;
  }

  .section-description {
    font-size: 14px;
    padding-right: 0;
  }

  .about-image-main img {
    height: 320px;
  }

  .about-experience-box {
    right: 16px;
    bottom: 16px;
  }

  .experience-inner {
    padding: 20px 24px;
  }

  .experience-number {
    font-size: 36px;
  }

  .experience-number sup {
    font-size: 20px;
  }

  .experience-text {
    font-size: 12px;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card {
    padding: 20px;
  }

  .feature-icon-wrapper {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .btn-corporate {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
  }
}

/* ========================================
   Products Section - Ürünlerimiz
   Kurumsal Tasarım
   ======================================== */

.products-section {
  padding: 120px 0;
  background-color: var(--white);
  position: relative;
}

.products-intro {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-medium);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 0;
  text-align: right;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
  margin-bottom: 60px;
}

/* Product Card */
.product-card {
  background-color: #f8fafc;
  transition: all 0.4s ease;
  position: relative;
}

.product-card:hover {
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.1);
  transform: translateY(-8px);
}

/* Product Image */
.product-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background-color: #eef2f6;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 22, 40, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 20px;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-link-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-orange);
  color: var(--white);
  font-size: 20px;
  transition: all 0.3s ease;
  transform: translateY(20px);
  opacity: 0;
}

.product-card:hover .product-link-icon {
  transform: translateY(0);
  opacity: 1;
}

.product-link-icon:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

/* Product Content */
.product-content {
  padding: 28px;
  border-top: 3px solid transparent;
  transition: border-color 0.3s ease;
}

.product-card:hover .product-content {
  border-top-color: var(--accent-orange);
}

.product-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.product-desc {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.6;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-orange);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.product-link:hover {
  color: var(--primary-dark);
}

.product-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.product-link:hover i {
  transform: translateX(6px);
}

/* Products CTA Button */
.products-cta {
  display: flex;
  justify-content: center;
}

.btn-products-all {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 48px;
  background-color: transparent;
  color: var(--accent-orange);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-orange);
  position: relative;
  overflow: hidden;
}

.btn-products-all::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--accent-orange);
  transition: left 0.3s ease;
  z-index: 0;
}

.btn-products-all:hover::before {
  left: 0;
}

.btn-products-all span,
.btn-products-all i {
  position: relative;
  z-index: 1;
}

.btn-products-all:hover {
  color: var(--white);
}

.btn-products-all i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.btn-products-all:hover i {
  transform: translateX(6px);
}

/* Products Section Responsive */
@media (max-width: 1199.98px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 991.98px) {
  .products-intro {
    text-align: left;
    margin-top: 20px;
    max-width: 100%;
  }

  .products-grid {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .products-section {
    padding: 80px 0;
  }

  .product-image {
    height: 200px;
  }
}

@media (max-width: 767.98px) {
  .products-section {
    padding: 60px 0;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-image {
    height: 220px;
  }

  .product-content {
    padding: 24px;
  }

  .btn-products-all {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
  }
}

/* ========================================
   Footer Section - Kurumsal Tasarım
   ======================================== */

.site-footer {
  background-color: var(--primary-dark);
  position: relative;
}

/* Footer Main */
.footer-main {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget {
  margin-bottom: 40px;
}

/* Footer About Widget */
.footer-about {
  padding-right: 40px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 24px;
}

.footer-logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-desc {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Certifications */
.footer-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cert-badge i {
  color: var(--accent-orange);
  font-size: 14px;
}

.cert-badge span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
}

/* Footer Widget Title */
.footer-widget-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 28px;
  padding-bottom: 16px;
  position: relative;
  letter-spacing: 0.3px;
}

.footer-widget-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-orange);
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links li:last-child {
  margin-bottom: 0;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.2s ease;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-orange);
  bottom: -2px;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-orange);
  padding-left: 12px;
}

.footer-links a:hover::before {
  width: 100%;
}

/* Footer Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-contact li:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--accent-orange);
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer-contact li:hover .contact-icon {
  background-color: var(--accent-orange);
  color: var(--white);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-info span,
.contact-info a {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: var(--accent-orange);
}

/* Footer Social */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.social-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.social-btn:hover {
  background-color: var(--accent-orange);
  border-color: var(--accent-orange);
  color: var(--white);
  transform: translateY(-4px);
}

/* Footer Bottom */
.footer-bottom {
  padding: 24px 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.copyright {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.copyright strong {
  color: var(--white);
  font-weight: 600;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}

.footer-bottom-links a {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 0 16px;
}

.footer-bottom-links a:hover {
  color: var(--accent-orange);
}

.footer-bottom-links .separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

/* Footer Responsive */
@media (max-width: 991.98px) {
  .footer-main {
    padding: 60px 0 40px;
  }

  .footer-about {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .footer-widget-title {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
}

@media (max-width: 767.98px) {
  .footer-main {
    padding: 50px 0 30px;
  }

  .footer-logo img {
    height: 42px;
  }

  .footer-widget {
    margin-bottom: 36px;
  }

  .footer-certifications {
    flex-direction: column;
  }

  .cert-badge {
    width: fit-content;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .copyright {
    text-align: center;
    margin-bottom: 12px;
  }

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-bottom-links a {
    padding: 0 10px;
  }
}

/* ========================================
   Responsive - Global
   ======================================== */

@media (max-width: 991.98px) {
  .top-bar {
    height: auto;
    padding: 10px 0;
  }

  .top-bar-left,
  .top-bar-right {
    height: auto;
    justify-content: center;
  }

  .top-bar-left {
    margin-bottom: 8px;
  }

  .top-divider {
    margin: 0 16px;
  }

  .main-header .navbar {
    min-height: 70px;
    padding: 12px 0;
  }

  .header-logo {
    height: 45px;
  }

  .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-top: 3px solid var(--accent-orange);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    padding: 0;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1000;
  }

  .navbar-nav {
    padding: 0;
  }

  .nav-item {
    display: block;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-link {
    padding: 16px 20px !important;
    justify-content: space-between;
  }

  .nav-link::after {
    display: none;
  }

  .nav-link.active {
    color: var(--accent-orange) !important;
    background-color: var(--bg-light);
  }

  /* Mobile Dropdown */
  .dropdown-menu-custom {
    position: static;
    border-top: none;
    box-shadow: none;
    transform: none;
    display: none;
    background-color: var(--bg-light);
    min-width: 100%;
    padding: 0;
  }

  .nav-item.has-dropdown.active .dropdown-menu-custom {
    display: block;
    opacity: 1;
    visibility: visible;
  }

  .dropdown-menu-custom a {
    padding: 14px 32px;
    border-left: none;
    border-bottom: 1px solid var(--border-color);
  }

  .dropdown-menu-custom a:last-child {
    border-bottom: none;
  }

  .dropdown-menu-custom a:hover {
    padding-left: 32px;
  }
}

@media (max-width: 575.98px) {
  .top-bar-left {
    flex-direction: column;
    gap: 6px;
  }

  .top-bar-left .top-divider {
    display: none;
  }

  .top-contact span {
    font-size: 12px;
  }

  .header-logo {
    height: 40px;
  }

  .nav-link {
    padding: 14px 16px !important;
    font-size: 13px;
  }
}

/* ========================================
   Page Header / Breadcrumb Section
   ======================================== */

.page-header {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(13, 59, 92, 0.75) 100%);
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.breadcrumb-nav a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-nav a:hover {
  color: var(--accent-orange);
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.breadcrumb-current {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent-orange);
}

@media (max-width: 767.98px) {
  .page-header {
    height: 240px;
  }

  .page-title {
    font-size: 32px;
  }
}

/* ========================================
   About Intro Section
   ======================================== */

.about-intro-section {
  padding: 100px 0;
  background-color: var(--white);
}

.about-intro-image {
  position: relative;
}

.about-intro-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-intro-badge {
  position: absolute;
  bottom: -30px;
  right: 30px;
  background-color: var(--accent-orange);
  padding: 24px 32px;
  text-align: center;
}

.about-intro-badge .badge-number {
  display: block;
  font-size: 48px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.about-intro-badge .badge-text {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}

.about-intro-content {
  padding-left: 50px;
}

.about-intro-text {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-intro-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-color);
}

.intro-stat-item {
  text-align: center;
}

.intro-stat-number {
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
}

.intro-stat-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-gray);
  margin-top: 8px;
}

@media (max-width: 991.98px) {
  .about-intro-section {
    padding: 60px 0;
  }

  .about-intro-image {
    margin-bottom: 60px;
  }

  .about-intro-content {
    padding-left: 0;
  }

  .about-intro-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .intro-stat-item {
    width: calc(50% - 12px);
  }
}

/* ========================================
   Mission Vision Section
   ======================================== */

.mission-vision-section {
  padding: 100px 0;
  background-color: #f8fafc;
}

.mv-card {
  padding: 50px;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
}

.mission-card {
  background-color: var(--primary-dark);
}

.vision-card {
  background-color: var(--white);
  border: 1px solid var(--border-color);
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.15);
}

.mv-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-orange);
  color: var(--white);
  font-size: 28px;
  margin-bottom: 28px;
}

.mission-card .mv-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}

.vision-card .mv-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.mission-card .mv-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin: 0;
}

.vision-card .mv-text {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 991.98px) {
  .mission-vision-section {
    padding: 60px 0;
  }

  .mv-card {
    padding: 40px;
    margin-bottom: 24px;
  }
}

/* ========================================
   Values Section
   ======================================== */

.values-section {
  padding: 100px 0;
  background-color: var(--white);
}

.values-section .section-title {
  margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.value-card {
  text-align: center;
  padding: 40px 30px;
  background-color: #f8fafc;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.value-card:hover {
  background-color: var(--white);
  box-shadow: 0 15px 40px rgba(10, 22, 40, 0.1);
  border-bottom-color: var(--accent-orange);
  transform: translateY(-8px);
}

.value-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-dark);
  color: var(--white);
  font-size: 32px;
  margin: 0 auto 24px;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background-color: var(--accent-orange);
}

.value-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.value-text {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 991.98px) {
  .values-section {
    padding: 60px 0;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Timeline Section
   ======================================== */

.timeline-section {
  padding: 100px 0;
  background-color: #f8fafc;
}

.timeline-section .section-title {
  margin-bottom: 60px;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--border-color);
}

.timeline-item {
  position: relative;
  padding-bottom: 50px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -40px;
  top: 0;
  width: 18px;
  height: 18px;
  background-color: var(--accent-orange);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--accent-orange);
}

.timeline-content {
  background-color: var(--white);
  padding: 30px;
  box-shadow: 0 5px 20px rgba(10, 22, 40, 0.05);
  border-left: 3px solid var(--accent-orange);
}

.timeline-year {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-orange);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.timeline-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.timeline-text {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767.98px) {
  .timeline-section {
    padding: 60px 0;
  }

  .timeline {
    padding-left: 30px;
  }

  .timeline::before {
    left: 6px;
  }

  .timeline-dot {
    left: -30px;
    width: 14px;
    height: 14px;
  }

  .timeline-content {
    padding: 24px;
  }
}

/* ========================================
   Certifications Section
   ======================================== */

.certifications-section {
  padding: 100px 0;
  background-color: var(--white);
}

.cert-description {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-top: 20px;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cert-card {
  padding: 30px;
  background-color: #f8fafc;
  text-align: center;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.cert-card:hover {
  background-color: var(--white);
  box-shadow: 0 10px 30px rgba(10, 22, 40, 0.08);
  border-bottom-color: var(--accent-orange);
}

.cert-card .cert-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-dark);
  color: var(--white);
  font-size: 24px;
  margin: 0 auto 20px;
}

.cert-card .cert-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.cert-card .cert-text {
  font-size: 13px;
  color: var(--text-gray);
  margin: 0;
}

@media (max-width: 991.98px) {
  .certifications-section {
    padding: 60px 0;
  }

  .cert-grid {
    margin-top: 40px;
  }
}

@media (max-width: 575.98px) {
  .cert-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   CTA Section
   ======================================== */

.cta-section {
  padding: 80px 0;
  background-color: var(--primary-dark);
}

.cta-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: var(--accent-orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-cta-primary:hover {
  background-color: var(--accent-orange-hover);
  color: var(--white);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--primary-dark);
}

@media (max-width: 991.98px) {
  .cta-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    justify-content: center;
  }
}

/* ========================================
   Products Page Styles
   ======================================== */

.products-page-section {
  padding: 100px 0;
  background-color: #f8fafc;
}

.products-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 28px;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  color: var(--text-medium);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--accent-orange);
  border-color: var(--accent-orange);
  color: var(--white);
}

.products-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 991.98px) {
  .products-page-section {
    padding: 60px 0;
  }

  .products-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .products-page-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Product Detail Page Styles
   ======================================== */

.product-detail-section {
  padding: 100px 0;
  background-color: var(--white);
}

.product-detail-gallery {
  position: relative;
}

.product-main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  margin-bottom: 16px;
}

.product-thumbnails {
  display: flex;
  gap: 12px;
}

.product-thumbnail {
  width: 100px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.product-thumbnail:hover,
.product-thumbnail.active {
  border-color: var(--accent-orange);
  opacity: 1;
}

.product-detail-content {
  padding-left: 50px;
}

.product-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.product-detail-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.product-detail-desc {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 32px;
}

.product-specs {
  background-color: #f8fafc;
  padding: 30px;
  margin-bottom: 32px;
}

.product-specs h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent-orange);
}

.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.spec-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}

.spec-list li:last-child {
  border-bottom: none;
}

.spec-list li span:first-child {
  color: var(--text-gray);
}

.spec-list li span:last-child {
  font-weight: 600;
  color: var(--text-dark);
}

.product-detail-buttons {
  display: flex;
  gap: 16px;
}

.btn-quote {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background-color: var(--accent-orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-quote:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

.btn-catalog {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background-color: transparent;
  border: 2px solid var(--primary-dark);
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-catalog:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

@media (max-width: 991.98px) {
  .product-detail-section {
    padding: 60px 0;
  }

  .product-detail-gallery {
    margin-bottom: 40px;
  }

  .product-main-image {
    height: 400px;
  }

  .product-detail-content {
    padding-left: 0;
  }

  .product-detail-title {
    font-size: 28px;
  }
}

@media (max-width: 575.98px) {
  .product-main-image {
    height: 300px;
  }

  .product-detail-buttons {
    flex-direction: column;
  }

  .btn-quote,
  .btn-catalog {
    justify-content: center;
  }
}

/* Related Products */
.related-products-section {
  padding: 100px 0;
  background-color: #f8fafc;
}

.related-products-section .section-title {
  margin-bottom: 50px;
}

@media (max-width: 991.98px) {
  .related-products-section {
    padding: 60px 0;
  }
}

/* ========================================
   Services Page Styles
   ======================================== */

.services-page-section {
  padding: 100px 0;
  background-color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: #f8fafc;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  border-bottom: 3px solid transparent;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--accent-orange);
  transition: height 0.3s ease;
}

.service-card:hover {
  background-color: var(--white);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.1);
  border-bottom-color: var(--accent-orange);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-dark);
  color: var(--white);
  font-size: 28px;
  margin-bottom: 28px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background-color: var(--accent-orange);
}

.service-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.service-text {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-orange);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--primary-dark);
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(6px);
}

@media (max-width: 991.98px) {
  .services-page-section {
    padding: 60px 0;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 30px;
  }
}

/* Services Features */
.services-features-section {
  padding: 100px 0;
  background-color: #f8fafc;
}

.feature-box {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 30px;
  background-color: var(--white);
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.feature-box:hover {
  box-shadow: 0 10px 30px rgba(10, 22, 40, 0.08);
}

.feature-box-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-orange);
  color: var(--white);
  font-size: 24px;
  flex-shrink: 0;
}

.feature-box-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.feature-box-content p {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 991.98px) {
  .services-features-section {
    padding: 60px 0;
  }
}

/* ========================================
   Career Page Styles
   ======================================== */

.career-intro-section {
  padding: 100px 0;
  background-color: var(--white);
}

.career-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.benefit-card {
  text-align: center;
  padding: 40px 30px;
  background-color: #f8fafc;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  background-color: var(--white);
  box-shadow: 0 15px 40px rgba(10, 22, 40, 0.1);
  transform: translateY(-8px);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-dark);
  color: var(--white);
  font-size: 28px;
  margin: 0 auto 24px;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  background-color: var(--accent-orange);
}

.benefit-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.benefit-text {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 991.98px) {
  .career-intro-section {
    padding: 60px 0;
  }

  .career-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .career-benefits {
    grid-template-columns: 1fr;
  }
}

/* Job Listings */
.job-listings-section {
  padding: 100px 0;
  background-color: #f8fafc;
}

.job-card {
  background-color: var(--white);
  padding: 30px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.job-card:hover {
  box-shadow: 0 10px 30px rgba(10, 22, 40, 0.08);
  border-left-color: var(--accent-orange);
}

.job-info {
  flex: 1;
}

.job-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.job-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-gray);
}

.job-meta span i {
  color: var(--accent-orange);
}

.btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background-color: var(--accent-orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.btn-apply:hover {
  background-color: var(--primary-dark);
  color: var(--white);
}

@media (max-width: 767.98px) {
  .job-listings-section {
    padding: 60px 0;
  }

  .job-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-apply {
    width: 100%;
    justify-content: center;
  }
}

/* Application Form */
.application-form-section {
  padding: 100px 0;
  background-color: var(--white);
}

.application-form {
  max-width: 700px;
  margin: 0 auto;
  background-color: #f8fafc;
  padding: 50px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border-color);
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background-color: var(--white);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-orange);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 36px;
  background-color: var(--accent-orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

.btn-submit:hover {
  background-color: var(--primary-dark);
}

@media (max-width: 767.98px) {
  .application-form-section {
    padding: 60px 0;
  }

  .application-form {
    padding: 30px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   Contact Page Styles
   ======================================== */

.contact-info-section {
  padding: 100px 0;
  background-color: var(--white);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 80px;
}

.contact-info-card {
  text-align: center;
  padding: 40px 30px;
  background-color: #f8fafc;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  background-color: var(--white);
  box-shadow: 0 15px 40px rgba(10, 22, 40, 0.1);
  transform: translateY(-8px);
}

.contact-info-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-dark);
  color: var(--white);
  font-size: 28px;
  margin: 0 auto 24px;
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
  background-color: var(--accent-orange);
}

.contact-info-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.contact-info-text {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.7;
  margin: 0;
}

.contact-info-text a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-text a:hover {
  color: var(--accent-orange);
}

@media (max-width: 991.98px) {
  .contact-info-section {
    padding: 60px 0;
  }

  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 60px;
  }
}

@media (max-width: 575.98px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact Form */
.contact-form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-form {
  background-color: #f8fafc;
  padding: 50px;
}

.contact-form-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 30px;
}

.contact-map {
  height: 100%;
  min-height: 500px;
  background-color: #e8ecf0;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: none;
}

@media (max-width: 991.98px) {
  .contact-form-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-map {
    min-height: 400px;
  }

  .contact-map iframe {
    min-height: 400px;
  }
}

@media (max-width: 767.98px) {
  .contact-form {
    padding: 30px;
  }

  .contact-form-title {
    font-size: 24px;
  }
}

/* Footer contact simple styling */
.footer-contact li i {
  color: #ffffff;
  font-size: 16px;
  margin-top: 3px;
}

.footer-contact li span,
.footer-contact li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contact li a:hover {
  color: var(--accent-orange);
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 767.98px) {
  .footer-bottom-content {
    flex-direction: column;
    gap: 12px;
  }
}

/* ========================================
   404 Error Page Styles
   ======================================== */

.error-section {
  padding: 120px 0;
  background-color: #f8fafc;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.error-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.error-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-orange);
  color: var(--white);
  font-size: 48px;
  margin: 0 auto 30px;
  border-radius: 50%;
}

.error-title {
  font-size: 120px;
  font-weight: 800;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 10px;
}

.error-subtitle {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.error-text {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 40px;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

@media (max-width: 767.98px) {
  .error-section {
    padding: 80px 0;
  }

  .error-title {
    font-size: 80px;
  }

  .error-subtitle {
    font-size: 24px;
  }

  .error-actions {
    flex-direction: column;
  }
}

/* ========================================
   Certificates Page Styles
   ======================================== */

.certificates-section {
  padding: 80px 0;
  background-color: #f8fafc;
}

.certificate-card {
  background-color: var(--white);
  padding: 35px 30px;
  text-align: center;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  height: 100%;
}

.certificate-card:hover {
  box-shadow: 0 15px 40px rgba(10, 22, 40, 0.1);
  border-bottom-color: var(--accent-orange);
  transform: translateY(-5px);
}

.certificate-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-dark);
  color: var(--white);
  font-size: 32px;
  margin: 0 auto 25px;
  border-radius: 50%;
}

.certificate-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.certificate-desc {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 20px;
}

.certificate-details {
  background-color: #f8fafc;
  padding: 20px;
  text-align: left;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  font-size: 13px;
  color: var(--text-gray);
  font-weight: 500;
}

.detail-value {
  font-size: 13px;
  color: var(--text-dark);
  font-weight: 600;
}

/* Quality Policy Section */
.quality-policy-section {
  padding: 100px 0;
  background-color: var(--white);
}

.policy-content {
  padding-right: 40px;
}

.policy-text {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 35px;
}

.policy-principles {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.principle-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.principle-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 102, 0, 0.1);
  color: var(--accent-orange);
  font-size: 18px;
  border-radius: 50%;
  flex-shrink: 0;
}

.principle-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.principle-content p {
  font-size: 14px;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.6;
}

.policy-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.stat-card {
  background-color: #f8fafc;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background-color: var(--primary-dark);
}

.stat-card:hover .stat-icon,
.stat-card:hover .stat-number,
.stat-card:hover .stat-label {
  color: var(--white);
}

.stat-card:hover .stat-icon {
  background-color: var(--accent-orange);
}

.stat-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-dark);
  color: var(--white);
  font-size: 24px;
  margin: 0 auto 20px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-orange);
  margin-bottom: 5px;
  transition: all 0.3s ease;
}

.stat-label {
  font-size: 14px;
  color: var(--text-medium);
  margin: 0;
  transition: all 0.3s ease;
}

/* CTA Section for Certificates Page */
.cta-section .cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-section .cta-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 15px;
}

.cta-section .cta-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

.cta-section .cta-buttons {
  justify-content: center;
}

@media (max-width: 991.98px) {
  .quality-policy-section {
    padding: 60px 0;
  }

  .policy-content {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .policy-stats {
    gap: 16px;
  }
}

@media (max-width: 575.98px) {
  .certificates-section {
    padding: 60px 0;
  }

  .policy-stats {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 28px;
  }
}
