:root {
  --navy: #0a192f;
  --navy-light: #112240;
  --ivory: #f8f5f0;
  --maroon: #800020;
  --maroon-dark: #67001a;
  --gold: #c9a86a;
  --gold-dark: #b38a45;
  --charcoal: #1a1a1a;
  --stone: #e8e5de;
  
  --nav-bg: rgba(10, 25, 47, 0.95);
  --accent: var(--gold);
  --accent-2: var(--gold-dark);
  --text: #0b1320;
  --muted: #6e7680;
  --bg: var(--ivory);
  --container: 100%;

  --radius: 0;
  --burgundy: var(--maroon);

  --font-hero: Arial, Helvetica, sans-serif;
  --font-heading: Arial, Helvetica, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.011em;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: var(--space-sm);
  letter-spacing: -0.02em;
}

h1 { 
  font-size: var(--text-5xl); 
  margin-bottom: var(--space-md); 
  letter-spacing: -0.03em;
}

h2 { 
  font-size: var(--text-4xl); 
  margin-bottom: var(--space-md); 
  letter-spacing: -0.02em;
}

h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p, .lead, .bullets, address {
  margin-bottom: var(--space-md);
  max-width: 65ch;
}

.lead {
  font-size: var(--text-xl);
  line-height: 1.6;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
}

/* ── CONTAINER: tam genişlik, yalnızca iç boşluk ── */
.container {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container > * + * {
  margin-top: var(--space-xl);
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  height: 100px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-lg);
  height: 100%;
}

.logo {
  height: 100px;
  width: auto;
  display: block;
  margin: 0;
}

.brand-combo {
  display: flex;
  align-items: center;
  color: white;
  gap: 1rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
}

.brand-combo span {
  color: white;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

nav#main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--space-lg);
  align-items: center;
}

nav#main-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  opacity: 0.9;
  transition: opacity 0.3s ease;
  position: relative;
  padding: 0.25rem 0;
}

nav#main-nav a:hover {
  opacity: 1;
}

nav#main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

nav#main-nav a:hover::after {
  width: 100%;
}

.headerindex {
  display: none;
  border: 0;
  background: transparent;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
}

/* ── HERO: tam genişlik ── */
.hero {
  min-height: 95vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
  margin-top: 0;
  width: 100%;
  max-width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.9) contrast(1.08);
  transform: scale(1.02);
  will-change: transform;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  mix-blend-mode: multiply;
}

.hero::after {
  content: "Keşfetmek için aşağı kaydırın";
  font-family: var(--font-hero);
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 3;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center !important;
  align-items: center;
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
}

.hero-left {
  max-width: 700px;
  margin: 0 auto;
}

.hero-left h1 {
  font-family: var(--font-hero);
  font-size: 2rem;
  color: var(--ivory);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.hero-left .lead {
  margin-bottom: var(--space-lg);
  font-size: var(--text-lg);
  font-weight: 300;
  line-height: 1.7;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 0;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn.primary {
  background: var(--maroon);
  color: white;
  border-color: var(--maroon);
}

.btn.primary:hover {
  background: var(--maroon-dark);
  border-color: var(--maroon-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(128, 0, 32, 0.25);
}

.btn.ghost {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-color: white;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.cta-row {
  display: flex;
  gap: var(--space-sm);
  align-items: center;
  flex-wrap: wrap;
  margin-top: var(--space-lg);
  justify-content: center;
}

/* ── ABOUT ── */
#about {
  position: relative;
  overflow: hidden;
  text-align: center;
  background-image: url(images/beyazarka.jpg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 100%;
}

#about h2 {
  text-align: center;
  width: 100%;
}

.about-centered-content {
  text-align: center !important;
  max-width: 600px;
  min-height: 400px;
  font-weight: 400;
  font-size: var(--text-l);
  margin: 0 auto var(--space-xl) auto;
}

.about-centered-content p {
  text-align: center;
  max-width: 600px;
  font-weight: 300;
  margin-bottom: var(--space-lg);
}

/* ── TEAM ── */
#team {
  position: relative;
  background: transparent !important;
  overflow: hidden;
  text-align: center;
  width: 100%;
}

#team > .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

#team .advocate-photo-container,
#team .advocate-photo,
#team .advocate-info,
#team .advocate-info .card-name,
#team .advocate-info .card-role,
#team .advocate-info .card-contact {
  display: none;
}

#team .team-grid {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin: var(--space-xl) auto 0 auto;
  width: 100%;
}

#team .team-card {
  background: white;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(7, 18, 37, 0.08);
  transition: all 0.3s ease;
  border: 1px solid transparent;
  max-width: 350px;
  width: 100%;
  flex: 0 0 auto;
}

#team .team-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

#team .team-card figcaption {
  padding: var(--space-lg);
  text-align: center;
}

#team .team-card .name {
  font-weight: 700;
  margin: 0;
  font-size: var(--text-xl);
  font-family: var(--font-heading);
  color: var(--navy);
  letter-spacing: -0.01em;
}

#team .team-card .role {
  font-size: var(--text-base);
  color: var(--muted);
  margin: var(--space-xs) 0 0 0;
  font-weight: 400;
}

#team .team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(7, 18, 37, 0.15);
  border-color: rgba(128, 0, 32, 0.1);
}

#team .team-card:hover img {
  transform: scale(1.05);
}

#team .advocate-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  margin-top: var(--space-xl);
  width: 100%;
  text-align: center;
}

#team .meet-advocate-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--maroon);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.75rem 0;
  transition: all 0.3s ease;
  position: relative;
}

#team .meet-advocate-link:hover {
  color: var(--maroon-dark);
  transform: translateY(-2px);
}

#team .meet-advocate-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--maroon);
  transition: width 0.3s ease;
}

#team .meet-advocate-link:hover::after {
  width: 100%;
}

#team .meet-advocate-link svg {
  transition: transform 0.3s ease;
}

#team .meet-advocate-link:hover svg {
  transform: translateX(4px);
}

#team .advocate-title-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(128, 0, 32, 0.1);
  color: var(--maroon);
  border: 2px solid rgba(128, 0, 32, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-top: var(--space-md);
}

#team .advocate-title-btn:hover {
  background: rgba(128, 0, 32, 0.2);
  border-color: var(--maroon);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(128, 0, 32, 0.15);
}

#team .advocate-title-btn svg {
  transition: transform 0.3s ease;
}

#team .advocate-title-btn:hover svg {
  transform: translateX(4px);
}

#team .advocate-links .btn.primary {
  padding: 0.85rem 2.5rem;
  font-size: 1rem;
  margin-top: var(--space-sm);
}

/* ── SERVICES ── */
#services {
  transform: scaleY(0.8);
  font-size: 0.85em;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.view-more-wrap {
  text-align: center;
}

.view-more {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 26px;
  padding: 16px 36px;
  color: #fff;
  background: rgba(10, 25, 47, 0.95);
  text-decoration: none;
  border-radius: 6px;
  transition: box-shadow 0.25s ease;
}

.view-more:hover {
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

/* ── FORM ── */
form {
  background: white;
  padding: var(--space-lg);
  border-radius: 0;
  box-shadow: 0 15px 40px rgba(7, 18, 37, 0.1);
  border: 1px solid var(--stone);
}

.form-row {
  margin-bottom: var(--space-md);
}

.form-row label {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 6px;
  font-weight: 500;
  color: var(--charcoal);
}

input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 0;
  border: 1px solid #e6e6e6;
  font-size: 1rem;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  background: #fff;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--maroon);
  box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.1);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

#contact-form .btn.primary {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  color: white;
  padding: var(--space-xl) 0;
  margin-top: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  width: 100%;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer .brand {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: white;
  margin-bottom: var(--space-xs);
}

.footer .small {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer nav ul {
  list-style: none;
  display: flex;
  gap: var(--space-md);
  margin: 0;
  padding: 0;
}

.footer nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer nav a:hover {
  color: white;
}

/* ── ANİMASYONLAR ── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}

.scroll-reveal.from-left {
  transform: translateX(-60px) translateY(0);
}

.scroll-reveal.from-right {
  transform: translateX(60px) translateY(0);
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.scroll-reveal.delay-1 { transition-delay: 0.1s; }
.scroll-reveal.delay-2 { transition-delay: 0.2s; }
.scroll-reveal.delay-3 { transition-delay: 0.3s; }
.scroll-reveal.delay-4 { transition-delay: 0.4s; }

.animate-up, .animate-fade {
  opacity: 0;
  transform: translateY(25px);
  transition: all .7s cubic-bezier(.2,.9,.2,1);
}

.show {
  opacity: 1;
  transform: none;
}

.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(7, 18, 37, 0.1) 50%, transparent 100%);
  margin: var(--space-xl) 0;
}

.section-divider-thick {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--maroon) 50%, transparent 100%);
  margin: var(--space-xl) auto;
  width: 80px;
}

#services h2 {
  text-align: center;
  color: white !important;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/beyazarka.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: -1;
  margin-left: 0;
}

#team::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/beyazarka.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.5;
  z-index: -1;
}

.shadow-divider-bottom {
  box-shadow: 0 4px 20px rgba(7, 18, 37, 0.08);
}

.bg-ivory {
  background: var(--ivory);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: var(--space-xl);
  align-items: start;
}

/* ── TÜM BÖLÜMLER TAM GENİŞLİK ── */
body > * {
  max-width: 100%;
  width: 100%;
}

.section > .container {
  border-left: 1px solid rgba(0, 0, 0, 0.03);
  border-right: 1px solid rgba(0, 0, 0, 0.03);
  padding: var(--space-xl) var(--space-lg);
}

/* ── SPLASH ── */
@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.logo.glow {
  animation: glowPulse 2.5s ease-in-out infinite;
}

@keyframes glowPulse {
  0% { filter: drop-shadow(0 0 0px #c9a86a); }
  100% { filter: drop-shadow(0 0 12px #c9a86a); }
}

.logo.slide {
  animation: slideIn 1s ease-out forwards;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

#splash-screen {
  position: fixed;
  inset: 0;
  background-image: url("images/ahsap.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#splash-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

#splash-screen .splash-logo {
  width: 150px;
  height: auto;
  animation: logoPulse 2s ease-in-out infinite;
}

.splash-logo {
  width: 160px;
  max-width: 45%;
  animation: softZoom 1.6s ease-out forwards;
}

@keyframes softZoom {
  0%   { transform: scale(0.85); opacity: 0; }
  40%  { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.05); opacity: 1; }
}

/* ── MAIN FOOTER ── */
.main-footer {
  background: var(--navy);
  color: white;
  padding: 40px 0 20px;
  margin-top: 60px;
  border-top: 1px solid var(--tan);
  width: 100%;
}

.footer-content {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
  justify-content: center;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  opacity: 0.9;
  font-family: var(--font-body);
}

.footer-links a:hover {
  color: var(--gold);
  opacity: 1;
  transform: translateX(5px);
}

.footer-links p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  font-family: var(--font-body);
}

.footer-bottom {
  text-align: center;
  padding-top: 10px;
  margin-top: 10px;
  font-size: 13px;
  opacity: 0.9;
  color: white;
  font-family: 'Cormorant Garamond', serif;
}

.copyright {
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
}

#about .container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

@keyframes gentlePulse {
  0%, 100% {
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.28);
  }
  50% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  }
}

/* ── SERVİSLER GRID ── */
#services .services-card-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

#services .service-slide-card {
  height: 150px;
  cursor: default;
}

#services .slide-image-background {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    #0a192f 0%,
    #132a4d 40%,
    #0f223d 70%,
    #0a192f 100%
  ) !important;
  filter: brightness(1.08) saturate(1.05);
  z-index: -1;
}

.section-title-bar {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 2rem;
}

.section-title-bar-ref {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 2rem;
  color: white;
}

/* ── WHATSAPP ── */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: auto !important;
  max-width: fit-content !important;
  background-color: #25D366;
  color: #ffffff;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  animation: gentlePulse 3s infinite;
}

.whatsapp-button:hover {
  background-color: #128C7E;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.38);
}

.whatsapp-icon {
  width: 5px;
  height: 5px;
  flex-shrink: 0;
}

.whatsapp-icon path {
  transform: scale(0.5);
  transform-origin: center;
}

.whatsapp-text {
  white-space: nowrap;
}

#services-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  max-width: 600px;
  margin: 0 auto;
}

.service-slide-card {
  flex: 0 0 380px;
  height: 420px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  background: transparent;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0);
  border: 1px solid rgba(255, 255, 255, 0.05);
  scroll-snap-align: start;
  object-fit: contain;
}

.service-slide-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.35);
  border-color: var(--gold);
}

.slide-image-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}

.service-slide-card:hover .slide-image-background {
  transform: scale(1.08);
}

.slide-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 25, 47, 0.85) 0%,
    rgba(10, 25, 47, 0.7) 50%,
    rgba(10, 25, 47, 0.9) 100%
  );
  z-index: 2;
  transition: opacity 0.4s ease;
}

.service-slide-card:hover .slide-image-overlay {
  opacity: 0.2;
}

.slide-card-content {
  position: relative;
  z-index: 3;
  padding: 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.service-slide-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: white;
  margin: 0 0 1.5rem 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  padding: 0 1rem;
}

.slide-view-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  text-decoration: none;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  padding: 0.75rem 1.5rem;
  background: rgba(201, 168, 106, 0.15);
  border: 1px solid rgba(201, 168, 106, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.slide-view-more-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.slide-view-more-link:hover {
  background: rgba(201, 168, 106, 0.25);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(201, 168, 106, 0.2);
  color: var(--gold);
  gap: 1rem;
}

.slide-view-more-link:hover::before {
  left: 100%;
}

.slide-view-more-link svg {
  transition: transform 0.3s ease;
}

.slide-view-more-link:hover svg {
  transform: translateX(4px);
}

@keyframes swipeHint {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(10px); }
}

.services-cta {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-slide-card,
.service-slide-card:visited,
.service-slide-card:hover,
.service-slide-card:active,
.service-slide-card:focus {
  color: inherit;
  text-decoration: none;
}

.service-slide-title,
.service-slide-title:visited,
.service-slide-title:hover,
.service-slide-title:active,
.service-slide-title:focus {
  color: white !important;
  text-decoration: none;
}

.slide-view-more-link,
.slide-view-more-link:visited,
.slide-view-more-link:active,
.slide-view-more-link:focus {
  color: white;
  text-decoration: none;
}

.slide-view-more-link:hover {
  color: var(--gold);
}

/* ── ABOUT CONTAINER ── */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 40px;
}

.about-content {
  padding-right: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

#about-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.about-text {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  font-weight: 400;
  letter-spacing: 0.0111em;
}

.about-text p {
  margin-bottom: 1.5rem;
}

.about-image-container {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 30px 60px -15px rgba(10, 25, 47, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.about-image-container:hover .about-image {
  transform: scale(1.05);
}

.about-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(10, 25, 47, 0.05) 0%,
    rgba(128, 0, 32, 0.02) 50%,
    transparent 100%
  );
  z-index: 1;
}

/* ── REFERENCES ── */
#references {
  padding: 6rem 0;
  background: #0a192f;
  width: 100%;
}

.references-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.reference-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}

.reference-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

/* ── YO SECTION ── */
.yo-section {
  padding: 5rem 0;
  background: #fff;
  background-image: url("images/beyazarka.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
}

.yo-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.yo-card {
  border: 1px solid rgba(0,0,0,0.08);
  padding: 2.5rem 2rem;
  transition: 0.3s ease;
}

.yo-card:hover {
  transform: translateY(-4px);
  border-color: #800020;
}

.yo-title {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  position: relative;
}

.yo-title::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #800020;
  display: block;
  margin-top: 8px;
}

.yo-name {
  font-size: 1.2rem;
  color: #800020;
  margin-bottom: 1rem;
}

.yo-text {
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.yo-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.yo-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 0.9rem;
}

.yo-list span {
  color: #666;
  letter-spacing: 0.08em;
}

.yo-org {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.yo-org-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.yo-org-item:hover {
  background: rgba(128,0,32,0.04);
}

.yo-org-item strong {
  display: block;
  font-size: 2rem;
  color: #800020;
}

.yo-org-item span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: #555;
}

/* ── WOOD SLIDER ── */
.wood-slider-area {
  background-image: url("images/ahsap.png");
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  width: 100%;
}

.wood-slider-inner {
  width: 90%;
  max-width: 100%;
  margin: 0 auto;
}

.wood-slider-header {
  text-align: center;
  margin-bottom: 40px;
}

.wood-slider-header h2 {
  font-size: 36px;
  margin-bottom: 12px;
  color: #fff;
}

.wood-slider-header p {
  max-width: 700px;
  margin: 0 auto;
  color: #fff;
  line-height: 1.6;
}

.wood-slider-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.wood-slider-window {
  overflow: hidden;
  width: 100%;
}

.wood-slider-track {
  display: flex;
  transition: transform 0.4s ease;
}

.wood-slide-item {
  min-width: 250px;
  height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 12px;
}

.wood-slide-item img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
}

.wood-slide-item span {
  font-size: 14px;
  color: #fff;
  text-align: center;
  line-height: 1.3;
}

.wood-arrow {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  font-size: 26px;
  padding: 10px 14px;
  cursor: pointer;
}

.left-arrow { margin-right: 10px; }
.right-arrow { margin-left: 10px; }

/* ── DİĞER SAYFALAR ── */
.kurumsal-hero {
  position: relative;
  height: 55vh;
  background-image: url("images/istanbulkurumsal.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.kurumsal-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 25, 47, 0.55);
}

.kurumsal-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.kurumsal-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.kurumsal-hero-content p {
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

body.kurumsal-page .kurumsal-content {
  position: relative;
  padding: 4rem 0;
  width: 100%;
}

body.kurumsal-page .kurumsal-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("images/beyazarka.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  z-index: -1;
}

body.kurumsal-page .kurumsal-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  margin: 2rem 0 1rem;
  color: var(--navy);
}

body.kurumsal-page .kurumsal-content p {
  text-align: justify;
  margin-bottom: 0.6rem;
  line-height: 1.65;
  font-size: 1rem;
}

body.kariyer-page {
  background: url("images/beyazarka.png") repeat;
}

.kariyer-hero {
  position: relative;
  width: 100%;
  height: 280px;
  background: url("images/istanbullbusiness.jpeg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kariyer-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.kariyer-hero h1 {
  position: relative;
  z-index: 2;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 1px;
}

.kariyer-content {
  padding: 40px 20px;
}

.kariyer-content .section {
  padding: 30px 0;
}

.kariyer-content h2 { margin-bottom: 12px; }

.kariyer-content p {
  margin-bottom: 12px;
  line-height: 1.6;
  text-align: justify;
}

.kariyer-form {
  max-width: 620px;
  margin: 0 auto;
}

.kariyer-form .form-row { margin-bottom: 12px; }

.kariyer-form label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.kariyer-form input,
.kariyer-form textarea {
  width: 100%;
  padding: 8px 10px;
  font-size: 0.9rem;
}

.kariyer-form textarea {
  resize: vertical;
  min-height: 90px;
}

.kariyer-form input[type="file"] {
  font-size: 0.85rem;
  padding: 6px;
}

.kariyer-form .btn.primary { margin-top: 10px; }

.profile-page .hero {
  position: relative;
  margin-top: 90px;
}

.profile-page .grid {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.profile-page .card { max-width: 100%; }

.profile-page .hero,
.profile-page .grid,
.profile-page .main-footer {
  position: relative;
  z-index: 1;
}

*,
*::before,
*::after {
  font-family: Arial, Helvetica, sans-serif !important;
}

/* ── HESAP ── */
.fancy-hesap {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  padding: 80px 0;
  color: #fff;
}

.hesap-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.hesap-header h2 { font-size: 36px; margin-bottom: 15px; }

.hesap-card {
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 35px;
  max-width: 600px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
}

.hesap-card.glow {
  box-shadow: 0 0 40px rgba(255,255,255,0.15);
}

.hesap-bank {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.bank-icon { font-size: 28px; }

.hesap-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.hesap-label { opacity: 0.8; }
.hesap-value { font-weight: 600; }

.iban {
  letter-spacing: 1px;
  font-family: monospace;
}

.hesap-page .kurumsal-hero {
  margin-top: 90px;
  min-height: calc(100vh - 90px);
}

.hesap-page { padding-top: 90px; }

/* ── SERVİS OVERLAY ── */
#services .slide-image-overlay {
  background: linear-gradient(
    to bottom,
    rgba(10, 25, 47, 0.9) 0%,
    rgba(58, 15, 27, 0.85) 60%,
    rgba(10, 25, 47, 0.95) 100%
  ) !important;
}

#services-h {
  color: var(--gold) !important;
  text-shadow: 0 3px 14px rgba(0,0,0,0.45);
  letter-spacing: 0.06em;
}

#references::before,
#references.wood-slider-area::before {
  background: linear-gradient(
    135deg,
    #0a192f 0%,
    #132a4d 40%,
    #0f223d 70%,
    #0a192f 100%
  ) !important;
  filter: brightness(1.08) saturate(1.05);
}

#references .wood-slider-header h2 {
  color: var(--gold) !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#references .wood-slide-item {
  background: #ffffff !important;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 18px !important;
  box-shadow: 0 10px 26px rgba(0,0,0,0.35);
  transition: all .35s ease;
}

#references .wood-slide-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.55);
  border-color: var(--gold);
}

#references .wood-slide-item span {
  color: #5a1422 !important;
  font-weight: 600;
}

#references .wood-slide-item img {
  max-height: 70px;
  filter: contrast(1.05);
}

#references .wood-slider-inner > div {
  grid-template-columns: repeat(4, 1fr) !important;
}

/* ── SECTION ── */
.section {
  padding: 0;
  position: relative;
  scroll-margin-top: 140px;
  width: 100%;
}

.section + .section { padding-top: 0 !important; }

#about + #services    { margin-top: -80px !important; }
#services + .yo-section { margin-top: -80px !important; }
.yo-section + #references { margin-top: -80px !important; }
#references + #contact { margin-top: -80px !important; }

#contact {
  padding: 6rem 0;
  background: var(--ivory);
  width: 100%;
  position: relative;
}

#contact-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  margin-bottom: 3rem;
}

.contact-centered {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(10, 25, 47, 0.1);
}

/* ── FOOTER SOCIAL ── */
.footer-social-icons {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.footer-social-icons a {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.footer-social-icons img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social-icons img:hover {
  transform: scale(1.06);
  opacity: 1;
}

.kvkk-accept {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 15px;
}

.kvkk-accept label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.kvkk-accept input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.footer-copyright {
  margin-top: 15px;
  font-size: 13px;
  color: white;
  text-align: center;
}

/* ── MODERN TEXT BLOCK ── */
.modern-text-block {
  margin-top: 140px !important;
  background-image: url("images/beyazarka.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0 !important;
  width: 100%;
}

.modern-text-block p { text-align: justify; }

/* ════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
   ════════════════════════════════════════ */
@media (max-width: 1024px) {

  .nav { height: 70px; }

  .nav-inner {
    padding: 0 16px;
    display: flex;
    align-items: center;
  }

  .logo { height: 55px; }

  .headerindex {
    font-size: 1.6rem;
    height: 60px;
    display: flex;
    align-items: center;
    line-height: 1;
    margin: 0;
  }

  .brand-combo span { font-size: 0.85rem; }

  /* MOBİL MENÜ */
  #main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--nav-bg);
    display: none;
    z-index: 9999;
  }

  #main-nav.open { display: block !important; }

  #main-nav ul {
    flex-direction: column;
    padding: 10px 0;
    align-items: center;
    justify-content: center;
  }

  #main-nav a {
    padding: 12px 0;
    font-size: 1rem;
    text-align: center;
    width: 100%;
  }

  /* HERO */
  .hero {
    min-height: auto;
    height: auto;
    padding-top: 90px;
    padding-bottom: 60px;
  }

  .hero::after {
    font-size: 11px;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
  }

  .hero-left { margin-top: -20px; }
  .hero-left h1 { font-size: 1.6rem; }
  .hero-left .lead { font-size: 1rem; }

  /* SECTIONS */
  .section {
    padding: 2rem 0;
    margin: 0;
  }

  .section h2,
  .section h3 { margin-bottom: 1rem; }

  .section .container {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  /* ABOUT */
  .about-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 0;
  }

  .about-image-container {
    height: 300px;
    margin-bottom: 1.5rem;
  }

  #about + #services { margin-top: 0 !important; }

  /* SERVICES */
  #services {
    transform: none;
    font-size: 1em;
    background: linear-gradient(
      135deg,
      #0a192f 0%,
      #132a4d 40%,
      #0f223d 70%,
      #0a192f 100%
    ) !important;
  }

  #services .services-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  #services .service-slide-card {
    height: auto;
    min-height: 140px;
  }

  .service-slide-title {
    font-size: 1.1rem;
    text-align: center;
    padding: 0 8px;
  }

  .slide-view-more-link {
    display: inline-flex;
    width: auto;
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    white-space: nowrap;
    position: relative;
    z-index: 20;
  }

  .slide-card-content {
    padding: 1.2rem;
    z-index: 20;
  }

  /* TEAM */
  #team .team-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }

  #team .team-card {
    max-width: 100%;
    width: 100%;
  }

  #team .team-card img {
    height: 260px;
    object-fit: cover;
  }

  /* YO SECTION */
  .yo-wrap {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .yo-org {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1rem;
  }

  .yo-org-item {
    min-width: 0;
    overflow: hidden;
    padding: 1rem 0.5rem;
  }

  .yo-org-item * {
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .yo-org-item strong {
    font-size: 1.4rem;
    line-height: 1;
    white-space: normal;
    display: block;
    margin-bottom: 4px;
  }

  /* REFERENCES */
  #references .wood-slider-inner > div {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }

  .wood-slide-item { height: auto; }

  /* CONTACT */
  #contact { padding: 3rem 0; }

  /* WHATSAPP */
  .whatsapp-button {
    right: 8px;
    transform: scale(0.75);
    transform-origin: right bottom;
  }

  /* MODERN TEXT */
  .modern-text-block {
    margin-top: 90px !important;
    padding: 2.5rem 0 !important;
  }

  /* GRID 2 COL → 1 COL */
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════
   RESPONSIVE — TELEFON (max 480px)
   ════════════════════════════════════════ */
@media (max-width: 480px) {

  .brand-combo span { display: none; }

  .hero-left h1 { font-size: 1.3rem; }
  .hero-left .lead { font-size: 0.95rem; }

  #services .services-card-grid {
    grid-template-columns: 1fr;
  }

  .service-slide-title { font-size: 1rem; }

  .slide-view-more-link {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .yo-org {
    grid-template-columns: 1fr;
  }

  .contact-centered {
    padding: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  #services-h { font-size: 2rem; }
  #about-h    { font-size: 2rem; }
  #contact-h  { font-size: 2rem; }

  .kariyer-hero h1 {
    font-size: 1.4rem;
    text-align: center;
  }

  .kariyer-content { padding: 30px 15px; }
}
@media (min-width: 1025px) {
  .main-footer .footer-contact-col {
    text-align: left !important;
    max-width: 300px;
    margin: 0 auto;
  }
  .main-footer .footer-contact-col h4,
  .main-footer .footer-contact-col a,
  .main-footer .footer-contact-col p {
    text-align: left !important;
    display: block !important;
  }
}