﻿/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #A07830;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --dark3: #222222;
  --gray: #888888;
  --light-gray: #CCCCCC;
  --white: #F5F5F5;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --transition: 0.3s ease;
  --shadow: 0 8px 40px rgba(0,0,0,0.5);
  --shadow-gold: 0 4px 30px rgba(201,168,76,0.2);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gold {
  color: var(--gold);
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.97);
  padding: 1rem 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.6);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  max-height: 55px;
  height: auto;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 4px;
}

.logo-sub {
  font-size: 0.55rem;
  letter-spacing: 6px;
  color: var(--light-gray);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--light-gray);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--gold);
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

/* ===========================
   HERO SLIDER — CINEMATIC PREMIUM
=========================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
  opacity: 1;
}

/* Overlay — ortalanmış tasarım için eşit dağılım */
.slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.45) 0%,
      rgba(5,5,5,0.50) 40%,
      rgba(0,0,0,0.60) 100%
    );
}

/* Sol taraf dikey gold çizgi — kaldırıldı (ortalanmış tasarım) */
.slide::after {
  display: none;
}

/* İçerik — ortalanmış */
.slide-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 4vw 0;
}

/* Üst etiket */
.hero-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: heroLineUp 0.7s 0.2s cubic-bezier(0.4,0,0.2,1) forwards;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

.hero-tag::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.7;
}

/* Ana başlık */
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroLineUp 0.8s 0.4s cubic-bezier(0.4,0,0.2,1) forwards;
}

.hero-title .gold {
  color: var(--gold);
  font-style: italic;
}

/* Açıklama */
.hero-desc {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: rgba(204,204,204,0.85);
  line-height: 1.8;
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: heroLineUp 0.8s 0.6s cubic-bezier(0.4,0,0.2,1) forwards;
}

/* Butonlar */
.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroLineUp 0.8s 0.8s cubic-bezier(0.4,0,0.2,1) forwards;
}

/* Sağ taraf — istatistik paneli */
.hero-stats {
  position: absolute;
  right: 5vw;
  bottom: 8rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  opacity: 0;
  animation: heroFadeIn 1s 1s ease forwards;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 1.1rem 1.4rem;
  border-right: 1px solid rgba(201,168,76,0.35);
  position: relative;
}

.hero-stat-item + .hero-stat-item {
  border-top: 1px solid rgba(255,255,255,0.05);
}

.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -1px;
}

.hero-stat-label {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(200,200,200,0.55);
  margin-top: 0.3rem;
}

/* Slider navigasyon — minimal */
.slider-btn {
  position: absolute;
  bottom: 3.5rem;
  z-index: 10;
  background: transparent;
  border: 1px solid rgba(201,168,76,0.3);
  color: rgba(201,168,76,0.7);
  width: 44px;
  height: 44px;
  border-radius: 0;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: rgba(201,168,76,0.12);
  border-color: var(--gold);
  color: var(--gold);
}

.slider-prev { left: 6vw; }
.slider-next { left: calc(6vw + 52px); }

/* Dots — sol altta */
.slider-dots {
  position: absolute;
  bottom: 4.2rem;
  left: calc(6vw + 120px);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dot {
  width: 20px;
  height: 1px;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
}

.dot.active {
  background: var(--gold);
  width: 40px;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  right: 5vw;
  bottom: 3rem;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.45;
}

.hero-scroll-text {
  font-size: 0.6rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--light-gray);
  writing-mode: vertical-rl;
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* Slide geçiş animasyonları */
@keyframes heroLineUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Aktif slide animasyonları sıfırla */
.slide:not(.active) .slide-content > * {
  animation: none;
  opacity: 0;
}

.slide.active .hero-tag {
  animation: heroLineUp 0.7s 0.2s cubic-bezier(0.4,0,0.2,1) forwards;
}
.slide.active .hero-title {
  animation: heroLineUp 0.8s 0.4s cubic-bezier(0.4,0,0.2,1) forwards;
}
.slide.active .hero-desc {
  animation: heroLineUp 0.8s 0.6s cubic-bezier(0.4,0,0.2,1) forwards;
}
.slide.active .hero-btns {
  animation: heroLineUp 0.8s 0.8s cubic-bezier(0.4,0,0.2,1) forwards;
}

/* Hero responsive */
@media (max-width: 900px) {
  .hero-stats {
    display: none;
  }

  .slide-content {
    padding: 0 2rem;
    max-width: 100%;
    padding-top: 70px;
  }

  .slider-prev { left: 2rem; }
  .slider-next { left: calc(2rem + 52px); }

  .slider-dots {
    left: calc(2rem + 120px);
  }

  .hero-scroll {
    right: 2rem;
  }
}

@media (max-width: 600px) {
  .hero {
    min-height: 600px;
  }

  .hero-title {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .hero-btns .btn {
    width: auto;
  }

  .slider-dots {
    display: none;
  }
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201,168,76,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(201,168,76,0.5);
}

.btn-outline:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.full-width {
  width: 100%;
  text-align: center;
}

/* ===========================
   SECTION HEADERS
=========================== */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header.left {
  text-align: left;
}

.section-tag {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 0 auto;
}

.section-header.left .gold-line {
  margin: 0;
}

/* ===========================
   SERVICES
=========================== */
.services {
  padding: 8rem 0;
  background: var(--dark);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  transform: translateY(0);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.55) 0%, rgba(26,26,26,0.48) 100%);
  z-index: 0;
  transition: all 0.4s ease;
}

.service-card:hover::after {
  background: linear-gradient(135deg, rgba(201,168,76,0.15) 0%, rgba(10,10,10,0.35) 100%);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(to bottom, var(--gold-light), var(--gold), var(--gold-dark));
  transition: height 0.5s ease;
  z-index: 2;
  box-shadow: 0 0 15px var(--gold);
}

/* Her kart için özel arka plan görselleri */
.service-card:nth-child(1)  { background-image: url('images/Parepet Kaplama/BGWI2089.JPG'); }
.service-card:nth-child(2)  { background-image: url('images/Totem Tabela/WhatsApp Image 2026-05-16 at 10.33.56.jpeg'); }
.service-card:nth-child(3)  { background-image: url('images/Çatı Tabelası/DBWY9852.JPG'); }
.service-card:nth-child(4)  { background-image: url('images/Paneli Çit Örgü Tel/GTTM9180.JPG'); }
.service-card:nth-child(5)  { background-image: url('images/Tabela İmalatı/ACSK4132.JPG'); }
.service-card:nth-child(6)  { background-image: url('images/OSB Kapama Parapet/CCRO4735.JPG'); }
.service-card:nth-child(7)  { background-image: url('images/Reklam Panosu/FGYL9619.JPG'); }
.service-card:nth-child(8)  { background-image: url('images/Dijital Baskı& Dekor Folyo/HOIK4784.JPG'); }
.service-card:nth-child(9)  { background-image: url('images/Kutu Harf/CESF8501.JPG'); }
.service-card:nth-child(10) { background-image: url('images/Kule Vinç Tabelaları/DVWK8419.JPG'); }
.service-card:nth-child(11) { background-image: url('images/Tarpez Sac Kapama/BXKR0011.JPG'); }
.service-card:nth-child(12) { background-image: url('images/3D ABS Kapama/WhatsApp Image 2026-05-16 at 10.32.18.jpeg'); }
.service-card:nth-child(13) { background-image: url('images/Yönlendirme Tabelaları/BEWN7732.JPG'); }
.service-card:nth-child(14) { background-image: url('images/Cam Filmi/BKBF5057.JPG'); }
.service-card:nth-child(15) { background-image: url('images/Kapı İsimlikleri/CQJY9315.JPG'); }
.service-card:nth-child(16) { background-image: url('images/Fuar Stand/WhatsApp Image 2026-05-16 at 10.36.34.jpeg'); }
.service-card:nth-child(17) { background-image: url('images/Cephe Reklam Uygulamaları/CNKI0402.JPG'); }
.service-card:nth-child(18) { background-image: url('images/Dükkan Kaplama/FCQW3938.JPG'); }
.service-card:nth-child(19) { background-image: url('images/Eko Wood Çevre Kapama/WhatsApp Image 2026-05-16 at 10.44.59.jpeg'); }
.service-card:nth-child(20) { background-image: url('images/Ruhsat Tabelsı/CAAQ5925.JPG'); }

.service-card:hover {
  border-color: rgba(201,168,76,0.6);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 50px rgba(201,168,76,0.4), 0 0 30px rgba(201,168,76,0.2);
}

.service-card:hover::before {
  height: 100%;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  border: 2px solid rgba(201,168,76,0.3);
  box-shadow: 0 4px 15px rgba(201,168,76,0.2);
}

.service-icon i {
  font-size: 1.3rem;
  color: var(--gold);
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 8px 25px rgba(201,168,76,0.5);
  border-color: var(--gold-light);
}

.service-card:hover .service-icon i {
  color: var(--black);
  transform: scale(1.1);
}

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  transition: all 0.3s ease;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.service-card:hover h3 {
  color: var(--gold-light);
  transform: translateX(5px);
  text-shadow: 2px 2px 8px rgba(201,168,76,0.4);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--light-gray);
  line-height: 1.7;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.service-card:hover p {
  color: var(--white);
}

/* ===========================
   ABOUT
=========================== */
.about {
  padding: 8rem 0;
  background: var(--black);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text p {
  color: var(--light-gray);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.9;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
}

.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-box {
  width: 380px;
  height: 420px;
  background: linear-gradient(135deg, var(--dark2), var(--dark3));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-img-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 60%);
}

.about-img-inner {
  text-align: center;
  z-index: 1;
}

.about-img-inner i {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
}

.about-img-inner p {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--light-gray);
  letter-spacing: 2px;
}

/* ===========================
   CONTACT
=========================== */
.contact {
  padding: 8rem 0;
  background: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.contact-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,168,76,0.2);
}

.contact-icon i {
  color: var(--gold);
  font-size: 1rem;
}

.contact-item h4 {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.contact-item p {
  font-size: 0.9rem;
  color: var(--light-gray);
  line-height: 1.7;
}

.contact-item a {
  color: var(--light-gray);
}

.contact-item a:hover {
  color: var(--gold);
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 2px;
  padding: 1rem 1.25rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(201,168,76,0.5);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.07);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--gray);
  letter-spacing: 1px;
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image {
    display: none;
  }

  .contact-grid,
  .contact-page .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(10,10,10,0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    border-left: 1px solid rgba(201,168,76,0.15);
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .hamburger {
    display: flex;
    z-index: 1000;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .services {
    padding: 5rem 0;
  }

  .about {
    padding: 5rem 0;
  }

  .contact {
    padding: 5rem 0;
  }

  .about-stats {
    gap: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   ABOUT PILLARS
=========================== */
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.pillar {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.1);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.25rem;
  border-radius: 2px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.pillar:hover {
  border-color: rgba(201,168,76,0.35);
  box-shadow: var(--shadow-gold);
}

.pillar-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.pillar-title i {
  font-size: 0.65rem;
  color: #CC1111;
}

.pillar p {
  font-size: 0.82rem !important;
  color: var(--gray) !important;
  line-height: 1.7;
  margin-bottom: 0 !important;
}

/* ===========================
   REFERENCES
=========================== */
.references {
  padding: 8rem 0;
  background: var(--black);
}

/* Proje Galerisi */
.project-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.gallery-item {
  position: relative;
  height: 320px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(201,168,76,0.2);
  transition: all 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 1;
  transition: all 0.4s ease;
}

.gallery-overlay h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 0.3rem;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.gallery-overlay p {
  font-size: 0.85rem;
  color: var(--light-gray);
  letter-spacing: 1px;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.gallery-item:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(201,168,76,0.3);
  transform: translateY(-5px);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  background: linear-gradient(to top, rgba(201,168,76,0.8) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
}

.gallery-item:hover .gallery-overlay h4 {
  transform: translateY(-5px);
  color: var(--white);
}

.gallery-item:hover .gallery-overlay p {
  transform: translateY(-5px);
  color: var(--white);
}

.ref-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1.2rem;
}

.ref-item {
  background: var(--dark2);
  padding: 1.8rem 1.2rem;
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 4px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.ref-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(201,168,76,0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ref-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(201,168,76,0.15), transparent);
  transition: height 0.4s ease;
}

.ref-item:hover::before {
  opacity: 1;
}

.ref-item:hover::after {
  height: 100%;
}

.ref-item:hover {
  background: var(--dark3);
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(201,168,76,0.25);
}

.ref-item img {
  max-height: 50px;
  max-width: 130px;
  width: auto;
  object-fit: contain;
  transition: all 0.4s ease;
}

.ref-item:hover img {
  transform: scale(1.1);
}

.ref-item span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--gray);
  letter-spacing: 0.5px;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.ref-item:hover span {
  color: var(--gold-light);
  transform: translateY(-2px);
}

.ref-item--text-only {
  justify-content: center;
}
.ref-item--text-only span {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  color: var(--gold);
  letter-spacing: 0.02em;
}


/* ===========================
   PAGE HERO — GLASSMORPHISM CARD
=========================== */
.page-hero {
  position: relative;
  height: clamp(520px, 65vh, 680px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 0;
}

/* Background image layer */
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  transition: transform 10s ease;
  will-change: transform;
}

.page-hero:hover .page-hero-bg {
  transform: scale(1.06);
}

/* Sinematik overlay — tüm yönlerden koyulasan */
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.55) 0%,
      rgba(5,5,5,0.60) 40%,
      rgba(0,0,0,0.70) 100%
    ),
    linear-gradient(105deg,
      rgba(5,5,5,0.55) 0%,
      rgba(0,0,0,0.25) 50%,
      rgba(5,5,5,0.55) 100%
    );
}

/* Sol dikey gold cizgi — kaldırıldı (ortalanmış tasarım) */
.page-hero::before {
  display: none;
}

/* Alt gold cizgi */
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,168,76,0.5) 30%,
    rgba(201,168,76,0.5) 70%,
    transparent 100%
  );
  z-index: 5;
}

/* İçerik — ortalanmış, kart içinde */
.page-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 2rem 2rem;
  animation: heroLineUp 0.8s 0.1s cubic-bezier(0.4,0,0.2,1) both;
}

/* Glassmorphism kart */
.page-hero-card {
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(32px) saturate(1.4);
  -webkit-backdrop-filter: blur(32px) saturate(1.4);
  border: 1px solid rgba(201,168,76,0.30);
  border-radius: 16px;
  padding: 3rem 3.5rem;
  max-width: 620px;
  width: 100%;
  text-align: center;
  box-shadow:
    0 12px 70px rgba(0,0,0,0.70),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 1px 0 rgba(201,168,76,0.18) inset;
  position: relative;
  overflow: hidden;
}

/* Kart üst gold parlama */
.page-hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.6), transparent);
}

/* Kart alt gold çizgi */
.page-hero-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

/* Üst ikon */
.page-hero-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.08));
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.page-hero-icon i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* Üst etiket */
.page-hero-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  opacity: 0.9;
}

.page-hero-tag::before {
  display: none;
}

.page-hero-tag i {
  display: inline;
  font-size: 0.65rem;
  opacity: 0.8;
}

/* Ana başlık */
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 1.1rem;
}

.page-hero-title span {
  color: var(--gold);
  font-style: italic;
}

/* Açıklama */
.page-hero-desc {
  font-size: clamp(0.85rem, 1.4vw, 0.95rem);
  color: rgba(204,204,204,0.78);
  line-height: 1.75;
  font-weight: 300;
  max-width: 460px;
  margin: 0 auto 1.6rem;
}

/* Divider — gizle */
.page-hero-divider {
  display: none;
}

.page-hero-divider-dot {
  display: none;
}

/* Breadcrumb — ortalanmış */
.page-hero-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  color: rgba(180,180,180,0.55);
  letter-spacing: 0.5px;
  padding: 0.5rem 1.2rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 50px;
}

.page-hero-breadcrumb a {
  color: rgba(180,180,180,0.65);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.page-hero-breadcrumb a:hover {
  color: var(--gold);
}

.page-hero-breadcrumb .sep {
  color: rgba(201,168,76,0.4);
  font-size: 0.55rem;
}

.page-hero-breadcrumb .current {
  color: rgba(201,168,76,0.85);
  font-weight: 400;
}

/* Scroll indicator — gizle */
.page-hero-scroll {
  display: none;
}

/* Responsive */
@media (max-width: 600px) {
  .page-hero-card {
    padding: 2rem 1.5rem;
    border-radius: 12px;
  }

  .page-hero-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }
}

/* Legacy support */
.page-header {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--black) 100%);
  background-image: url('images/Arka Pont.png');
  background-size: cover;
  background-position: center;
  margin-top: 80px;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(10,10,10,0.62) 100%);
}

.page-header .container {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.page-header p {
  font-size: 1.1rem;
  color: var(--light-gray);
  margin-bottom: 1.5rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray);
}

.breadcrumb a {
  color: var(--light-gray);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span:last-child {
  color: var(--gold);
}

/* ===========================
   PAGE HERO — RESPONSIVE
=========================== */
@media (max-width: 768px) {
  .page-hero {
    height: auto;
    min-height: 380px;
    padding-top: 70px;
    align-items: flex-end;
  }

  .page-hero-content {
    padding: 0 2rem 2.5rem;
  }

  .page-hero-title {
    font-size: clamp(1.9rem, 7vw, 2.6rem);
  }

  .page-hero-desc {
    font-size: 0.88rem;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .page-hero-content {
    padding: 0 1.5rem 2rem;
  }

  .page-hero-title {
    font-size: 1.8rem;
  }
}

/* ===========================
   ABOUT PREVIEW
=========================== */
.about-preview {
  padding: 8rem 0;
  background: var(--black);
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-preview-text p {
  color: var(--light-gray);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  line-height: 1.9;
}

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.1) 0%, rgba(10,10,10,0.5) 100%);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.cta-content {
  text-align: center;
}

.cta-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===========================
   FOOTER GRID
=========================== */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--gray);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--gray);
}

.footer-contact li i {
  color: var(--gold);
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(201,168,76,0.1);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-bottom-inner span {
  font-size: 0.8rem;
  color: var(--gray);
}

.vista-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.4rem 1rem;
  border-radius: 3px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.vista-link:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.06);
}

@media (max-width: 600px) {
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ===========================
   FLOAT BUTTONS (WhatsApp + Phone)
=========================== */
.float-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 999;
}

.whatsapp-float {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
  color: white;
}

.phone-float {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #C9A84C, #A07830);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  transition: all 0.3s ease;
  animation: pulsegold 2s infinite;
}

.phone-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(201, 168, 76, 0.6);
  color: var(--black);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50%       { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

@keyframes pulsegold {
  0%, 100% { box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4); }
  50%       { box-shadow: 0 4px 30px rgba(201, 168, 76, 0.7); }
}

/* ===========================
   SERVICE LINK
=========================== */
.service-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.service-card:hover .service-link {
  opacity: 1;
  transform: translateX(0);
}

/* ===========================
   ABOUT CONTENT
=========================== */
.about-content {
  padding: 5rem 0;
  background: var(--black);
}

/* ===========================
   WHY US
=========================== */
.why-us {
  padding: 8rem 0;
  background: var(--dark);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.why-card {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 2.5rem 2rem;
  border-radius: 4px;
  text-align: center;
  transition: all 0.4s ease;
}

.why-card:hover {
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.25);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  border: 2px solid rgba(201,168,76,0.3);
  transition: all 0.4s ease;
}

.why-icon i {
  font-size: 1.8rem;
  color: var(--gold);
  transition: all 0.4s ease;
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  transform: scale(1.1) rotate(5deg);
}

.why-card:hover .why-icon i {
  color: var(--black);
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===========================
   SERVICES PAGE
=========================== */
.services-page {
  padding: 5rem 0;
  background: var(--dark);
}

/* ===========================
   CONTACT PAGE
=========================== */
.contact-page {
  padding: 6rem 0;
  background: var(--black);
}

.contact-page .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: stretch;
}

/* Her iki kolon da glassmorphism kart */
.contact-page .contact-info-section,
.contact-page .contact-form {
  background: rgba(10, 10, 10, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 14px;
  padding: 2.5rem;
  box-shadow:
    0 8px 50px rgba(0,0,0,0.50),
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 1px 0 rgba(201,168,76,0.12) inset;
  position: relative;
  overflow: hidden;
}

/* Üst gold parlama çizgisi */
.contact-page .contact-info-section::before,
.contact-page .contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent);
}

/* İletişim bilgi satırları */
.contact-page .contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 2rem;
}

.contact-page .contact-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.contact-page .contact-item:first-child {
  border-top: 1px solid rgba(201,168,76,0.08);
}

.contact-page .contact-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
}

.contact-page .contact-icon i {
  color: var(--gold);
  font-size: 0.95rem;
}

.contact-page .contact-item h4 {
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.contact-page .contact-item p {
  font-size: 0.88rem;
  color: var(--light-gray);
  line-height: 1.7;
}

.contact-page .contact-item a {
  color: var(--light-gray);
  transition: color var(--transition);
}

.contact-page .contact-item a:hover {
  color: var(--gold);
}

/* Form */
.contact-page .contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form-header {
  margin-bottom: 0.25rem;
}

.contact-form-header h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 700;
  margin-top: 0.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-page .contact-form label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(180,180,180,0.55);
  margin-bottom: 0.4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.contact-page .form-group input,
.contact-page .form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.contact-page .form-group input::placeholder,
.contact-page .form-group textarea::placeholder {
  color: rgba(150,150,150,0.4);
}

.contact-page .form-group input:focus,
.contact-page .form-group textarea:focus {
  border-color: rgba(201,168,76,0.45);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.07);
}

.contact-page .form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-page .contact-form select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color var(--transition);
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
}

.contact-page .contact-form select option {
  background: var(--dark2);
  color: var(--white);
}

.contact-page .contact-form select:focus {
  border-color: rgba(201,168,76,0.45);
  box-shadow: none;
}

/* Responsive */
@media (max-width: 900px) {
  .contact-page .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ===========================
   MAP SECTION
=========================== */
.map-section {
  padding: 5rem 0;
  background: var(--black);
}

.map-container {
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}

/* ===========================
   HAKKIMIZDA PAGE
=========================== */

/* Stats Bar */
.about-stats-bar {
  background: var(--dark2);
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 3rem 0;
}

.stats-bar-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stats-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 3.5rem;
  text-align: center;
}

.stats-bar-num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stats-bar-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
}

.stats-bar-divider {
  width: 1px;
  height: 60px;
  background: rgba(201,168,76,0.2);
}

/* About Intro */
.about-intro-section {
  padding: 7rem 0;
  background: var(--black);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-intro-text p {
  color: var(--light-gray);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.about-intro-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50px;
  padding: 0.45rem 1rem;
  font-size: 0.78rem;
  color: var(--gold-light);
  font-weight: 500;
}

.about-badge i {
  color: var(--gold);
  font-size: 0.7rem;
}

/* About Visual Card */
.about-visual-card {
  background: rgba(10,10,10,0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 12px 60px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}

.about-visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.5), transparent);
}

.about-visual-top {
  text-align: center;
  padding-bottom: 1.5rem;
}

.about-visual-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.about-visual-divider {
  height: 1px;
  background: rgba(201,168,76,0.12);
  margin: 1.5rem 0;
}

.about-visual-label {
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.about-visual-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.about-visual-tags span {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  color: var(--light-gray);
}

.about-visual-cta {
  margin-top: 1.5rem;
}

/* Mission Vision */
.mission-vision-section {
  padding: 6rem 0;
  background: var(--dark);
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.mv-card {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mv-card:hover {
  border-color: rgba(201,168,76,0.4);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.15);
}

.mv-card:hover::before {
  opacity: 1;
}

.mv-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
}

.mv-icon i {
  font-size: 1.4rem;
  color: var(--gold);
}

.mv-card:hover .mv-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
}

.mv-card:hover .mv-icon i {
  color: var(--black);
}

.mv-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.mv-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.8;
}

/* Why Us */
.why-us-section {
  padding: 7rem 0;
  background: var(--black);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}

.why-us-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 10px;
  padding: 2rem;
  transition: all 0.35s ease;
}

.why-us-card:hover {
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.12);
}

.why-us-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.why-us-icon i {
  font-size: 1.2rem;
  color: var(--gold);
}

.why-us-card:hover .why-us-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
}

.why-us-card:hover .why-us-icon i {
  color: var(--black);
}

.why-us-content h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.why-us-content p {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.75;
}

/* Process Timeline */
.process-section {
  padding: 7rem 0;
  background: var(--dark);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}

.process-timeline-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 10px;
  padding: 2rem;
  transition: all 0.35s ease;
}

.process-timeline-item:hover {
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 8px 30px rgba(201,168,76,0.1);
}

.process-timeline-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  min-width: 60px;
  transition: color 0.35s ease;
}

.process-timeline-item:hover .process-timeline-num {
  color: rgba(201,168,76,0.5);
}

.process-timeline-content h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}

.process-timeline-content p {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.75;
}

/* About Refs */
.about-refs-section {
  padding: 6rem 0;
  background: var(--black);
}

.about-refs-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  background: rgba(10,10,10,0.6);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 16px;
  padding: 3.5rem;
  backdrop-filter: blur(10px);
}

.about-refs-text p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-top: 1rem;
}

.about-refs-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.about-ref-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 8px;
  padding: 1.25rem 0.75rem;
  text-align: center;
  transition: all 0.3s ease;
}

.about-ref-logo-item:hover {
  border-color: rgba(201,168,76,0.3);
  background: rgba(201,168,76,0.05);
}

.about-ref-logo-item i {
  font-size: 1.5rem;
  color: var(--gold);
  opacity: 0.7;
}

.about-ref-logo-item span {
  font-size: 0.68rem;
  color: var(--gray);
  line-height: 1.3;
  text-align: center;
}

/* Responsive */
@media (max-width: 900px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .mv-grid {
    grid-template-columns: 1fr;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .about-refs-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2rem;
  }

  .stats-bar-item {
    padding: 1rem 2rem;
  }

  .stats-bar-divider {
    display: none;
  }

  .stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* ===========================
   BLOG SECTION
=========================== */
.blog-section {
  padding: 5rem 0;
  background: var(--black);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2.5rem;
}

.blog-card {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.blog-card:hover {
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.25);
}

.blog-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
}

.blog-content {
  padding: 2rem;
}

.blog-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: var(--gray);
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-meta i {
  color: var(--gold);
}

.blog-content h2 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-content h2 a {
  color: var(--white);
  transition: color var(--transition);
}

.blog-content h2 a:hover {
  color: var(--gold);
}

.blog-content p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: all var(--transition);
}

.blog-link:hover {
  gap: 0.75rem;
}

/* ===========================
   BLOG DETAIL PAGE
=========================== */
.blog-detail-section {
  padding: 5rem 0;
  background: var(--black);
}

.blog-detail-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
}

.blog-detail-content {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 8px;
  padding: 3rem;
}

.blog-detail-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  font-size: 0.8rem;
  color: var(--gray);
}

.blog-detail-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-detail-meta i {
  color: var(--gold);
}

.blog-detail-intro {
  font-size: 1.05rem !important;
  color: var(--light-gray) !important;
  line-height: 1.85 !important;
  margin-bottom: 2.5rem !important;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.blog-detail-content h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.blog-detail-content h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin: 1.75rem 0 0.75rem;
}

.blog-detail-content p {
  font-size: 0.95rem;
  color: var(--light-gray);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.blog-detail-content ul,
.blog-detail-content ol {
  margin: 1rem 0 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.blog-detail-content li {
  font-size: 0.95rem;
  color: var(--light-gray);
  line-height: 1.7;
}

.blog-detail-content li strong {
  color: var(--gold-light);
}

.blog-detail-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,168,76,0.12);
}

/* Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 8px;
  padding: 1.75rem;
}

.sidebar-widget h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201,168,76,0.12);
}

.sidebar-widget p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
}

.sidebar-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-links li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--light-gray);
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color var(--transition);
}

.sidebar-links li a:hover {
  color: var(--gold);
}

.sidebar-links li a i {
  color: var(--gold);
  font-size: 0.6rem;
}

.sidebar-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--light-gray);
  line-height: 1.5;
}

.sidebar-contact i {
  color: var(--gold);
  margin-top: 3px;
  min-width: 14px;
}

.sidebar-contact a {
  color: var(--light-gray);
  transition: color var(--transition);
}

.sidebar-contact a:hover {
  color: var(--gold);
}

@media (max-width: 900px) {
  .blog-detail-grid {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }

  .blog-detail-content {
    padding: 2rem 1.5rem;
  }
}

/* ===========================
   HİZMET SLIDER
=========================== */
.hizmet-slider {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  background: #000;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.hizmet-slider-track {
  display: flex;
  transition: transform 0.4s ease;
}

.hizmet-slider-track img {
  min-width: 100%;
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.hizmet-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.hizmet-slider-btn:hover {
  background: var(--gold, #c9a84c);
  color: #000;
}

.hizmet-slider-btn.prev { left: 12px; }
.hizmet-slider-btn.next { right: 12px; }

.hizmet-slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.hizmet-slider-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: background 0.2s;
}

.hizmet-slider-dots span.active {
  background: var(--gold, #c9a84c);
}

@media (max-width: 768px) {
  .hizmet-slider-track img {
    height: 240px;
  }
}

/* ===========================
   SERVICE DETAIL PAGE
=========================== */
.service-detail {
  padding: 5rem 0;
  background: var(--black);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 4rem;
}

.service-detail-content h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  margin: 2.5rem 0 1.25rem;
}

.service-detail-content p {
  color: var(--light-gray);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
}

.service-list {
  list-style: none;
  margin: 1.5rem 0;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--light-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-list i {
  color: var(--gold);
  margin-top: 4px;
  font-size: 0.9rem;
}

.process-steps {
  margin: 2rem 0;
}

.process-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--dark2);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
}

.process-number {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: var(--font-serif);
}

.process-info h4 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.process-info p {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
}

.faq-section {
  margin: 2rem 0;
}

.faq-item {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 1.5rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.faq-item h4 {
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--light-gray);
  margin: 0;
}

.cta-box {
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(10,10,10,0.5));
  border: 2px solid rgba(201,168,76,0.3);
  padding: 2.5rem;
  border-radius: 4px;
  text-align: center;
  margin-top: 3rem;
}

.cta-box h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--white);
  margin: 0 0 1rem;
}

.cta-box p {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.sidebar-widget {
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 2rem;
  border-radius: 4px;
  margin-bottom: 2rem;
}

.sidebar-widget h3 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.sidebar-services {
  list-style: none;
}

.sidebar-services li {
  margin-bottom: 0.75rem;
}

.sidebar-services a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--light-gray);
  font-size: 0.9rem;
  padding: 0.75rem;
  border-radius: 2px;
  transition: all var(--transition);
}

.sidebar-services a:hover {
  background: rgba(201,168,76,0.1);
  color: var(--gold);
  padding-left: 1rem;
}

.sidebar-services i {
  color: var(--gold);
  font-size: 0.85rem;
}

.sidebar-contact {
  list-style: none;
}

.sidebar-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--light-gray);
}

.sidebar-contact i {
  color: var(--gold);
  margin-top: 3px;
}

.cta-widget {
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(10,10,10,0.5));
  border-color: rgba(201,168,76,0.3);
}

.cta-widget p {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

/* ===========================
   PORTFOLIO / ÇALIŞMALARIMIZ
=========================== */
.portfolio-filter {
  padding: 3rem 0 1rem;
  background: var(--black);
}

.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.filter-btn {
  padding: 0.75rem 1.75rem;
  background: var(--dark2);
  border: 1px solid rgba(201,168,76,0.2);
  color: var(--light-gray);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.portfolio-section {
  padding: 3rem 0 5rem;
  background: var(--black);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.portfolio-item {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.portfolio-image {
  position: relative;
  height: 300px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
  cursor: pointer;
  transition: all 0.4s ease;
}

.portfolio-image:hover {
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.3);
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-image:hover img {
  transform: scale(1.1);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  opacity: 1;
  transition: all 0.4s ease;
}

.portfolio-image:hover .portfolio-overlay {
  background: linear-gradient(to top, rgba(201,168,76,0.9) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
}

.portfolio-overlay h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.portfolio-image:hover .portfolio-overlay h3 {
  transform: translateY(-5px);
  color: var(--black);
}

.portfolio-overlay p {
  font-size: 0.9rem;
  color: var(--light-gray);
  margin-bottom: 0.75rem;
  transform: translateY(0);
  transition: all 0.4s ease;
}

.portfolio-image:hover .portfolio-overlay p {
  transform: translateY(-5px);
  color: var(--black);
}

.portfolio-category {
  display: inline-block;
  padding: 0.4rem 1rem;
  background: rgba(201,168,76,0.2);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid rgba(201,168,76,0.4);
  transition: all 0.4s ease;
}

.portfolio-image:hover .portfolio-category {
  background: var(--black);
  color: var(--gold);
  border-color: var(--gold);
}

/* ===========================
   PORTFOLIO GALLERY (mini slider)
=========================== */
.pf-gallery {
  position: relative;
}

.pf-gallery img {
  transition: opacity 0.15s ease;
}

/* Ok butonları */
.pf-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
}
.pf-gallery:hover .pf-arrow {
  opacity: 1;
}
.pf-prev { left: 8px; }
.pf-next { right: 8px; }
.pf-arrow:hover {
  background: var(--gold);
  color: var(--black);
}

/* Sayaç (1/4) */
.pf-counter {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  z-index: 20;
  letter-spacing: 0.5px;
  pointer-events: none;
}

/* Thumbnail şeridi */
.pf-thumbs {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 4px;
  padding: 6px 8px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  z-index: 10;
  overflow-x: auto;
  scrollbar-width: none;
}
.pf-thumbs::-webkit-scrollbar { display: none; }

.pf-thumb {
  width: 40px;
  height: 30px;
  object-fit: cover;
  border-radius: 3px;
  cursor: pointer;
  opacity: 0.6;
  border: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.pf-thumb.active,
.pf-thumb:hover {
  opacity: 1;
  border-color: var(--gold);
}

/* ===========================
   LIGHTBOX
=========================== */
.lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lb-overlay.active {
  display: flex;
}

.lb-img-wrap {
  width: 75vw;
  height: 70vh;
  max-width: 1000px;
  max-height: 700px;
  min-width: 300px;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.lb-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
  transition: opacity 0.12s ease;
}

.lb-close {
  position: fixed;
  top: 1.2rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 1.3rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10000;
}
.lb-close:hover { background: var(--gold); color: var(--black); }

.lb-arrow {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 2.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 1rem;
  transition: background 0.2s;
  z-index: 10000;
}
.lb-arrow:hover { background: var(--gold); color: var(--black); }

.lb-counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 0.85rem;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 1px;
}

@media (max-width: 600px) {
  .lb-img-wrap { width: 95vw; height: 55vw; min-height: 200px; }
  .lb-arrow { width: 38px; height: 38px; font-size: 1.8rem; margin: 0 0.4rem; }
}

/* ===========================
   RESPONSIVE — NEW SECTIONS
=========================== */
@media (max-width: 900px) {
  .about-preview-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-preview-image {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-pillars {
    grid-template-columns: 1fr;
  }

  .references {
    padding: 5rem 0;
  }

  .ref-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .page-header {
    min-height: 30vh;
    margin-top: 70px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 350px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    font-size: 1.6rem;
  }

  .contact-page .contact-info-section,
  .contact-page .contact-form {
    padding: 2rem;
  }

  .contact-page .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .sidebar-widget {
    padding: 1.5rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    flex-direction: column;
    text-align: center;
  }

  .cta-box {
    padding: 2rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-buttons {
    gap: 0.5rem;
  }

  .filter-btn {
    padding: 0.6rem 1.25rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   ABOUT PREMIUM — ANA SAYFA
=========================== */
.about-premium {
  position: relative;
  padding: 9rem 0;
  background: var(--black);
  overflow: hidden;
}

/* Arka plan gold radial glow */
.about-premium-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center,
    rgba(201,168,76,0.06) 0%,
    rgba(201,168,76,0.02) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.about-premium .container {
  position: relative;
  z-index: 1;
}

/* Grid */
.about-premium-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 5rem;
  align-items: center;
}

/* ---- SOL İÇERİK ---- */
.about-premium-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: apFadeUp 0.7s 0.1s ease forwards;
}

.about-premium-tag span {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.about-premium-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: apFadeUp 0.8s 0.25s ease forwards;
}

.about-premium-title span {
  color: var(--gold);
  font-style: italic;
}

.about-premium-divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: apFadeUp 0.6s 0.35s ease forwards;
}

.about-premium-desc {
  font-size: 0.95rem;
  color: rgba(204,204,204,0.78);
  line-height: 1.9;
  margin-bottom: 1.1rem;
  opacity: 0;
  animation: apFadeUp 0.8s 0.45s ease forwards;
}

/* İstatistikler */
.about-premium-stats {
  display: flex;
  gap: 0;
  margin: 2.5rem 0 2.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  opacity: 0;
  animation: apFadeUp 0.8s 0.55s ease forwards;
}

.about-premium-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 2rem;
  border-right: 1px solid rgba(201,168,76,0.12);
  transition: transform 0.3s ease;
}

.about-premium-stat:last-child {
  border-right: none;
  padding-right: 0;
  padding-left: 2rem;
}

.about-premium-stat:nth-child(2) {
  padding-left: 2rem;
}

.about-premium-stat:hover {
  transform: translateY(-3px);
}

.aps-num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.aps-num em {
  font-style: normal;
  font-size: 1.8rem;
  color: var(--gold-light);
}

.aps-label {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 500;
}

.about-premium-btn {
  opacity: 0;
  animation: apFadeUp 0.7s 0.65s ease forwards;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

/* ---- SAĞ GÖRSEL ---- */
.about-premium-visual {
  position: relative;
  opacity: 0;
  animation: apZoomIn 1s 0.3s ease forwards;
}

.about-premium-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.6),
    0 0 0 1px rgba(201,168,76,0.15);
}

.about-premium-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}

.about-premium-visual:hover .about-premium-img {
  transform: scale(1.04);
}

/* Sinematik overlay */
.about-premium-img-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.15) 0%,
      rgba(0,0,0,0.05) 40%,
      rgba(0,0,0,0.55) 100%
    ),
    linear-gradient(135deg,
      rgba(201,168,76,0.08) 0%,
      transparent 60%
    );
}

/* ---- FLOATING KARTLAR ---- */
.apf-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(8, 8, 8, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  padding: 0.85rem 1.25rem;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.5),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  cursor: default;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  white-space: nowrap;
}

.apf-card:hover {
  transform: translateY(-6px) !important;
  box-shadow:
    0 16px 48px rgba(0,0,0,0.6),
    0 0 20px rgba(201,168,76,0.2);
}

.apf-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: linear-gradient(135deg, rgba(201,168,76,0.2), rgba(201,168,76,0.08));
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apf-icon i {
  font-size: 0.9rem;
  color: var(--gold);
}

.apf-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.apf-text strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.apf-text span {
  font-size: 0.7rem;
  color: rgba(180,180,180,0.6);
  letter-spacing: 0.5px;
}

/* Kart konumları */
.apf-card--1 {
  top: 8%;
  left: -60px;
  animation: apCardIn 0.6s 0.8s ease forwards;
}

.apf-card--2 {
  top: 38%;
  right: -50px;
  animation: apCardIn 0.6s 1s ease forwards;
}

.apf-card--3 {
  bottom: 22%;
  left: -50px;
  animation: apCardIn 0.6s 1.2s ease forwards;
}

.apf-card--4 {
  bottom: 6%;
  right: -40px;
  animation: apCardIn 0.6s 1.4s ease forwards;
}

/* Animasyonlar */
@keyframes apFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes apZoomIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes apCardIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
  .apf-card--1 { left: -20px; }
  .apf-card--2 { right: -20px; }
  .apf-card--3 { left: -20px; }
  .apf-card--4 { right: -20px; }
}

@media (max-width: 900px) {
  .about-premium-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .about-premium-visual {
    order: -1;
  }

  .about-premium-img-wrap {
    aspect-ratio: 16/9;
  }

  .apf-card--1 { top: -18px; left: 10px; }
  .apf-card--2 { top: -18px; right: 10px; }
  .apf-card--3 { bottom: -18px; left: 10px; }
  .apf-card--4 { bottom: -18px; right: 10px; }

  .about-premium-stats {
    gap: 0;
  }
}

@media (max-width: 480px) {
  .apf-card--2,
  .apf-card--4 { display: none; }

  .apf-card--1 { left: 8px; }
  .apf-card--3 { left: 8px; }

  .about-premium-stats {
    flex-direction: column;
    gap: 1.25rem;
  }

  .about-premium-stat {
    border-right: none;
    border-bottom: 1px solid rgba(201,168,76,0.12);
    padding: 0 0 1.25rem;
  }

  .about-premium-stat:last-child {
    border-bottom: none;
    padding-left: 0;
  }

  .about-premium-stat:nth-child(2) {
    padding-left: 0;
  }
}


/* ===========================
   HİZMET SLIDER — OVERRIDE (canlı site fix)
=========================== */
.hizmet-slider {
  position: relative !important;
  width: 100% !important;
  max-width: 760px !important;
  overflow: hidden !important;
  border-radius: 14px !important;
  margin-bottom: 2.5rem !important;
  background: #000 !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.5) !important;
}

.hizmet-slider-track {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  width: 100% !important;
  transition: transform 0.5s ease !important;
}

.hizmet-slider-track img {
  min-width: 100% !important;
  width: 100% !important;
  flex: 0 0 100% !important;
  height: 430px !important;
  object-fit: cover !important;
  display: block !important;
}

.hizmet-slider-btn {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  background: rgba(0,0,0,0.55) !important;
  color: #fff !important;
  border: none !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  font-size: 1.6rem !important;
  cursor: pointer !important;
  z-index: 10 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.hizmet-slider-btn.prev { left: 12px !important; }
.hizmet-slider-btn.next { right: 12px !important; }

.hizmet-slider-btn:hover {
  background: var(--gold, #c9a84c) !important;
  color: #000 !important;
}

.hizmet-slider-dots {
  position: absolute !important;
  bottom: 10px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  gap: 6px !important;
  z-index: 10 !important;
}

.hizmet-slider-dots span {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.45) !important;
  cursor: pointer !important;
  display: block !important;
}

.hizmet-slider-dots span.active {
  background: var(--gold, #c9a84c) !important;
}

@media (max-width: 768px) {
  .hizmet-slider-track img {
    height: 240px !important;
  }
}


/* ===========================
   MOBİL — Galeri & Lightbox ok fix
=========================== */

/* Portfolio galeri okları mobilden her zaman görünsün */
@media (hover: none), (max-width: 768px) {
  .pf-gallery .pf-arrow {
    opacity: 1 !important;
    background: rgba(0,0,0,0.55) !important;
  }
}

/* Lightbox okları mobilden her zaman görünsün */
@media (max-width: 768px) {
  .lb-arrow {
    opacity: 1 !important;
    background: rgba(0,0,0,0.55) !important;
    width: 42px !important;
    height: 42px !important;
    font-size: 1.8rem !important;
    margin: 0 0.3rem !important;
  }

  .lb-prev {
    position: fixed !important;
    left: 8px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
  }

  .lb-next {
    position: fixed !important;
    right: 8px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
  }
}
