/* Core Styling Variables */
:root {
  --primary: #003399; /* Parliament Blue */
  --primary-hover: #002280;
  --secondary: #E11D48; /* Accent Crimson red */
  --text-main: #1F2937; /* Charcoal */
  --text-muted: #4B5563;
  --bg-light: #F8F9FA;
  --bg-card: #FFFFFF;
  --border-color: rgba(0, 0, 0, 0.08);
  --font-outfit: 'Outfit', sans-serif;
  --font-jakarta: 'Plus Jakarta Sans', sans-serif;
}

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

body {
  font-family: var(--font-jakarta);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
}

/* Header */
.main-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
  height: 110px; /* Balanced header height for symmetric logo alignment */
  display: flex;
  align-items: center;
  overflow: visible;
}

.header-container {
  max-width: 1400px; /* Spaced out further for better left/right layout */
  margin: 0 auto;
  padding: 0 40px; /* Comfortable padding */
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1010;
}

.logo-img {
  height: 138px; /* Orijinal kurumsal boyut korundu */
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
  margin: 0; /* Clear positioning offsets */
}

.logo-img:hover {
  transform: scale(1.02);
}

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 35px; /* Spaced out slightly more to match larger font */
}

.nav-item {
  text-decoration: none;
  color: var(--text-main);
  font-family: var(--font-outfit);
  font-weight: 600;
  font-size: 18px; /* Increased from 16px by 15% */
  transition: color 0.2s ease;
  position: relative;
  padding: 5px 0;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.2s ease;
}

.nav-item:hover {
  color: var(--primary);
}

.nav-item:hover::after {
  width: 100%;
}

.nav-item.active {
  color: var(--primary);
}

.nav-item.active::after {
  width: 100%;
}

/* Header CTA Button */
.nav-item.header-cta {
  background: var(--primary);
  color: #FFFFFF !important;
  padding: 10px 20px;
  border-radius: 30px;
  transition: all 0.2s ease;
}

.nav-item.header-cta::after {
  display: none;
}

.nav-item.header-cta:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 51, 153, 0.2);
}

/* Navigation Dropdown System */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 51, 153, 0.05);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 51, 153, 0.08);
  list-style: none;
  padding: 10px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 999;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  color: var(--text-main);
  font-family: var(--font-outfit);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
  border-bottom: none;
}

.dropdown-menu li a::after {
  display: none; /* Disable underline effect in dropdown menu */
}

.dropdown-menu li a:hover {
  background-color: #F4F7FA; /* Light cloud blue background on hover */
  color: var(--primary);
  padding-left: 24px; /* Slight shift to the right */
}

/* Submenu toggle icon rotation on hover */
.nav-dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

/* Hero Section */
.hero-section {
  position: relative;
  background-image: url('resimler/banner1.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #FFFFFF;
  padding: 120px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(10, 25, 47, 0.22) 0%, rgba(10, 25, 47, 0.06) 100%);
  pointer-events: none;
}



.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-outfit);
  font-weight: 700;
  font-size: 16px;
  padding: 15px 30px;
  border-radius: 30px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary);
  color: #FFFFFF;
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 51, 153, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  border-color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

/* Responsiveness */
@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    justify-content: center;
  }
  .nav-list {
    display: none; /* Mobile hamburger toggle can be added later */
  }
}

/* Brands Section Styling */
.brands-section {
  background-color: #F8F9FA;
  padding: 100px 0;
  border-bottom: 1px solid var(--border-color);
  overflow: hidden;
}

.brands-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.brands-content {
  flex: 1;
  max-width: 550px;
}

.brands-subtitle {
  display: inline-block;
  color: var(--primary);
  font-family: var(--font-outfit);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.brands-title {
  font-family: var(--font-outfit);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 20px;
}

.brands-description {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 35px;
  line-height: 1.7;
}

.btn-soft-blue {
  background-color: #E0F2FE;
  color: #0369A1;
  border-radius: 30px;
  padding: 14px 28px;
  font-weight: 700;
}

.btn-soft-blue:hover {
  background-color: #BAE6FD;
  color: #0284C7;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(3, 105, 161, 0.15);
}

/* Orbit Animation */
.brands-orbit-wrapper {
  flex: 1;
  position: relative;
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orbit-center-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 51, 153, 0.06) 0%, transparent 70%);
  z-index: 1;
}

.orbit-ring {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 2px dashed rgba(0, 51, 153, 0.12);
  z-index: 2;
  animation: orbit-rotate 25s linear infinite;
}

.orbit-logo-holder {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orbit-logo-inner {
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 24px rgba(0, 51, 153, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px;
  transition: transform 0.2s ease;
}

.orbit-logo-inner img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
}

.cata-logo-img {
  border-radius: 50%;
  filter: invert(1);
}

/* Distribution along the 320px ring (Radius = 160px) */
.holder-1 { transform: rotate(0deg) translate(160px); }
.holder-2 { transform: rotate(72deg) translate(160px); }
.holder-3 { transform: rotate(144deg) translate(160px); }
.holder-4 { transform: rotate(216deg) translate(160px); }
.holder-5 { transform: rotate(288deg) translate(160px); }

/* Orbit Rotate Animation */
@keyframes orbit-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Counter-rotation to keep logo images upright */
.holder-1 .orbit-logo-inner { animation: logo-counter-rotate-1 25s linear infinite; }
.holder-2 .orbit-logo-inner { animation: logo-counter-rotate-2 25s linear infinite; }
.holder-3 .orbit-logo-inner { animation: logo-counter-rotate-3 25s linear infinite; }
.holder-4 .orbit-logo-inner { animation: logo-counter-rotate-4 25s linear infinite; }
.holder-5 .orbit-logo-inner { animation: logo-counter-rotate-5 25s linear infinite; }

@keyframes logo-counter-rotate-1 {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}
@keyframes logo-counter-rotate-2 {
  from { transform: rotate(-72deg); }
  to { transform: rotate(-432deg); }
}
@keyframes logo-counter-rotate-3 {
  from { transform: rotate(-144deg); }
  to { transform: rotate(-504deg); }
}
@keyframes logo-counter-rotate-4 {
  from { transform: rotate(-216deg); }
  to { transform: rotate(-576deg); }
}
@keyframes logo-counter-rotate-5 {
  from { transform: rotate(-288deg); }
  to { transform: rotate(-648deg); }
}

/* Mobile responsive adjustments */
@media (max-width: 992px) {
  .brands-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .brands-content {
    max-width: 100%;
  }
  .brands-orbit-wrapper {
    height: 380px;
  }
}

/* Center Stationary Logo */
.orbit-center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  margin-top: -70px;
  margin-left: -70px;
  background-color: #FFFFFF;
  border-radius: 50%;
  border: 4px solid rgba(0, 51, 153, 0.15);
  box-shadow: 0 0 35px rgba(0, 51, 153, 0.18), 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px;
  z-index: 10;
  transition: all 0.3s ease;
}

.orbit-center-logo img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.orbit-center-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 0 45px rgba(0, 51, 153, 0.25), 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Trust / Features Section Styling */
.trust-section {
  position: relative;
  background-image: url('resimler/industrial_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0 160px 0; /* Generous bottom padding to clear the wave */
  overflow: hidden;
  color: #FFFFFF;
}

.trust-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.22) 0%, rgba(23, 42, 69, 0.28) 100%);
  z-index: 1;
}

.trust-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.trust-header {
  margin-bottom: 60px;
}

.trust-title {
  font-family: var(--font-outfit);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1.3;
  margin-bottom: 15px;
  color: #FFFFFF;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.9);
}

.trust-subtitle {
  font-style: italic;
  font-family: var(--font-outfit);
  font-size: 18px;
  color: #93C5FD;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

.trust-features-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.trust-feature-card {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: transform 0.3s ease;
}

.trust-feature-card:hover {
  transform: translateY(-5px);
}

.trust-icon-wrapper {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  color: #FFFFFF;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.trust-feature-card:hover .trust-icon-wrapper {
  border-color: #93C5FD;
  background-color: rgba(147, 197, 253, 0.2);
  box-shadow: 0 0 20px rgba(147, 197, 253, 0.4);
}

.trust-feature-name {
  font-family: var(--font-outfit);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1.5px;
  color: #FFFFFF;
  text-transform: uppercase;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.95);
}

/* Responsive details */
@media (max-width: 768px) {
  .trust-title {
    font-size: 24px;
  }
  .trust-features-grid {
    justify-content: center;
  }
  .trust-feature-card {
    flex: unset;
    width: calc(50% - 20px);
  }
}

@media (max-width: 480px) {
  .trust-feature-card {
    width: 100%;
  }
}

/* Hero Bottom Wave styling */
.hero-section {
  position: relative;
  background-image: url('resimler/banner1.webp');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #FFFFFF;
  padding: 120px 0 180px 0; /* Add bottom padding so content doesn't overlap the wave */
  min-height: 900px; /* Dev kurumsal vitrin yüksekliği */
  overflow: hidden;
  display: flex;
  align-items: center;
}



/* Footer Styling */
.main-footer {
  position: relative;
  background-color: #B0AFAE; /* Matte grey theme */
  color: #0F172A; /* Slate 900 - dark text */
  padding: 120px 0 30px 0; /* Accommodate the top wave overlap */
  margin-top: -80px; /* Pull up to overlap trust-section */
  z-index: 5;
  overflow: visible;
}

.footer-wave-container svg path {
  fill: #B0AFAE !important;
}

.footer-wave-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-wave-container svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.brand-col .footer-logo {
  height: 80px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.3s ease;
}

.brand-col .footer-logo:hover {
  transform: scale(1.05);
}

.footer-company-name {
  font-family: var(--font-outfit);
  font-size: 15px;
  font-weight: 700;
  color: #0F172A; /* Slate 900 */
  margin-bottom: 12px;
  line-height: 1.4;
}

.brand-col .footer-description {
  font-size: 15px;
  color: #1E293B; /* Slate 800 - dark text */
  line-height: 1.6;
  max-width: 320px;
}

.footer-title {
  font-family: var(--font-outfit);
  font-size: 18px;
  font-weight: 700;
  color: #0F172A; /* Slate 900 */
  margin-bottom: 25px;
  position: relative;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 35px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-links, .footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  text-decoration: none;
  color: #1E293B; /* Slate 800 */
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary); /* Corporate blue on hover */
}

.footer-contact-info li {
  font-size: 15px;
  color: #1E293B; /* Slate 800 */
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-contact-info i {
  color: var(--secondary);
  font-size: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08); /* Clean dark border divider */
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 14px;
  color: #334155; /* Slate 700 */
  margin: 0;
}

.footer-bottom p a {
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-bottom p a:hover {
  color: var(--secondary);
}

/* Footer Responsive adjustments */
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    justify-content: center;
  }
}

@media (min-width: 992px) {
  .brand-col .footer-logo {
    height: 96px; /* Enlarged by 20% for desktop screens (80px * 1.2) */
  }
}

/* 3D Coverflow Gallery Styling */
.gallery-section {
  background-color: #FFFFFF;
  padding: 100px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-subtitle {
  display: inline-block;
  color: var(--primary);
  font-family: var(--font-outfit);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.gallery-title {
  font-family: var(--font-outfit);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary);
}

.coverflow-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
}

.coverflow-stage {
  position: relative;
  width: 100%;
  height: 460px;
  overflow: hidden;
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.coverflow-card {
  position: absolute;
  width: 300px;
  height: 400px;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  overflow: hidden;
}

.coverflow-card.active {
  box-shadow: 0 25px 50px rgba(0, 51, 153, 0.15);
  border-color: rgba(0, 51, 153, 0.15);
}

.card-inner {
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background: radial-gradient(circle at 50% 30%, rgba(0, 51, 153, 0.02) 0%, transparent 60%);
}

.placeholder-card-logo {
  max-width: 75%;
  height: auto;
  object-fit: contain;
  margin-top: 50px;
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.coverflow-card:hover .placeholder-card-logo {
  transform: scale(1.05);
}

.card-title {
  font-family: var(--font-outfit);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  text-align: center;
  background: linear-gradient(135deg, var(--primary) 0%, #1E40AF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.product-card {
  padding: 0 !important; /* Reset padding for full-bleed image */
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #FFFFFF !important;
}

.card-img-wrapper {
  width: 100%;
  height: 310px; /* Leave bottom 90px for title */
  overflow: hidden;
  position: relative;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.card-img.card-img-contain {
  object-fit: contain;
  background-color: #FFFFFF;
  padding: 15px;
}

.coverflow-card:hover .card-img {
  transform: scale(1.08); /* Zoom effect on hover */
}

.coverflow-card:hover .card-img.card-img-contain {
  transform: scale(1.03); /* Soft zoom for contain images */
}

.product-card .card-title {
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  margin: 0;
  width: 100%;
  border-top: 1px solid rgba(0, 51, 153, 0.04);
  background-color: #F8F9FA;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* Control buttons styling */
.coverflow-btn {
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: #FFFFFF;
  color: var(--text-main);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 20;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.coverflow-btn.prev-btn {
  left: 20px;
  transform: translateY(-50%);
}

.coverflow-btn.prev-btn:hover {
  transform: translateY(-50%) scale(1.1);
  background-color: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 6px 15px rgba(0, 51, 153, 0.2);
}

.coverflow-btn.next-btn {
  right: 20px;
  transform: translateY(-50%);
}

.coverflow-btn.next-btn:hover {
  transform: translateY(-50%) scale(1.1);
  background-color: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 6px 15px rgba(0, 51, 153, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .coverflow-stage {
    height: 380px;
  }
  .coverflow-card {
    width: 240px;
    height: 320px;
  }
  .placeholder-card-logo {
    margin-top: 30px;
  }
  .gallery-title {
    font-size: 28px;
  }
}

/* Contact Page Styling */
.contact-cards-section {
  background-color: #F8F9FA; /* light backdrop */
  padding: 80px 0;
}

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

.cloud-cards-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.cloud-card {
  flex: 1;
  min-width: 280px;
  background-color: #FFFFFF;
  border-radius: 50px 30px 60px 40px; /* Cloud-like shape */
  box-shadow: 0 15px 35px rgba(0, 51, 153, 0.05);
  padding: 50px 35px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(0, 51, 153, 0.03);
}

.cloud-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 45px rgba(0, 51, 153, 0.12);
  border-color: rgba(0, 51, 153, 0.08);
}

.cloud-card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #E0F2FE;
  color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.cloud-card:hover .cloud-card-icon {
  background-color: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(0, 51, 153, 0.2);
}

.cloud-card-title {
  font-family: var(--font-outfit);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 15px;
}

.cloud-card-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 500;
  width: 100%;
}

.contact-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
  display: inline-block;
}

.contact-link:hover {
  color: var(--secondary);
}

.contact-map-section {
  line-height: 0;
  overflow: hidden;
  width: 100%;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.contact-map-section iframe {
  display: block;
  width: 100%;
  height: 650px;
  border: 0;
  transition: height 0.3s ease;
}

@media (max-width: 768px) {
  .contact-map-section iframe {
    height: 400px;
  }
}

/* Mobile responsive contact page */
@media (max-width: 992px) {
  .cloud-cards-grid {
    flex-direction: column;
    gap: 30px;
  }
  .cloud-card {
    width: 100%;
    border-radius: 40px 25px 45px 30px;
  }
}

/* Breadcrumb Section Styling */
.breadcrumb-section {
  position: relative;
  background-image: url('resimler/izmir_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 65px 0;
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
}

.breadcrumb-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 25, 47, 0.25) 0%, rgba(23, 42, 69, 0.3) 100%);
  z-index: 1;
}

.breadcrumb-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumb-page-title {
  font-family: var(--font-outfit);
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 1px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.breadcrumb-nav {
  font-family: var(--font-outfit);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.breadcrumb-link {
  color: #93C5FD;
  text-decoration: none;
  transition: color 0.2s ease;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

.breadcrumb-link:hover {
  color: #FFFFFF;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 10px;
}

.breadcrumb-active {
  color: #FFFFFF;
  font-weight: 700;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.7);
}

/* About Us Page Styling */
.about-content-section {
  background-color: #FFFFFF;
  padding: 100px 0;
}

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

.about-grid {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-mini-title {
  display: inline-block;
  color: var(--secondary);
  font-family: var(--font-outfit);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.about-title {
  font-family: var(--font-outfit);
  font-size: 34px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-description {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.9;
  font-weight: 500;
  text-align: justify;
  text-align-last: center;
}

.mission-vision-section {
  padding: 100px 0;
  background-color: #F8F9FA;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.mission-vision-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.mission-card {
  flex: 1;
  min-width: 320px;
  background-color: #FFFFFF;
  border-radius: 50px 30px 60px 40px; /* Cloud-like shape */
  box-shadow: 0 15px 35px rgba(0, 51, 153, 0.05);
  padding: 55px 40px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(0, 51, 153, 0.03);
}

.mission-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 45px rgba(0, 51, 153, 0.12);
  border-color: rgba(0, 51, 153, 0.08);
}

.mission-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #E0F2FE;
  color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
  background-color: var(--primary);
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(0, 51, 153, 0.2);
}

.mission-title {
  font-family: var(--font-outfit);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.mission-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 500;
}

.about-cta-section {
  padding: 100px 0;
  background-color: #FFFFFF;
}

.about-cta-box {
  max-width: 900px;
  margin: 0 auto;
  background-color: #F4F7FA; /* Light cloud blue */
  border-radius: 30px;
  padding: 60px 40px;
  text-align: center;
  border: 1px solid rgba(0, 51, 153, 0.05);
  box-shadow: 0 15px 35px rgba(0, 51, 153, 0.03);
}

.about-cta-title {
  font-family: var(--font-outfit);
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 15px;
}

.about-cta-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 30px;
  font-weight: 500;
}

.whatsapp-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #25D366;
  color: #FFFFFF;
  font-family: var(--font-outfit);
  font-weight: 700;
  font-size: 17px;
  padding: 15px 35px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.whatsapp-cta-btn:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(18, 140, 126, 0.4);
}

/* Mobile responsive about page */
@media (max-width: 992px) {
  .mission-vision-grid {
    flex-direction: column;
    gap: 30px;
  }
  .mission-card {
    width: 100%;
    border-radius: 40px 25px 45px 30px;
  }
  .about-cta-box {
    padding: 40px 20px;
    border-radius: 20px;
  }
  .about-cta-title {
    font-size: 22px;
  }
  .about-title {
    font-size: 26px;
  }
}

/* Mobile Hamburger Menu Toggler (Desktop defaults) */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 28px;
  cursor: pointer;
  padding: 5px;
  transition: color 0.2s;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  color: var(--primary);
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px; /* Hide offscreen */
  width: 320px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -10px 0 35px rgba(0, 51, 153, 0.08);
  z-index: 2100;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  padding: 25px;
  overflow-y: auto;
}

.mobile-drawer.active {
  right: 0; /* Slide in */
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(10, 25, 47, 0.45);
  backdrop-filter: blur(4px);
  z-index: 2050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(0, 51, 153, 0.05);
  padding-bottom: 20px;
}

.mobile-drawer-logo {
  height: 55px;
  width: auto;
  object-fit: contain;
}

.mobile-menu-close {
  background: none;
  border: none;
  font-size: 26px;
  color: var(--text-main);
  cursor: pointer;
  padding: 5px;
  transition: color 0.2s;
}

.mobile-menu-close:hover {
  color: var(--primary);
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-nav-item {
  display: block;
  text-decoration: none;
  font-family: var(--font-outfit);
  font-weight: 700;
  font-size: 20px;
  color: var(--text-main);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
}

.mobile-nav-item:hover, .mobile-nav-item.active {
  color: var(--primary);
  padding-left: 5px;
}

.mobile-nav-dropdown-item {
  width: 100%;
}

.mobile-dropdown-menu {
  list-style: none;
  padding-left: 20px;
  margin-top: 5px;
  display: none;
  flex-direction: column;
  gap: 10px;
  border-left: 2px solid rgba(0, 51, 153, 0.08);
}

.mobile-dropdown-menu.active {
  display: flex;
}

.mobile-dropdown-menu li a {
  display: block;
  text-decoration: none;
  font-family: var(--font-outfit);
  font-weight: 600;
  font-size: 17px;
  color: var(--text-muted);
  padding: 8px 0;
  transition: all 0.2s ease;
}

.mobile-dropdown-menu li a:hover, .mobile-dropdown-menu li a.active {
  color: var(--primary);
  padding-left: 5px;
}

/* Mobile CTA Button inside Drawer */
.mobile-nav-item.mobile-cta-btn {
  background-color: var(--primary);
  color: #FFFFFF !important;
  text-align: center;
  padding: 14px 20px;
  border-radius: 30px;
  margin-top: 25px;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 8px 20px rgba(0, 51, 153, 0.15);
  border-bottom: none;
}

.mobile-nav-item.mobile-cta-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 51, 153, 0.25);
  padding-left: 0;
}

/* Hide desktop menu and show hamburger on screens <= 991px */
@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Make sure header doesn't break padding */
  .header-container {
    padding: 0 25px;
  }
  .logo-img {
    height: 100px; /* Scale logo slightly down on tablet/mobile header */
  }
}

/* Bank Accounts Page Styling */
.bank-cards-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.bank-card {
  flex: 1;
  min-width: 320px;
  background-color: #FFFFFF;
  border-radius: 50px 30px 60px 40px; /* Cloud-like asymmetrical shape */
  box-shadow: 0 15px 35px rgba(0, 51, 153, 0.04);
  padding: 40px 35px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 51, 153, 0.02);
}

.bank-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 20px 45px rgba(0, 51, 153, 0.1);
  border-color: rgba(0, 51, 153, 0.05);
}

.bank-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding-bottom: 15px;
}

.bank-badge {
  font-family: var(--font-outfit);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 20px;
}

.akbank-bg {
  background-color: rgba(227, 6, 19, 0.08);
  color: #E30613;
}

.garanti-bg {
  background-color: rgba(0, 122, 135, 0.08);
  color: #007A87;
}

.vakif-bg {
  background-color: rgba(255, 179, 0, 0.08);
  color: #E5A100;
}

.bank-icon {
  font-size: 26px;
}

.bank-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bank-info-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.info-label {
  font-family: var(--font-outfit);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
}

.bank-iban-box {
  margin-top: 10px;
  background-color: #F4F7FA; /* Light cloud blue background for IBAN */
  padding: 15px 20px;
  border-radius: 16px;
  text-align: left;
  border: 1px solid rgba(0, 51, 153, 0.03);
}

.iban-label {
  font-family: var(--font-outfit);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 6px;
}

.iban-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.iban-text {
  font-family: var(--font-outfit);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  word-break: break-all;
}

.copy-iban-btn {
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 51, 153, 0.1);
  color: var(--text-main);
  font-family: var(--font-outfit);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.copy-iban-btn:hover {
  background-color: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 4px 10px rgba(0, 51, 153, 0.15);
}

.copy-iban-btn.copied {
  background-color: #25D366;
  color: #FFFFFF;
  border-color: #25D366;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

/* Responsive details for bank accounts */
@media (max-width: 992px) {
  .bank-cards-grid {
    flex-direction: column;
    gap: 30px;
  }
  .bank-card {
    width: 100%;
    border-radius: 40px 25px 45px 30px;
  }
}

/* Quote Request Form Page Styling */
.quote-form-section {
  position: relative;
  background-image: url('resimler/blueprint_desk.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 100px 0 160px 0; /* Dikeyde ferahlık ve footer arası boşluk */
  z-index: 1;
}

.form-container-box {
  background-color: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(10, 25, 47, 0.12); /* Enhanced shadow for light background readability */
  padding: 50px;
  border: 1px solid rgba(0, 51, 153, 0.05);
}

.quote-section-title {
  font-family: var(--font-outfit);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
  text-align: center;
}

.quote-section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 40px;
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.teklif-form {
  display: flex;
  flex-direction: column;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-family: var(--font-outfit);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: 0.5px;
}

.form-input, .form-textarea {
  font-family: var(--font-jakarta);
  font-size: 15px;
  color: var(--text-main);
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid #E2E8F0;
  background-color: #FFFFFF;
  transition: all 0.2s ease;
}

.form-input::placeholder, .form-textarea::placeholder {
  color: #94A3B8; /* Cool gray placeholder text */
}

.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 51, 153, 0.08);
}

.form-textarea {
  resize: vertical;
}

/* Drag and Drop Zone */
.drag-drop-zone {
  border: 2px dashed #CBD5E1; /* Slate 300 dashed border */
  border-radius: 16px;
  padding: 35px 20px;
  text-align: center;
  background-color: #F8F9FA;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.drag-drop-zone:hover, .drag-drop-zone.dragover {
  border-color: var(--primary);
  background-color: rgba(0, 51, 153, 0.02);
}

.upload-cloud-icon {
  font-size: 38px;
  color: var(--primary);
  margin-bottom: 12px;
}

.upload-main-text {
  font-family: var(--font-outfit);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}

.upload-main-text .blue-link {
  color: var(--primary);
  text-decoration: underline;
}

.upload-sub-text {
  font-size: 13px;
  color: var(--text-muted);
}

/* Selected File Badge */
.selected-file-badge {
  background-color: #E0F2FE; /* Sky 100 */
  color: #0369A1; /* Sky 700 */
  border: 1px solid rgba(3, 105, 161, 0.1);
  padding: 10px 18px;
  border-radius: 30px;
  font-family: var(--font-outfit);
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.remove-file-btn {
  background: none;
  border: none;
  color: #EF4444;
  cursor: pointer;
  font-size: 16px;
  padding: 2px;
  display: flex;
  align-items: center;
  transition: transform 0.2s;
}

.remove-file-btn:hover {
  transform: scale(1.2);
}

/* Submit Quote Button */
.submit-quote-btn {
  background-color: var(--primary);
  color: #FFFFFF;
  font-family: var(--font-outfit);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1px;
  padding: 16px 30px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  margin-top: 35px;
  box-shadow: 0 10px 25px rgba(0, 51, 153, 0.15);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  overflow: hidden;
}

.submit-quote-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 51, 153, 0.25);
}

.submit-quote-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 20%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: all 0.75s ease;
}

.submit-quote-btn:hover::after {
  left: 125%;
  transition: all 0.75s ease;
}

/* Success Toast Notification */
.quote-toast {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translate(-50%, 50px);
  background-color: #0F172A;
  color: #FFFFFF;
  padding: 16px 28px;
  border-radius: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 9999;
  font-family: var(--font-outfit);
  font-weight: 700;
  font-size: 15px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0.5s;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.quote-toast i {
  color: #25D366;
  font-size: 20px;
}

.quote-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

/* Responsive details for Form */
@media (max-width: 768px) {
  .form-container-box {
    padding: 30px 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
  .quote-section-title {
    font-size: 26px;
  }
  .submit-quote-btn {
    font-size: 16px;
    padding: 14px 20px;
  }
}

/* Hero Slider Styling */
.hero-section.slider-active {
  position: relative;
  background-image: none; /* Override single background image */
  min-height: 900px;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
  backface-visibility: hidden;
  transform-style: preserve-3d;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide.slide-2 {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #0b1528; /* Dark navy color matching the banner image background tone */
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
  z-index: 12;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.slider-arrow:hover {
  background-color: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 51, 153, 0.3);
}

.prev-arrow {
  left: 30px;
}

.next-arrow {
  right: 30px;
}

.slider-dots {
  position: absolute;
  bottom: 110px; /* Positioned above the wave curve */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 12;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.slider-dots .dot.active {
  width: 28px;
  border-radius: 10px;
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 51, 153, 0.2);
}

/* Ensure bottom wave stays above the slides but below navigation/dots */


@media (max-width: 768px) {
  .hero-section.slider-active {
    min-height: 500px; /* Adjust height for mobile screens */
  }
  .hero-slide.slide-1 {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #181423;
  }
  .hero-slide.slide-3 {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #0A192F;
  }
  .slider-arrow {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
  .prev-arrow {
    left: 15px;
  }
  .next-arrow {
    right: 15px;
  }
  .slider-dots {
    bottom: 90px;
  }
}

/* Brands Page Showcase Styling */
.brands-grid-section {
  background-color: #F8F9FA;
  padding: 80px 0 100px 0;
}

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

.brands-grid-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.brands-grid-subtitle {
  display: inline-block;
  color: var(--primary);
  font-family: var(--font-outfit);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.brands-grid-title {
  font-family: var(--font-outfit);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--primary);
  margin-bottom: 18px;
}

.brands-grid-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.brands-showcase-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-card {
  flex: 0 1 calc(33.333% - 20px);
  min-width: 320px;
  max-width: 360px;
  background-color: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}

.brand-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: center;
  z-index: 5;
}

.brand-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 51, 153, 0.12);
  border-color: rgba(0, 51, 153, 0.15);
}

.brand-card:hover::after {
  transform: scaleX(1);
}

.brand-card-logo-wrapper {
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px;
  background-color: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.brand-card-logo-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
}

.brand-card-logo {
  width: 100%;
  height: 160px;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.brand-card:hover .brand-card-logo {
  transform: scale(1.06);
}

.brand-card-info {
  padding: 30px 24px;
  text-align: center;
  flex-grow: 1;
}

.brand-card-name {
  font-family: var(--font-outfit);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.brand-card-detail {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.brand-card-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 18px 24px;
  background-color: #F8F9FA;
  border-top: 1px solid rgba(0, 51, 153, 0.04);
  color: var(--primary);
  font-family: var(--font-outfit);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.brand-card:hover .brand-card-footer {
  background-color: var(--primary);
  color: #FFFFFF;
}

.brand-card-footer i {
  font-size: 13px;
  transition: transform 0.3s ease;
}

.brand-card-footer:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .brand-card {
    flex: 0 1 calc(50% - 20px);
    min-width: 280px;
  }
}

@media (max-width: 576px) {
  .brands-showcase-grid {
    gap: 20px;
  }
  .brand-card {
    flex: 0 1 100%;
    max-width: 100%;
  }
  .brand-card-logo-wrapper {
    height: 160px;
  }
  .brand-card-logo {
    height: 120px;
  }
  .brand-card-info {
    padding: 20px 15px;
  }
  .brand-card-name {
    font-size: 18px;
  }
}



/* 1. Page Flip 3D Transition Styles */
.hero-slider.perspective-active {
  perspective: 1500px;
}

.hero-slide.flip-out {
  transform-origin: left center;
  animation: flipOutAnim 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  z-index: 3;
  opacity: 1 !important;
  visibility: visible !important;
}

.hero-slide.flip-out-reverse {
  transform-origin: right center;
  animation: flipOutReverseAnim 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  z-index: 3;
  opacity: 1 !important;
  visibility: visible !important;
}

.hero-slide.flip-in-prep {
  opacity: 1 !important;
  visibility: visible !important;
  transform-origin: right center;
  transform: rotateY(180deg);
  z-index: 4;
}

.hero-slide.flip-in-prep-reverse {
  opacity: 1 !important;
  visibility: visible !important;
  transform-origin: left center;
  transform: rotateY(-180deg);
  z-index: 4;
}

.hero-slide.flip-in {
  animation: flipInAnim 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-slide.flip-in-reverse {
  animation: flipInReverseAnim 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes flipOutAnim {
  0% { transform: rotateY(0deg); opacity: 1; }
  100% { transform: rotateY(-180deg); opacity: 0.1; }
}

@keyframes flipOutReverseAnim {
  0% { transform: rotateY(0deg); opacity: 1; }
  100% { transform: rotateY(180deg); opacity: 0.1; }
}

@keyframes flipInAnim {
  0% { transform: rotateY(180deg); }
  100% { transform: rotateY(0deg); }
}

@keyframes flipInReverseAnim {
  0% { transform: rotateY(-180deg); }
  100% { transform: rotateY(0deg); }
}
}


/* Zigzag Catalog Layout */
.zigzag-container {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
}

.zigzag-row {
  display: flex;
  align-items: center;
  gap: 60px;
  background-color: #FFFFFF;
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 51, 153, 0.02);
  margin-bottom: 80px; /* Separates the cards beautifully */
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.zigzag-row:hover {
  box-shadow: 0 20px 45px rgba(0, 51, 153, 0.06);
  border-color: rgba(0, 51, 153, 0.08);
}

.zigzag-row:nth-child(even) {
  flex-direction: row-reverse;
}

.zigzag-img-wrapper {
  flex: 0 0 40%;
  height: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F8FAFC;
  border-radius: 20px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.zigzag-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Görselleri asla sünmez */
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.zigzag-row:hover .zigzag-img {
  transform: scale(1.04);
}

.zigzag-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.zigzag-title {
  font-family: var(--font-outfit);
  font-size: 26px;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 20px;
}

.zigzag-desc {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 30px;
}

.zigzag-cta {
  padding: 14px 28px !important;
  font-size: 15px !important;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
}

/* Scroll Buluşma Animation Styles */
.zigzag-row .zigzag-img-wrapper,
.zigzag-row .zigzag-info {
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Odd rows: image left (from left), text right (from right) */
.zigzag-row:nth-child(odd) .zigzag-img-wrapper {
  transform: translateX(-80px);
}
.zigzag-row:nth-child(odd) .zigzag-info {
  transform: translateX(80px);
}

/* Even rows: image right (from right), text left (from left) */
.zigzag-row:nth-child(even) .zigzag-img-wrapper {
  transform: translateX(80px);
}
.zigzag-row:nth-child(even) .zigzag-info {
  transform: translateX(-80px);
}

/* Active state for buluşma animation */
.zigzag-row.show .zigzag-img-wrapper,
.zigzag-row.show .zigzag-info {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .zigzag-row {
    flex-direction: column !important;
    gap: 30px;
    padding: 30px 20px;
    margin-bottom: 50px;
  }
  
  .zigzag-img-wrapper {
    width: 100%;
    height: 250px;
  }
  
  .zigzag-row:nth-child(odd) .zigzag-img-wrapper,
  .zigzag-row:nth-child(even) .zigzag-img-wrapper,
  .zigzag-row:nth-child(odd) .zigzag-info,
  .zigzag-row:nth-child(even) .zigzag-info {
    transform: translateY(40px) !important;
  }
  
  .zigzag-row.show .zigzag-img-wrapper,
  .zigzag-row.show .zigzag-info {
    transform: translateY(0) !important;
  }
}

/* Quote Toast Mobile Responsiveness */
@media (max-width: 768px) {
  .quote-toast {
    width: 90% !important;
    max-width: 450px;
    border-radius: 24px !important;
    padding: 14px 20px !important;
    font-size: 13px !important;
    line-height: 1.4;
    text-align: center;
    bottom: -150px;
  }
  
  .quote-toast.show {
    bottom: 20px !important;
  }
}

/* KVKK Page Styling */
.kvkk-content-section {
  padding: 80px 0;
  background-color: #F8FAFC;
}
.kvkk-box {
  background-color: #FFFFFF;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  line-height: 1.8;
  color: #334155;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.kvkk-box h1 {
  color: #0F172A;
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.kvkk-box h2 {
  color: #003399;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  border-bottom: 2px solid #E2E8F0;
  padding-bottom: 20px;
}
.kvkk-box h3 {
  color: #0F172A;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .kvkk-content-section {
    padding: 40px 0;
  }
  .kvkk-box {
    padding: 30px 20px;
    border-radius: 12px;
  }
  .kvkk-box h1 {
    font-size: 20px;
  }
  .kvkk-box h2 {
    font-size: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
  }
  .kvkk-box h3 {
    font-size: 14px;
  }
}
