/* --- CSS DEĞİŞKENLERİ (RENKLER) --- */
:root {
  --color-petrol: #1b262c;
  --color-gold: #d4af37;
  --color-gold-hover: #c4a030;
  --color-white: #ffffff;
  --color-text-dark: #333333;
  --color-text-light: #666666;
  --font-main: "Roboto", sans-serif;
  --font-heading: "Montserrat", sans-serif;
}

/* --- RESET & GENEL AYARLAR --- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  color: var(--color-petrol);
  background-color: var(--color-white);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
}

/* Container yapısı */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- BUTONLAR --- */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--color-gold);
  color: var(--color-petrol);
}

.btn-primary:hover {
  background-color: var(--color-gold-hover);
}

.btn-outline {
  background-color: transparent;
  border-color: white;
  color: white;
}

.btn-outline:hover {
  background-color: white;
  color: var(--color-petrol);
}

.btn-outline-dark {
  background-color: white;
  border-color: var(--color-petrol);
  color: var(--color-petrol);
}

.btn-outline-dark:hover {
  background-color: var(--color-petrol);
  color: var(--color-gold);
}

/* --- HEADER STYLES --- */

.main-header {
  background-color: var(--color-petrol);
  color: white;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-inner {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  max-height: 100px;
  width: auto;
  object-fit: contain;
}

.desktop-nav {
  display: none;
}
.desktop-nav a {
  font-size: 0.9rem;
  font-weight: 500;
}
.desktop-nav a:hover {
  color: var(--color-gold);
}

.mobile-menu-btn {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  background-color: var(--color-petrol);
  border-top: 1px solid #333;
}
.mobile-menu.active {
  display: block;
}
.mobile-menu a {
  display: block;
  padding: 15px 20px;
  border-bottom: 1px solid #333;
}
.mobile-menu a:hover {
  background-color: #2c3e50;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 30px;
  }
  .mobile-menu-btn {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}

/* --- DROPDOWN MENU (AÇILIR MENÜ) STİLLERİ --- */

/* 1. Kapsayıcı */
.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

/* 2. Link / Buton */
.dropdown .dropbtn {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
  height: 100%;
  color: white;
  font-weight: 500;
  font-size: 0.9rem;
  user-select: none;
}

.dropdown .dropbtn:hover {
  color: var(--color-gold);
}

/* 3. Açılır Kutu İçeriği */
.dropdown-content {
  display: none; /* Gizli */
  position: absolute;
  top: 100%;
  left: -15px;
  background-color: var(--color-petrol);
  min-width: 150px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  border-top: 3px solid var(--color-gold);
}

.dropdown-content.show {
  display: block !important;
}

/* 4. Linkler */
.dropdown-content a {
  color: #e0e0e0;
  padding: 14px 20px;
  text-decoration: none;
  display: block;
  text-align: left;
  margin-left: 0 !important;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-content a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--color-gold);
  padding-left: 25px;
}

/* --- MOBİL MENÜ STILLERI --- */
.mobile-submenu {
  background-color: rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.mobile-submenu a {
  padding-left: 40px !important;
  font-size: 0.85rem;
  color: #ccc;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  padding-top: 80px;
}

/* ARKA PLAN VİDEOSU */
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

/* KARARTMA PERDESİ (Overlay) */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(27, 38, 44, 0.75);
  z-index: -1;
}

/* İÇERİK KUTUSU */
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.hero-content h1 span {
  color: var(--color-gold);
}

.hero-content p {
  font-size: 1.1rem;
  color: #e0e0e0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* MOBİL & TABLET AYARLARI */
@media (min-width: 768px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
}

/* --- SERVICES GRID --- */
.section-padding {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  border: 1px solid #eee;
  padding: 30px;
  transition: 0.3s;
  text-align: center;
}
.service-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  color: var(--color-petrol);
  margin-bottom: 20px;
  transition: 0.3s;
}
.service-card:hover .service-icon {
  color: var(--color-gold);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-gold);
  text-transform: uppercase;
}
.service-link:hover {
  text-decoration: underline;
}

@media (min-width: 1024px) {
  .service-card {
    text-align: left;
  }
}

/* --- TRUST BAR --- */
.trust-bar {
  background-color: #f4f4f4;
  padding: 60px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .trust-item {
    border-right: 1px solid #ccc;
  }
  .trust-item:last-child {
    border-right: none;
  }
}

.trust-item i {
  font-size: 2.5rem;
  color: var(--color-petrol);
  margin-bottom: 15px;
}
.trust-item h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
}

/* --- BANNER (Container Specs) --- */
.banner-box {
  border: 2px solid var(--color-petrol);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bg-icon {
  position: absolute;
  right: -50px;
  top: -50px;
  font-size: 300px;
  color: #f9f9f9;
  z-index: 0;
  pointer-events: none;
}

.banner-img {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  filter: none !important;
  z-index: 1;
  border-radius: 4px;
}

.banner-content {
  z-index: 1;
  text-align: center;
  flex: 1;
}
.banner-content h2 {
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.banner-content p {
  color: var(--color-text-light);
}

.banner-action {
  z-index: 1;
}

@media (min-width: 1024px) {
  .banner-box-1 {
    flex-direction: row;
    text-align: left;
  }
  .banner-content {
    text-align: left;
  }
  .banner-img {
    width: 30%;
  }
}
/* --- ABOUT US SAYFASI STİLLERİ  --- */

/* 1. Page Title Hero (Kısa Hero) */
.page-hero {
  height: 60vh; /* Ana sayfadan biraz daha kısa */
  background-image: url("/assets/images/container.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: 80px; /* Header payı */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 38, 44, 0.7);
}

.page-hero .hero-content {
  position: relative;
  z-index: 1;
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 2px;
}
/* --- SEA FREIGHT SAYFASI STİLLERİ  --- */
.page-hero1 {
  height: 60vh; /* Ana sayfadan biraz daha kısa */
  background-image: url("/assets/images/ship.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: 80px; /* Header payı */
}

.hero-overlay1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 38, 44, 0.7);
}

.page-hero1 .hero-content {
  position: relative;
  z-index: 1;
}

.page-title1 {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-subtitle1 {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 2px;
}
/* --- Air FREIGHT SAYFASI STİLLERİ  --- */
.page-hero2 {
  height: 60vh; /* Ana sayfadan biraz daha kısa */
  background-image: url("https://images.unsplash.com/photo-1436491865332-7a61a109cc05?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: 80px; /* Header payı */
}

.hero-overlay2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 38, 44, 0.7);
}

.page-hero2 .hero-content {
  position: relative;
  z-index: 1;
}

.page-title2 {
  font-size: 3rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-subtitle2 {
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 2px;
}

/* 2. Z-Layout */
.about-section {
  background-color: white;
}
.about-section.bg-light {
  background-color: #f9f9f9;
}

.z-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Mobilde alt alta olması için */
@media (max-width: 991px) {
  .z-layout {
    flex-direction: column;
    gap: 40px;
  }
}

.z-text {
  flex: 1;
}
.z-image {
  flex: 1;
}

.z-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 2rem;
  color: var(--color-petrol);
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: var(--color-gold);
  margin-top: 10px;
}

.z-text p {
  color: var(--color-text-light);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
}

/* --- SERVICES GRID --- */
.section-padding {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  border: 1px solid #eee;
  padding: 30px;
  transition: 0.3s;
  text-align: center;
}
.service-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
  font-size: 3rem;
  color: var(--color-petrol);
  margin-bottom: 20px;
  transition: 0.3s;
}
.service-card:hover .service-icon {
  color: var(--color-gold);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: px;
  text-transform: uppercase;
}
.service-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-gold);
  text-transform: uppercase;
}

/* --- TRUST BAR --- */
.trust-bar {
  background-color: #f4f4f4;
  padding: 60px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .trust-item {
    border-right: 1px solid #ccc;
  }
  .trust-item:last-child {
    border-right: none;
  }
}
.trust-item i {
  font-size: 2.5rem;
  color: var(--color-petrol);
  margin-bottom: 15px;
}
.trust-item h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
}

/* --- BANNER --- */
.banner-box {
  border: 2px solid var(--color-petrol);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.bg-icon {
  position: absolute;
  right: -50px;
  top: -50px;
  font-size: 300px;
  color: #f9f9f9;
  z-index: 0;
  pointer-events: none;
}
.banner-img {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  filter: grayscale(100%);
  transition: 0.5s;
  z-index: 1;
  border-radius: 4px;
}
.banner-box:hover .banner-img {
  filter: grayscale(0%);
}
.banner-content {
  z-index: 1;
  text-align: center;
  flex: 1;
}
.banner-action {
  z-index: 1;
}
@media (min-width: 1024px) {
  .banner-box {
    flex-direction: row;
    text-align: left;
  }
  .banner-content {
    text-align: left;
  }
  .banner-img {
    width: 30%;
  }
}

/* --- FOOTER STYLES --- */
.site-footer {
  background-color: var(--color-petrol);
  color: white;
  padding-top: 60px;
  padding-bottom: 40px;
  border-top: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1.2fr 1fr;
  }
}

.footer-col h4 {
  color: var(--color-gold);
  margin-bottom: 25px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  font-size: 0.95rem;
  color: #cccccc;
  transition: 0.3s;
}
.footer-links a:hover {
  color: var(--color-gold);
  padding-left: 5px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #cccccc;
}
.footer-contact i {
  color: var(--color-gold);
  margin-right: 15px;
  margin-top: 5px;
}
.social-icons {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid #555;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  color: #fff;
}
.social-link:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-petrol);
}
.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #888;
}
.affiliations-wrapper {
  margin-top: 30px;
  text-align: left;
}
.aff-logo {
  display: inline-block;
  background: transparent;
  padding: 0;
}
.aff-logo img {
  width: 140px !important;
  height: auto !important;
  max-height: none !important;
  display: block;
}

/* --- SERVICES PAGE LAYOUT (70/30 Kuralı) --- */
.services-layout {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

/* Mobilde alt alta, Masaüstünde yan yana */
@media (max-width: 991px) {
  .services-layout {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    order: 2;
  }
  .service-content {
    width: 100%;
    order: 1;
  }
}

/* --- SOL SIDEBAR (%30) --- */
@media (min-width: 991px) {
  .sidebar {
    width: 30% !important;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
  }
  .service-content {
    width: 70% !important;
  }
}

.sidebar-widget {
  background: #f9f9f9;
  padding: 30px;
  margin-bottom: 30px;
  border-left: 3px solid var(--color-gold);
}

/* 1. Hizmet Menüsü */
.service-menu h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--color-petrol);
}

.service-menu ul li {
  margin-bottom: 10px;
  list-style: none;
}

.service-menu ul li a {
  display: block;
  padding: 12px 15px;
  background: white;
  color: #555;
  font-weight: 500;
  transition: 0.3s;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-menu ul li a:hover,
.service-menu ul li a.active {
  background: var(--color-gold);
  color: var(--color-petrol);
  border-color: var(--color-gold);
}

/* 2. Hızlı Destek Kutusu */

.contact-widget {
  background: url("/assets/images/contact.webp") no-repeat center center;
  background-size: cover;
  background-position: center;
  position: relative;
  text-align: center;
  color: white;
  padding: 40px 20px;
  border-left: none;
  overflow: hidden;
}

/* Karartma Katmanı */
.contact-widget .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 38, 44, 0.6);
  z-index: 1;
}

/* İçerik Katmanı (Yazılar) */
.contact-widget .content {
  position: relative;
  z-index: 2;
}

.contact-widget i {
  font-size: 3rem;
  color: var(--color-gold);
  margin-bottom: 15px;
}

.phone-link {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 15px 0 20px;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.8rem;
}

/* --- SAĞ ANA İÇERİK (%70) --- */

.content-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--color-petrol);
}

.intro-text {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.sub-title {
  font-size: 1.5rem;
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
  color: var(--color-petrol);
}

@media (min-width: 768px) {
  .service-content {
    width: 100%;
  }
  .content-title {
    font-size: 2rem;
  }
  .intro-text {
    font-size: 1.1rem;
  }
}

/* Feature Cards (Kartlar) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.feature-card {
  background: #f9f9f9;
  padding: 25px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.feature-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  border-color: var(--color-gold);
  transform: translateY(-5px);
}

.feature-card .icon {
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 15px;
}

.feature-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--color-petrol);
}

.feature-card p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}
@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

/* Process Steps (Nasıl Çalışır?) */
.process-steps {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 30px;
  text-align: center;
  position: relative;
}

.step {
  flex: 1;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 50px;
  height: 50px;
  background: var(--color-petrol);
  color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 15px;
  border: 3px solid white;
  box-shadow: 0 0 0 3px #eee;
}

.step h5 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--color-petrol);
}

.step p {
  font-size: 0.85rem;
  color: #777;
}

/* Aradaki Çizgi */
.step-line {
  flex: 1;
  height: 2px;
  background: #eee;
  margin-top: 25px;
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .step-line {
    display: none;
  }

  /* Mobilde Adımları "Kart" Görünümüne Çeviriyoruz */
  .step {
    display: grid;
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
    column-gap: 20px;
    row-gap: 4px;
    align-items: center;

    text-align: left;
    width: 100%;
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #eeeeee;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  }

  /* İkon Ayarları */
  .step-icon {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
    margin: 0;
    box-shadow: none;
    border: none;

    background: var(--color-petrol);
    color: var(--color-gold);
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  /* Başlık */
  .step h5 {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    margin-bottom: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-petrol);
    align-self: end;
  }

  /* Açıklama */
  .step p {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    align-self: start;
  }
}

/* Alt Galeri */
.content-gallery {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}

.content-gallery img {
  width: 50%;
  height: 250px;
  object-fit: cover;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .content-gallery {
    flex-direction: column;
  }
  .content-gallery img {
    width: 100%;
    height: auto;
  }
}

/* --- PROJECT CARGO SAYFASI STİLLERİ --- */

/* 1. Engineering Grid (3 Cols - İkonlu) */
.engineering-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.eng-item {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 4px;
  border-top: 3px solid var(--color-gold);
  text-align: center;
  transition: 0.3s;
}

.eng-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.eng-icon {
  font-size: 2.5rem;
  color: var(--color-petrol);
  margin-bottom: 15px;
}

.eng-item h4 {
  font-size: 1rem;
  color: var(--color-petrol);
  margin-bottom: 10px;
  font-weight: 700;
}

.eng-item p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.5;
}

/* 2. Equipment Grid (2 Cols - Görselli) */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.equip-card {
  border: 1px solid #eee;
  background: white;
}

.equip-card img {
  width: 100%;
  height: 200px;
  object-fit: scale-down;
}

.equip-info {
  padding: 20px;
}

.equip-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--color-petrol);
}

.equip-info p {
  font-size: 0.9rem;
  color: #777;
  margin: 0;
}

/* 4. Trust Signals (Yatay Kutu) */
.trust-signals {
  background: #f4f4f4;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-around;
  border-left: 5px solid var(--color-gold);
}

.signal {
  display: flex;
  align-items: center;
  gap: 15px;
}

.signal i {
  font-size: 2.5rem;
  color: var(--color-petrol);
}

.signal h5 {
  font-size: 1rem;
  margin-bottom: 2px;
  color: var(--color-petrol);
}

.signal p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

/* Mobil için Trust Signal Düzeni */
@media (max-width: 600px) {
  .trust-signals {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* --- CONTAINER SPECS SAYFASI STİLLERİ --- */

/* 1. Tab Navigation (Sekmeler) */
.tabs-nav {
  display: flex;
  justify-content: center;
  border-bottom: 2px solid #eee;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 600;
  color: #666;
  transition: 0.3s;
  border-bottom: 3px solid transparent;
}

.tab-btn:hover {
  color: var(--color-petrol);
}

.tab-btn.active {
  color: var(--color-petrol);
  border-bottom: 3px solid var(--color-gold);
}

/* 2. Spec Block (Çizim + Tablo Yapısı) */
.tab-content {
  display: none;
  animation: fadeEffect 0.5s;
}

@keyframes fadeEffect {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.spec-block {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #eee;
  align-items: center;
}

.spec-block:last-child {
  border-bottom: none;
}

/* Sol Taraf: Teknik Çizim */
.tech-drawing {
  flex: 1;
  text-align: center;
  border: 1px solid #ddd;
  padding: 20px;
  background: #fff;
}

.tech-drawing img {
  max-width: 100%;
  height: auto;
  max-height: 250px;
  margin: 0 auto;
}

.drawing-caption {
  margin-top: 15px;
  font-size: 0.9rem;
  color: #777;
  font-style: italic;
}

/* Sağ Taraf: Tablo */
.spec-table-wrapper {
  flex: 1.5;
}

.spec-table-wrapper h3 {
  font-size: 1.3rem;
  color: var(--color-petrol);
  margin-bottom: 15px;
  border-left: 4px solid var(--color-gold);
  padding-left: 10px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.spec-table th,
.spec-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

.spec-table th {
  background-color: #f4f4f4;
  color: var(--color-petrol);
  font-weight: 700;
}

.spec-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

/* 3. Need Help CTA (Alt Kutu) */
.need-help-cta {
  background: #f9f9f9;
  border: 1px solid #ddd;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.need-help-cta .icon-circle {
  width: 50px;
  height: 50px;
  background: var(--color-petrol);
  color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-right: 20px;
}

.need-help-cta .text {
  flex: 1;
}

.need-help-cta h4 {
  margin: 0;
  color: var(--color-petrol);
  font-size: 1.1rem;
}

.need-help-cta p {
  margin: 5px 0 0;
  color: #666;
  font-size: 0.9rem;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
  .spec-block {
    flex-direction: column;
  }

  .need-help-cta {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .need-help-cta .icon-circle {
    margin-right: 0;
  }

  .tab-btn {
    width: 50%; /* Mobilde 2'li sıra */
    font-size: 0.9rem;
    padding: 10px;
  }
}

/* --- CONTACT PAGE STYLES (YENİ EKLENEN KISIM) --- */

/* 1. Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

@media (max-width: 991px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* 2. Contact Info Side */
.contact-info {
  padding-right: 20px;
}

.info-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}

.info-box:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.info-box .icon {
  width: 50px;
  height: 50px;
  background: var(--color-petrol);
  color: var(--color-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 20px;
  flex-shrink: 0;
}

.info-box .details h4 {
  font-size: 1.1rem;
  color: var(--color-petrol);
  margin-bottom: 8px;
  font-weight: 700;
}

.info-box .details p {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 5px;
  line-height: 1.6;
}

.info-box .details a {
  color: #666;
  text-decoration: none;
  transition: 0.3s;
}

.info-box .details a:hover {
  color: var(--color-gold);
}

/* 3. Contact Form Wrapper */
.contact-form-wrapper {
  background: #f9f9f9;
  padding: 40px;
  border-radius: 4px;
  border-top: 5px solid var(--color-gold);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-title {
  font-size: 1.5rem;
  color: var(--color-petrol);
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-petrol);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: #333;
  background: white;
  transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
  resize: vertical;
}

/* 4. Map Section */
.map-section {
  width: 100%;
  line-height: 0;
  border-top: 4px solid var(--color-gold);
}

.map-section iframe {
  filter: grayscale(20%);
  transition: 0.5s;
}

.map-section:hover iframe {
  filter: grayscale(0%);
}

/* --- GET A QUOTE MODAL STYLES --- */

/* 1. Modal Overlay (Arka Plan Karartma) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

/* 2. Modal Box (Kutu) */
.modal-box {
  background: white;
  width: 100%;
  max-width: 700px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  border-top: 5px solid var(--color-gold);
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

/* 3. Header */
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  border-bottom: 1px solid #eee;
}

.modal-header h3 {
  margin: 0;
  color: var(--color-petrol);
  font-size: 1.5rem;
  font-weight: 800;
}

.close-modal-btn {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #999;
  line-height: 1;
}

.close-modal-btn:hover {
  color: var(--color-petrol);
}

/* 4. Progress Bar */
.modal-progress {
  display: flex;
  background-color: #f4f4f4;
  border-bottom: 1px solid #eee;
}

.progress-step {
  flex: 1;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #999;
  border-bottom: 3px solid transparent;
  transition: 0.3s;
}

.progress-step.active {
  color: var(--color-petrol);
  background-color: white;
  border-bottom-color: var(--color-gold);
}

/* 5. Content & Steps */
.step-content {
  padding: 30px;
  display: none;
}

.step-content.active {
  display: block;
  animation: fadeIn 0.4s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 6. Transport Options (Select Boxes) */
.transport-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.transport-option {
  border: 2px solid #eee;
  padding: 20px 10px;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
  color: #666;
}

.transport-option:hover {
  border-color: var(--color-gold);
}

.transport-option.active {
  border-color: var(--color-gold);
  background-color: var(--color-gold);
  color: var(--color-petrol);
}

.transport-option i {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.transport-option span {
  font-weight: 700;
  font-size: 0.9rem;
}

/* 7. Form Grid & Inputs */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-petrol);
  font-size: 0.9rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 5px;
  display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--color-gold);
  outline: none;
}

/* 8. Footer & Trust Text */
.modal-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

.trust-text {
  text-align: center;
  font-size: 0.8rem;
  color: #888;
  margin-top: 15px;
  margin-bottom: 0;
}

/* Mobil Uyumluluk */
@media (max-width: 600px) {
  .transport-options {
    grid-template-columns: 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .modal-box {
    height: 100%;
    overflow-y: auto;
  }
}

/* --- FOOTER STYLES --- */
.site-footer {
  background-color: var(--color-petrol);
  color: white;
  padding-top: 50px;
  padding-bottom: 30px;
  border-top: 4px solid var(--color-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col h4 {
  color: var(--color-gold);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #ccc;
}
.footer-links a:hover {
  color: white;
}
.footer-contact i {
  color: var(--color-gold);
  margin-right: 10px;
}

.social-icons {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 40px;
  height: 40px;
  border: 1px solid #666;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.social-link:hover {
  background-color: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-petrol);
}

.affiliations-wrapper {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 15px;
  align-items: center;
}

.aff-logo img {
  max-height: 160px;
  width: auto;
}
.footer-copy {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.footer-copy p {
  font-size: 0.7rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-copy a {
  color: #777;
}
