/* ===================================
   Öz Aksen Otomotiv - Ana Stil Dosyası
   =================================== */

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===================================
   Top Bar
   =================================== */
.top-bar {
  background-color: #0d1b2a;
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Enhanced container max-width sınırlaması for large screens */
.top-bar .container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  margin-right: 35px;
  transition: color 0.3s ease;
}

.top-bar a:hover {
  color: #e8b923;
}

.top-bar i {
  color: #e8b923;
}

.top-bar .social-icons a {
  margin-left: 6px;
  margin-right: 0;
  font-size: 13px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.8);
}

.top-bar .social-icons a:hover {
  background-color: #e8b923;
  border-color: #e8b923;
  color: #0d1b2a;
  transform: translateY(-2px);
}

/* ===================================
   Dil Seçici
   =================================== */
.lang-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 25px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 7px 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #fff;
  border-radius: 4px;
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.lang-toggle .lang-icon {
  font-size: 14px;
  opacity: 0.8;
}

.lang-toggle .lang-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.lang-toggle .lang-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
  opacity: 0.6;
}

.lang-dropdown.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown.open .lang-toggle {
  background: rgba(232, 185, 35, 0.15);
  border-color: #e8b923;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 160px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2000;
  overflow: hidden;
}

.lang-dropdown.open .lang-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 20px;
  width: 12px;
  height: 12px;
  background: #fff;
  transform: rotate(45deg);
}

.lang-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.lang-menu-item:hover {
  background: #f8f9fa;
  color: #0d1b2a;
  border-left-color: #e8b923;
}

.lang-menu-item.active {
  background: linear-gradient(90deg, rgba(232, 185, 35, 0.1), transparent);
  color: #0d1b2a;
  font-weight: 600;
  border-left-color: #e8b923;
}

.lang-menu-item .lang-check {
  color: #e8b923;
  font-size: 14px;
  opacity: 0;
}

.lang-menu-item.active .lang-check {
  opacity: 1;
}

/* ===================================
   Main Navigation
   =================================== */
.main-nav {
  background-color: #ffffff;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Enhanced nav container max-width with better padding control */
.main-nav .container {
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-size: 26px;
  font-weight: 700;
  color: #0d1b2a;
  letter-spacing: 2px;
  text-decoration: none;
}

.logo-text span {
  color: #e8b923;
}

.navbar-nav .nav-link {
  color: #2d3436;
  font-weight: 500;
  padding: 12px 20px !important;
  font-size: 14px;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #0d1b2a;
}

.navbar-nav .nav-link.active {
  color: #0d1b2a;
  font-weight: 600;
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  background: linear-gradient(90deg, #e8b923, #f0c93a);
  border-radius: 2px 2px 0 0;
}

.navbar-toggler {
  border: none;
  font-size: 26px;
  color: #0d1b2a;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ===================================
   Hamburger Button
   =================================== */
.hamburger-btn {
  background: none;
  border: 2px solid #0d1b2a;
  cursor: pointer;
  margin-left: 35px;
  padding: 10px 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  border-radius: 4px;
}

.hamburger-btn:hover {
  background: #0d1b2a;
}

.hamburger-btn .hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 22px;
}

.hamburger-btn .hamburger-lines span {
  display: block;
  height: 2px;
  background-color: #0d1b2a;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger-btn .hamburger-lines span:nth-child(1) {
  width: 100%;
}
.hamburger-btn .hamburger-lines span:nth-child(2) {
  width: 75%;
}
.hamburger-btn .hamburger-lines span:nth-child(3) {
  width: 50%;
}

.hamburger-btn:hover .hamburger-lines span {
  width: 100%;
  background-color: #e8b923;
}

/* Comprehensive large screen optimizations */
@media (min-width: 1400px) {
  /* Top bar spacing optimization */
  .top-bar .container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .top-bar a {
    margin-right: 28px;
  }

  /* Main nav spacing optimization */
  .main-nav .container {
    padding-left: 40px;
    padding-right: 40px;
  }

  .navbar-nav .nav-link {
    padding: 12px 18px !important;
  }

  .hamburger-btn {
    margin-left: 25px;
  }
}

/* Extra large screen optimizations for ultra-wide displays */
@media (min-width: 1920px) {
  .top-bar .container,
  .main-nav .container {
    max-width: 1600px;
  }

  .navbar-nav .nav-link {
    padding: 12px 22px !important;
  }
}

/* ===================================
   Dropdown Menu
   =================================== */
.dropdown-menu {
  border: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-radius: 0;
  padding: 0;
  min-width: 260px;
  overflow: hidden;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #e8b923, #d4a520);
}

.dropdown-item {
  padding: 15px 25px;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dropdown-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ddd;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: linear-gradient(90deg, rgba(232, 185, 35, 0.08), transparent);
  color: #0d1b2a;
  border-left-color: #e8b923;
  padding-left: 30px;
}

.dropdown-item:hover::before {
  background: #e8b923;
  transform: scale(1.3);
}

.dropdown-item:not(:last-child) {
  border-bottom: 1px solid #f5f5f5;
}

.dropdown-toggle::after {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg);
}

.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 27, 42, 0.7);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar-panel {
  position: fixed;
  top: 0;
  right: -450px;
  width: 420px;
  max-width: 90%;
  height: 100%;
  background-color: #ffffff;
  z-index: 9999;
  box-shadow: -15px 0 60px rgba(0, 0, 0, 0.2);
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.sidebar-panel.active {
  right: 0;
}

.sidebar-header {
  padding: 25px 35px;
  display: flex;
  justify-content: flex-end;
  border-bottom: 1px solid #f0f0f0;
}

.sidebar-close {
  background: #f5f5f5;
  border: none;
  font-size: 24px;
  color: #0d1b2a;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 10px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.sidebar-close:hover {
  background: #e8b923;
  transform: rotate(90deg);
}

.sidebar-content {
  padding: 40px;
  flex: 1;
}

.sidebar-logo-img {
  height: 50px;
  width: auto;
  margin-bottom: 10px;
}

.sidebar-logo-text {
  font-size: 28px;
  font-weight: 700;
  color: #0d1b2a;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.sidebar-logo-text span {
  color: #e8b923;
}

.sidebar-logo-tagline {
  font-size: 11px;
  font-weight: 600;
  color: #e8b923;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.sidebar-description {
  color: #666;
  font-size: 14px;
  line-height: 1.9;
  margin: 30px 0;
  padding-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
}

.sidebar-contact-title {
  font-size: 18px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 20px;
  padding-bottom: 15px;
  position: relative;
}

.sidebar-contact-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #e8b923;
}

.sidebar-contact-item {
  display: flex;
  margin-bottom: 15px;
  font-size: 14px;
  color: #555;
}

.sidebar-contact-item strong {
  min-width: 70px;
  color: #0d1b2a;
  font-weight: 600;
}

.sidebar-contact-item a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sidebar-contact-item a:hover {
  color: #e8b923;
}

.sidebar-footer {
  padding: 25px 40px;
  border-top: 1px solid #f0f0f0;
  background: #fafafa;
}

.sidebar-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-social-label {
  display: flex;
  align-items: center;
  font-size: 11px;
  color: #999;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.sidebar-social-label::before {
  content: "";
  width: 25px;
  height: 1px;
  background-color: #ddd;
  margin-right: 12px;
}

.sidebar-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  color: #0d1b2a;
  margin-left: 10px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.sidebar-social-icons a:hover {
  background-color: #e8b923;
  border-color: #e8b923;
  color: #0d1b2a;
  transform: translateY(-3px);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.88) 0%, rgba(13, 27, 42, 0.75) 50%, rgba(13, 27, 42, 0.6) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide {
  display: none;
  animation: fadeIn 0.8s ease;
}

.hero-slide.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text {
  max-width: 850px;
  text-align: center;
  margin: 0 auto;
}

.hero-subtitle {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #e8b923;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 8px 20px;
  border: 1px solid rgba(232, 185, 35, 0.3);
  border-radius: 30px;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.hero-title span {
  color: #e8b923;
}

.hero-description {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.9;
  margin-bottom: 45px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btn {
  display: inline-block;
  background-color: #e8b923;
  color: #0d1b2a;
  padding: 18px 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.4s ease;
  border: 2px solid #e8b923;
}

.hero-btn:hover {
  background-color: transparent;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(232, 185, 35, 0.3);
}

.slider-nav {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider-arrow {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.slider-arrow:hover {
  background: #e8b923;
  border-color: #e8b923;
  color: #0d1b2a;
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 25px 0;
}

.slider-dot {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.4s ease;
}

.slider-dot:hover {
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}

.slider-dot.active {
  border-color: #e8b923;
  color: #0d1b2a;
  background: #e8b923;
}

.slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.slider-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #e8b923, #d4a520);
  width: 0%;
  transition: width 0.1s linear;
}

.slider-counter {
  position: absolute;
  left: 60px;
  bottom: 60px;
  z-index: 10;
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.slider-counter-current {
  font-size: 48px;
  font-weight: 700;
  color: #e8b923;
  line-height: 1;
}

.slider-counter-divider {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.3);
  margin: 0 5px;
}

.slider-counter-total {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
}

.section-header {
  margin-bottom: 60px;
  text-align: center;
}

.section-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 700;
  color: #0d1b2a;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-subtitle .line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #e8b923, #d4a520);
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  color: #0d1b2a;
  line-height: 1.2;
}

.section-title span {
  color: #e8b923;
}

.section-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.9;
  max-width: 600px;
  margin: 20px auto 0;
}

.about-section {
  padding: 100px 0;
  background-color: #fff;
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #e8b923 0%, #0d1b2a 100%);
}

.about-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.about-label span {
  width: 30px;
  height: 2px;
  background: #e8b923;
}

.about-label p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  color: #0d1b2a;
  text-transform: uppercase;
}

.about-title {
  font-size: 36px;
  font-weight: 700;
  color: #0d1b2a;
  line-height: 1.2;
  margin-bottom: 25px;
}

.about-title span {
  color: #e8b923;
}

.about-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
}

.about-desc strong {
  color: #0d1b2a;
}

.about-stats-row {
  display: flex;
  gap: 40px;
  margin-bottom: 30px;
  padding: 25px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.about-stat-num {
  font-size: 42px;
  font-weight: 700;
  color: #0d1b2a;
  line-height: 1;
  margin-bottom: 5px;
}

.about-stat-num span {
  color: #e8b923;
}

.about-stat-text {
  font-size: 12px;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: #0d1b2a;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: #e8b923;
  color: #0d1b2a;
}

.about-btn:hover i {
  transform: translateX(5px);
}

.about-btn i {
  transition: transform 0.3s ease;
}

.about-img-box {
  position: relative;
}

.about-img-box img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: grayscale(20%);
}

.about-img-box::before {
  content: "";
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100px;
  height: 100px;
  background: #e8b923;
  z-index: -1;
}

.about-img-box::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 100px;
  height: 100px;
  border: 3px solid #0d1b2a;
  z-index: -1;
}

.about-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #0d1b2a;
  color: #fff;
  padding: 15px 20px;
  text-align: center;
}

.about-badge-num {
  font-size: 28px;
  font-weight: 700;
  color: #e8b923;
  line-height: 1;
}

.about-badge-text {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
}

.services-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid #e0e0e0;
}

.service-card {
  background: #fff;
  padding: 50px 35px;
  text-align: center;
  border-right: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  transition: all 0.4s ease;
}

.service-card:nth-child(4n) {
  border-right: none;
}

.service-card:nth-child(n + 5) {
  border-bottom: none;
}

.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: #e8b923;
  transition: width 0.4s ease;
}

.service-card:hover::before {
  width: 100%;
}

.service-card:hover {
  background: #0d1b2a;
}

.service-card:hover .service-number,
.service-card:hover .service-title,
.service-card:hover .service-desc {
  color: #fff;
}

.service-card:hover .service-icon {
  background: #e8b923;
}

.service-card:hover .service-icon i {
  color: #0d1b2a;
}

.service-number {
  font-size: 14px;
  font-weight: 600;
  color: #e8b923;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: #0d1b2a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.service-icon i {
  font-size: 32px;
  color: #e8b923;
  transition: all 0.4s ease;
}

.service-content {
  padding: 0;
}

.service-title {
  font-size: 18px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 15px;
  transition: all 0.4s ease;
}

.service-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
  transition: all 0.4s ease;
}

.vision-section {
  padding: 100px 0;
  background: #0d1b2a;
  position: relative;
  overflow: hidden;
}

.vision-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(135deg, rgba(232, 185, 35, 0.1) 0%, transparent 100%);
}

.vision-wrapper {
  display: grid;
  grid-template-columns: 1fr 2px 1fr 2px 1fr;
  gap: 0;
}

.vision-divider {
  background: linear-gradient(180deg, transparent, rgba(232, 185, 35, 0.5), transparent);
}

.vision-card {
  padding: 40px;
  position: relative;
}

.vision-label {
  font-size: 11px;
  font-weight: 600;
  color: #e8b923;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.vision-title {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
}

.vision-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.vision-icon {
  width: 60px;
  height: 60px;
  border: 2px solid rgba(232, 185, 35, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.vision-icon i {
  font-size: 24px;
  color: #e8b923;
}

.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.values-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.values-list li:last-child {
  border-bottom: none;
}

.values-list li i {
  color: #e8b923;
  font-size: 12px;
}

.stats-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.stat-box {
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

.stat-box::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: #ddd;
}

.stat-box:last-child::after {
  display: none;
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: #e8b923;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: #0d1b2a;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.news-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.news-image {
  position: relative;
  height: 220px;
  background: #0d1b2a;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.1);
}

.news-date {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #e8b923;
  color: #0d1b2a;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 700;
}

.news-content {
  padding: 30px;
}

.news-category {
  font-size: 11px;
  font-weight: 600;
  color: #e8b923;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.news-title {
  font-size: 18px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.news-card:hover .news-title {
  color: #e8b923;
}

.news-excerpt {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.news-link {
  font-size: 13px;
  font-weight: 600;
  color: #0d1b2a;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.news-link:hover {
  color: #e8b923;
  gap: 12px;
}

.contact-section {
  padding: 100px 0;
  background: #fff;
}

.contact-form {
  background: #f8f9fa;
  padding: 50px;
  height: 100%;
}

.contact-form .form-control {
  border: none;
  border-bottom: 2px solid #e0e0e0;
  border-radius: 0;
  padding: 15px 0;
  font-size: 14px;
  background: transparent;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  box-shadow: none;
  border-bottom-color: #e8b923;
}

.contact-form textarea.form-control {
  min-height: 120px;
  resize: none;
}

.contact-form .btn-submit {
  background: #0d1b2a;
  color: #fff;
  border: none;
  padding: 18px 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  margin-top: 20px;
}

.contact-form .btn-submit:hover {
  background: #e8b923;
  color: #0d1b2a;
}

.contact-info-box {
  padding-left: 50px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 35px;
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-info-icon i {
  font-size: 22px;
  color: #e8b923;
}

.contact-info-content h5 {
  font-size: 16px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 8px;
}

.contact-info-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.contact-info-content a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-content a:hover {
  color: #e8b923;
}

.page-header {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, rgba(232, 185, 35, 0.1) 0%, transparent 100%);
}

.page-header-content {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.page-title span {
  color: #e8b923;
}

.breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #e8b923;
}

.breadcrumb-item.active {
  color: #e8b923;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
  content: "›";
}

.products-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.product-card {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.product-image {
  position: relative;
  height: 250px;
  background: #f0f0f0;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 27, 42, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: #e8b923;
  color: #0d1b2a;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.product-card:hover .product-overlay-btn {
  transform: translateY(0);
}

.product-content {
  padding: 25px;
}

.product-category {
  font-size: 11px;
  font-weight: 600;
  color: #e8b923;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.product-title {
  font-size: 18px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.product-card:hover .product-title {
  color: #e8b923;
}

.product-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.product-detail-section {
  padding: 80px 0;
}

.product-gallery {
  position: relative;
}

.product-main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  margin-bottom: 20px;
}

.product-thumbnails {
  display: flex;
  gap: 15px;
}

.product-thumb {
  width: 100px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.product-thumb:hover,
.product-thumb.active {
  border-color: #e8b923;
}

.product-info {
  padding-left: 50px;
}

.product-info-category {
  font-size: 12px;
  font-weight: 600;
  color: #e8b923;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.product-info-title {
  font-size: 36px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 25px;
}

.product-info-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
}

.product-specs {
  background: #f8f9fa;
  padding: 30px;
  margin-bottom: 30px;
}

.product-specs-title {
  font-size: 16px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 20px;
}

.product-specs-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-specs-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
}

.product-specs-list li:last-child {
  border-bottom: none;
}

.product-specs-list li span:first-child {
  color: #666;
}

.product-specs-list li span:last-child {
  font-weight: 600;
  color: #0d1b2a;
}

.career-section {
  padding: 100px 0;
}

.career-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.career-intro-text {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
}

.job-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 35px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.job-card:hover {
  border-color: #e8b923;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.job-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 10px;
}

.job-meta {
  display: flex;
  gap: 25px;
}

.job-meta span {
  font-size: 13px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
}

.job-meta span i {
  color: #e8b923;
}

.job-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: #0d1b2a;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.job-apply-btn:hover {
  background: #e8b923;
  color: #0d1b2a;
}

.site-footer {
  background: #0d1b2a;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.footer-logo-img {
  height: 45px;
  width: auto;
  margin-bottom: 15px;
}

.footer-logo-text {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.footer-logo-text span {
  color: #e8b923;
}

.footer-tagline {
  font-size: 11px;
  color: #e8b923;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.footer-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-social-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-label::before {
  content: "";
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #e8b923;
  border-color: #e8b923;
  color: #0d1b2a;
  transform: translateY(-3px);
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: #e8b923;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a::before {
  content: "";
  width: 0;
  height: 2px;
  background: #e8b923;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-links a:hover::before {
  width: 15px;
}

.footer-map {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-map iframe {
  width: 100%;
  height: 200px;
  border: none;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.footer-map:hover iframe {
  filter: grayscale(0%);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-contact-item i {
  color: #e8b923;
  font-size: 16px;
  margin-top: 3px;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: #e8b923;
}

.footer-bottom {
  padding: 25px 0;
  position: relative;
  z-index: 1;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-credit {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-credit a {
  color: #e8b923;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.footer-credit a:hover {
  color: #fff;
}

.scroll-top-btn {
  position: absolute;
  right: 0;
  bottom: 100%;
  width: 50px;
  height: 50px;
  background: #e8b923;
  color: #0d1b2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.scroll-top-btn:hover {
  background: #fff;
  transform: translateY(-5px);
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1200px) {
  .slider-nav {
    right: 25px;
  }
  .hero-title {
    font-size: 42px;
  }
  .slider-counter {
    left: 25px;
  }
}

@media (max-width: 991px) {
  .hero-slider {
    height: auto;
    min-height: 600px;
    padding: 100px 0;
  }
  .hero-title {
    font-size: 32px;
    letter-spacing: 2px;
  }
  .slider-nav {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    flex-direction: row;
    justify-content: center;
    margin-top: 50px;
  }
  .slider-dots {
    flex-direction: row;
    margin: 0 25px;
  }
  .slider-counter {
    display: none;
  }
  .about-section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 32px;
  }
  .hamburger-btn {
    display: none !important;
  }
  .contact-info-box {
    padding-left: 0;
    margin-top: 50px;
  }
  .footer-top {
    padding: 60px 0 40px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card:nth-child(2n) {
    border-right: none;
  }
  .service-card:nth-child(n + 3) {
    border-bottom: none;
  }
  .vision-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .vision-divider {
    display: none;
  }
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-info {
    padding-left: 0;
    margin-top: 40px;
  }
  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 26px;
    letter-spacing: 1px;
  }
  .hero-description {
    font-size: 14px;
  }
  .slider-dot {
    width: 40px;
    height: 40px;
    font-size: 11px;
  }
  .slider-arrow {
    width: 42px;
    height: 42px;
  }
  .about-title {
    font-size: 28px;
  }
  .about-stats-row {
    flex-wrap: wrap;
    gap: 20px;
  }
  .stat-box::after {
    display: none;
  }
  .contact-form {
    padding: 30px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    border-right: none;
  }
  .service-card:last-child {
    border-bottom: none;
  }
  .news-grid {
    grid-template-columns: 1fr;
  }
  .page-title {
    font-size: 32px;
  }
}

/* =================================
   CONTACT CARDS SECTION
================================= */
.contact-cards-section {
  padding: 80px 0;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.contact-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  height: 100%;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: #e8b923;
}

.contact-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
  background: linear-gradient(135deg, #e8b923 0%, #d4a520 100%);
}

.contact-card-icon i {
  font-size: 28px;
  color: #fff;
}

.contact-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: #0d1b2a;
  margin-bottom: 12px;
}

.contact-card p {
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 1.7;
}

.contact-card p a {
  color: #666;
  transition: color 0.3s ease;
}

.contact-card p a:hover {
  color: #e8b923;
}

/* =================================
   CONTACT FORM SECTION
================================= */
.contact-form-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-form-wrapper,
.contact-map-wrapper {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.contact-form .form-label {
  font-size: 14px;
  font-weight: 500;
  color: #0d1b2a;
  margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
  padding: 14px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: #e8b923;
  box-shadow: 0 0 0 3px rgba(232, 185, 35, 0.1);
}

.contact-form .form-check-label {
  font-size: 13px;
  color: #666;
}

.contact-form .form-check-label a {
  color: #e8b923;
  text-decoration: underline;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  margin-top: 25px;
  border: 1px solid #e0e0e0;
}

.map-container iframe {
  width: 100%;
  height: 280px;
  border: none;
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  font-size: 14px;
  color: #0d1b2a;
  font-weight: 500;
  transition: color 0.3s ease;
}

.map-link:hover {
  color: #e8b923;
}

/* =================================
   CTA SECTION
================================= */
.cta-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
}

.cta-content {
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.cta-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.cta-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #e8b923;
  color: #0d1b2a;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary-custom:hover {
  background: #fff;
  color: #0d1b2a;
  transform: translateY(-2px);
}

/* =================================
   CAREER PAGE STYLES
================================= */
.career-intro-section {
  padding: 100px 0;
}

.career-intro-content .section-title {
  margin-bottom: 25px;
}

.career-intro-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.career-features {
  margin-top: 30px;
}

.career-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.career-feature-item:last-child {
  border-bottom: none;
}

.career-feature-item i {
  font-size: 20px;
  color: #e8b923;
}

.career-feature-item span {
  font-size: 15px;
  font-weight: 500;
  color: #0d1b2a;
}

.career-intro-image {
  position: relative;
}

.career-intro-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.career-intro-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: linear-gradient(135deg, #e8b923 0%, #d4a520 100%);
  padding: 25px 35px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(232, 185, 35, 0.4);
}

.career-intro-badge .badge-number {
  display: block;
  font-size: 36px;
  font-weight: 700;
  color: #0d1b2a;
  line-height: 1;
}

.career-intro-badge .badge-text {
  font-size: 13px;
  font-weight: 500;
  color: #0d1b2a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =================================
   POSITIONS SECTION
================================= */
.positions-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.positions-list {
  margin-top: 50px;
}

.position-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: #fff;
  padding: 30px 35px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
}

.position-card:hover {
  border-left-color: #e8b923;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.position-department {
  display: inline-block;
  padding: 5px 15px;
  background: rgba(232, 185, 35, 0.1);
  color: #e8b923;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.position-title {
  font-size: 20px;
  font-weight: 600;
  color: #0d1b2a;
  margin-bottom: 12px;
}

.position-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.position-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #666;
}

.position-meta i {
  color: #e8b923;
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 2px solid #0d1b2a;
  color: #0d1b2a;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline-custom:hover {
  background: #0d1b2a;
  color: #fff;
}

/* =================================
   GENERAL APPLICATION SECTION
================================= */
.general-application-section {
  padding: 80px 0;
}

.general-application-box {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
  padding: 50px 60px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.general-application-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(135deg, rgba(232, 185, 35, 0.1) 0%, transparent 100%);
}

.general-application-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.general-application-box p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  max-width: 600px;
}

/* =================================
   MODAL STYLES
================================= */
.modal-content {
  border: none;
  border-radius: 12px;
}

.modal-header {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
  border-radius: 12px 12px 0 0;
  padding: 20px 30px;
}

.modal-title {
  color: #fff;
  font-weight: 600;
}

.modal-header .btn-close {
  filter: invert(1);
}

.modal-body {
  padding: 30px;
}

.modal-footer {
  padding: 20px 30px;
  border-top: 1px solid #eee;
}

/* =================================
   PAGE SUBTITLE
================================= */
.page-subtitle {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #e8b923;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
}

.page-header-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(135deg, transparent 49.5%, #fff 50%);
}

/* =================================
   RESPONSIVE ADJUSTMENTS
================================= */
@media (max-width: 991px) {
  .contact-cards-section {
    margin-top: 0;
    padding: 60px 0;
  }

  .career-intro-badge {
    bottom: -20px;
    left: -10px;
    padding: 20px 25px;
  }

  .career-intro-badge .badge-number {
    font-size: 28px;
  }

  .position-card {
    padding: 25px;
  }

  .general-application-box {
    padding: 40px;
  }
}

@media (max-width: 767px) {
  .contact-form-wrapper,
  .contact-map-wrapper {
    padding: 25px;
  }

  .cta-content {
    padding: 30px;
    text-align: center;
  }

  .cta-content h3 {
    font-size: 22px;
  }

  .position-action {
    width: 100%;
  }

  .btn-outline-custom {
    width: 100%;
    justify-content: center;
  }
}

/* =================================
   REQUEST FORM PAGE STYLES
================================= */
.request-form-section {
  padding: 100px 0;
  background: #f8f9fa;
}

.request-form-card {
  background: #fff;
  padding: 50px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.05);
  border-radius: 0;
}

.request-form-title {
  font-size: 28px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 15px;
}

.request-form-desc {
  color: #666;
  margin-bottom: 40px;
}

.form-section-title {
  font-size: 18px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e8b923;
}

.request-info-card {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
  padding: 40px;
  height: 100%;
  color: #fff;
}

.request-info-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #e8b923;
}

.request-info-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 30px;
}

.request-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.request-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.request-info-list li:last-child {
  border-bottom: none;
}

.request-info-list li i {
  color: #e8b923;
  font-size: 18px;
  margin-top: 2px;
}

.request-info-list li strong {
  display: block;
  color: #fff;
  font-weight: 600;
  margin-bottom: 5px;
}

.request-info-list li span {
  color: rgba(255, 255, 255, 0.6);
}

.request-info-contact {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.request-info-contact h5 {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.request-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 700;
  color: #e8b923;
  text-decoration: none;
  transition: all 0.3s ease;
}

.request-phone:hover {
  color: #fff;
}

.request-phone i {
  font-size: 18px;
}

/* =================================
   BUTTON STYLES
================================= */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a3a5c 100%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary-custom:hover {
  background: linear-gradient(135deg, #e8b923 0%, #d4a520 100%);
  color: #0d1b2a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(232, 185, 35, 0.3);
}

/* =================================
   RESPONSIVE ADJUSTMENTS FOR REQUEST FORM
================================= */
@media (max-width: 991px) {
  .request-form-card {
    padding: 30px;
  }

  .request-info-card {
    margin-top: 30px;
    border-radius: 0;
  }
}

@media (max-width: 767px) {
  .request-form-section {
    padding: 60px 0;
  }

  .request-form-card {
    padding: 25px;
  }

  .request-form-title {
    font-size: 24px;
  }
}
