/* ==========================================================================
   AKY GOLD YAPI - Lüks Mimari Villa & Altın Tasarım Sistemi (CSS)
   Broşürdeki Lüks Villa Arka Planı, Parlak Altın Vurgular, Sıfır Emoji
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Renk Paleti (Lüks Koyu Zemin & Gece Villası Ambiyansı) */
  --bg-dark-base: #0B0F19;
  --bg-dark-surface: #121826;
  --bg-dark-card: rgba(18, 24, 38, 0.82);
  --bg-card-hover: rgba(24, 32, 50, 0.92);
  --bg-header: rgba(11, 15, 25, 0.88);
  --bg-input: rgba(14, 19, 31, 0.85);

  /* Işıltılı Altın & Şampanya Tonları (Broşürdeki Metalik Altın) */
  --gold-primary: #D4AF37;
  --gold-light: #F7DF9E;
  --gold-dark: #A57E1E;
  --gold-glow: rgba(212, 175, 55, 0.28);
  --gold-border: rgba(212, 175, 55, 0.38);
  --gold-border-subtle: rgba(212, 175, 55, 0.18);
  --gold-gradient: linear-gradient(135deg, #FDE6A6 0%, #D4AF37 50%, #9E7418 100%);
  --gold-gradient-soft: linear-gradient(135deg, rgba(212, 175, 55, 0.16) 0%, rgba(158, 116, 24, 0.05) 100%);

  /* Metin & Tipografi Renkleri (Yüksek Kontrast & Kusursuz Okunurluk) */
  --text-white: #FFFFFF;
  --text-primary: #F1F5F9;
  --text-secondary: #CBD5E1;
  --text-muted: #94A3B8;
  --text-gold: #F7DF9E;
  --text-dark: var(--text-white);
  --text-body: var(--text-secondary);
  --text-heading: var(--text-white);
  --bg-subtle: rgba(255, 255, 255, 0.04);
  --border-color: var(--border-subtle);

  /* Yardımcı Renkler */
  --whatsapp-color: #25D366;
  --whatsapp-hover: #1EBE5D;

  /* Kenarlık & Gölgeler */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 18px;
  --border-radius-xl: 24px;
  --border-radius-full: 9999px;

  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.28);
  --shadow-glow: 0 0 25px rgba(212, 175, 55, 0.22);

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Sıfırlama ve Temel Ayarlar */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-main);
  scroll-behavior: smooth;
  text-size-adjust: 100%;
  color: var(--text-primary);
  background-color: var(--bg-dark-base);
}

/* ==========================================================================
   Broşürdeki Gibi Lüks Villa Arka Planı (Mobilde & Masaüstünde %100 Çalışan)
   ========================================================================== */
body {
  position: relative;
  line-height: 1.6;
  font-size: 15px;
  color: var(--text-primary);
  background-color: transparent;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Sabit Lüks Gece Villası Arka Planı (iOS Safari ve Android'de Asla Bozulmaz) */
.site-bg-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  background-image: 
    radial-gradient(circle at 50% 15%, rgba(212, 175, 55, 0.14) 0%, transparent 60%),
    linear-gradient(180deg, rgba(11, 15, 25, 0.45) 0%, rgba(11, 15, 25, 0.68) 35%, rgba(7, 10, 18, 0.90) 100%),
    url('../images/bg-villa.jpg');
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* SVG İkon Standartları */
svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.w-3, .h-3 { width: 12px !important; height: 12px !important; }
.w-4, .h-4 { width: 15px !important; height: 15px !important; }
.w-5, .h-5 { width: 18px !important; height: 18px !important; }
.w-6, .h-6 { width: 22px !important; height: 22px !important; }
.w-7, .h-7 { width: 26px !important; height: 26px !important; }
.w-8, .h-8 { width: 30px !important; height: 30px !important; }

.text-gold {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }

/* Konteyner & Bölümler */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding-top: 65px;
  padding-bottom: 65px;
  position: relative;
}

.section-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}

.bg-white, .bg-warm, .bg-alt {
  background-color: transparent !important;
}

/* Tipografi Hiyerarşisi */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-white);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(1.85rem, 3.8vw, 2.75rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.05rem); }
h3 { font-size: 1.22rem; }
h4 { font-size: 1.05rem; }

.section-title-wrap {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  border-radius: var(--border-radius-full);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.15);
}

.section-badge svg {
  width: 14px !important;
  height: 14px !important;
  color: var(--gold-primary);
}

.section-title {
  margin-bottom: 12px;
  color: var(--text-white);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

/* ==========================================================================
   Üst Bilgi Çubuğu (Top Bar)
   ========================================================================== */
.top-bar {
  background: rgba(8, 11, 18, 0.95);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.84rem;
  padding: 7px 0;
  color: var(--text-muted);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-secondary);
  font-weight: 500;
}

.top-bar-item svg {
  width: 14px !important;
  height: 14px !important;
  color: var(--gold-primary);
}

.top-bar-item strong {
  color: var(--text-white);
}

.top-bar-phone {
  color: var(--gold-light);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar-phone svg {
  width: 14px !important;
  height: 14px !important;
  color: var(--gold-primary);
}

.top-bar-phone:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   Ana Başlık (Navbar)
   ========================================================================== */
.header-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-header);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gold-border-subtle);
  transition: all var(--transition-normal);
}

.header-main.scrolled {
  background: rgba(9, 13, 22, 0.96);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  border-bottom-color: var(--gold-border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-brand .logo-img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 8px 2px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.nav-link svg {
  width: 13px !important;
  height: 13px !important;
  transition: transform var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--gold-light);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: 2px;
}

/* Dropdown Menü */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(14, 19, 31, 0.96);
  backdrop-filter: blur(16px);
  min-width: 260px;
  padding: 8px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--gold-border);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition-normal);
  z-index: 1050;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

.dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--border-radius-sm);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.dropdown-link .dropdown-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold-light);
  border-radius: 6px;
  flex-shrink: 0;
  border: 1px solid var(--gold-border-subtle);
}

.dropdown-link .dropdown-icon svg {
  width: 15px !important;
  height: 15px !important;
}

.dropdown-link:hover {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
  transform: translateX(3px);
}

/* Header Butonları */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: var(--border-radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn svg {
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #0B0F19;
  font-weight: 800;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.45);
  color: #000000;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-white);
  border: 1px solid var(--gold-border-subtle);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold-border);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid var(--gold-primary);
}

.btn-outline-gold:hover {
  background: var(--gold-gradient);
  color: #0B0F19;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.btn-whatsapp {
  background-color: var(--whatsapp-color);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
}

.btn-phone {
  background: #1E2638;
  color: var(--text-white);
  border: 1px solid var(--gold-border-subtle);
}

.btn-phone:hover {
  background: var(--gold-gradient);
  color: #0B0F19;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 7px 15px;
  font-size: 0.85rem;
  gap: 6px;
}

.btn-sm svg {
  width: 14px !important;
  height: 14px !important;
}

.btn-lg {
  padding: 13px 26px;
  font-size: 0.98rem;
}

.btn-lg svg {
  width: 17px !important;
  height: 17px !important;
}

/* Mobil Menü Butonu */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: var(--text-white);
}

.mobile-toggle svg {
  width: 24px !important;
  height: 24px !important;
}

/* Mobil Menü Çekmecesi */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 340px;
  height: 100vh;
  background: #0E1422;
  border-left: 1px solid var(--gold-border);
  z-index: 2000;
  box-shadow: -8px 0 35px rgba(0, 0, 0, 0.7);
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  padding: 20px;
  overflow-y: auto;
}

.mobile-drawer.active { right: 0; }

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

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

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 16px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: var(--border-radius-sm);
}

.mobile-nav-link svg {
  width: 14px !important;
  height: 14px !important;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold-light);
}

.mobile-sublinks {
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 2px;
}

.mobile-sublink {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: var(--border-radius-sm);
}

.mobile-sublink svg {
  width: 15px !important;
  height: 15px !important;
  color: var(--gold-primary);
}

.mobile-sublink:hover {
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.1);
}

.mobile-drawer-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ==========================================================================
   Hero Bölümü (Lüks Gece Villası & Altın Vurgular)
   ========================================================================== */
.hero-section {
  position: relative;
  padding: 60px 0 75px;
  overflow: hidden;
}

.hero-glow-bg {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.18) 0%, rgba(11, 15, 25, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid var(--gold-border);
  border-radius: var(--border-radius-full);
  color: var(--gold-light);
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.hero-eyebrow svg {
  width: 14px !important;
  height: 14px !important;
  color: var(--gold-primary);
}

.hero-title {
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 540px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.hero-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px;
  background: rgba(18, 24, 38, 0.88);
  border: 1px solid var(--gold-border);
  border-radius: var(--border-radius-full);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(10px);
}

.hero-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0B0F19;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-contact-icon svg {
  width: 17px !important;
  height: 17px !important;
}

.hero-contact-info small {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  font-weight: 600;
}

.hero-contact-info strong {
  display: block;
  font-size: 1.05rem;
  color: var(--text-white);
  font-weight: 800;
}

/* Hero Sağ Kart (Broşür Kartı Stili) */
.hero-card {
  background: var(--bg-dark-card);
  border-radius: var(--border-radius-lg);
  padding: 28px;
  border: 1px solid var(--gold-border);
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 18px;
}

.hero-card-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.16);
  border: 1.5px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}

.hero-card-avatar svg {
  width: 22px !important;
  height: 22px !important;
}

.hero-card-title h3 {
  font-size: 1.15rem;
  margin-bottom: 2px;
  color: var(--text-white);
}

.hero-card-title p {
  font-size: 0.82rem;
  color: var(--gold-light);
}

.hero-service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(12, 16, 26, 0.65);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.hero-service-item:hover {
  border-color: var(--gold-border);
  background: rgba(212, 175, 55, 0.12);
  transform: translateX(3px);
}

.hero-service-item-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-primary);
}

.hero-service-item-left svg {
  width: 17px !important;
  height: 17px !important;
  color: var(--gold-primary);
}

.hero-service-item-arrow svg {
  width: 14px !important;
  height: 14px !important;
  color: var(--text-muted);
}

/* ==========================================================================
   4 Güven Rozetleri (Broşürdeki Gibi Lüks Cam Panel)
   ========================================================================== */
.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-badge-card {
  background: var(--bg-dark-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 24px 20px;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--gold-border-subtle);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.trust-badge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gold-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.trust-badge-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.trust-badge-card:hover::before { opacity: 1; }

.trust-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid var(--gold-border);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.15);
}

.trust-badge-icon svg {
  width: 20px !important;
  height: 20px !important;
}

.trust-badge-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text-white);
}

.trust-badge-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   Hizmet Kartları (Broşürdeki Altın Kenarlı Lüks Vitrin)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-dark-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--gold-border);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.service-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 14px;
}

.service-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gold-gradient);
  color: #0B0F19;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}

.service-card-icon svg {
  width: 22px !important;
  height: 22px !important;
}

.service-card-badge {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: var(--border-radius-full);
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-light);
  border: 1px solid var(--gold-border-subtle);
}

.service-card-title {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--text-white);
}

.service-card-desc {
  color: var(--text-secondary);
  font-size: 0.92rem;
  margin-bottom: 18px;
  line-height: 1.5;
}

.service-card-items-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-card-items-title svg {
  width: 14px !important;
  height: 14px !important;
  color: var(--gold-primary);
}

.service-subitems-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 22px;
}

.service-subitem {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.service-subitem svg {
  width: 15px !important;
  height: 15px !important;
  min-width: 15px;
  color: var(--gold-primary);
}

.service-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold-light);
}

.service-link svg {
  width: 14px !important;
  height: 14px !important;
  transition: transform var(--transition-fast);
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* ==========================================================================
   Ayrı Hizmet Detay Sayfası Tasarımı
   ========================================================================== */
.page-header {
  padding: 50px 0 60px;
  border-bottom: 1px solid var(--border-subtle);
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.breadcrumb-nav a { color: var(--text-secondary); }
.breadcrumb-nav a:hover { color: var(--gold-light); }

.breadcrumb-nav svg {
  width: 12px !important;
  height: 12px !important;
  color: var(--text-muted);
}

.breadcrumb-current {
  color: var(--gold-light);
  font-weight: 600;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 32px;
  align-items: start;
}

.service-detail-content {
  background: var(--bg-dark-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--gold-border);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.service-item-detail-card {
  background: rgba(14, 19, 31, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  padding: 16px 18px;
  margin-bottom: 14px;
  transition: all var(--transition-fast);
}

.service-item-detail-card:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--gold-border);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
}

.service-item-detail-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.service-item-detail-header svg {
  width: 17px !important;
  height: 17px !important;
  min-width: 17px;
  color: var(--gold-primary);
}

.service-item-detail-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
}

.service-item-detail-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
  padding-left: 27px;
}

.service-guarantee-box {
  margin-top: 40px;
  padding: 28px;
  background: rgba(212, 175, 55, 0.08);
  border: 1.5px solid var(--gold-border);
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.service-guarantee-box h4 {
  color: var(--gold-light);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
}

.service-guarantee-box h4 svg {
  color: var(--gold-primary);
}

.service-guarantee-box p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

/* Yan Panel (Sidebar) */
.service-sidebar {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-widget {
  background: var(--bg-dark-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--gold-border-subtle);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.sidebar-widget-title {
  font-size: 1.1rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-white);
}

.sidebar-widget-title svg {
  width: 17px !important;
  height: 17px !important;
  color: var(--gold-primary);
}

.sidebar-services-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--border-radius-sm);
  background: rgba(14, 19, 31, 0.7);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-fast);
}

.sidebar-service-link svg {
  width: 14px !important;
  height: 14px !important;
  color: var(--gold-primary);
}

.sidebar-service-link:hover, .sidebar-service-link.active {
  background: rgba(212, 175, 55, 0.16);
  border-color: var(--gold-border);
  color: var(--gold-light);
}

.sidebar-cta-widget {
  background: var(--bg-dark-card);
  border: 1.5px solid var(--gold-border);
  border-radius: var(--border-radius-lg);
  padding: 26px 20px;
  text-align: center;
  box-shadow: var(--shadow-card), var(--shadow-glow);
  backdrop-filter: blur(16px);
}

.sidebar-cta-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0B0F19;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}

.sidebar-cta-icon svg {
  width: 22px !important;
  height: 22px !important;
}

.sidebar-cta-widget h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--text-white);
}

.sidebar-cta-widget p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

/* ==========================================================================
   SSS / Akordeon Bölümü
   ========================================================================== */
.faq-grid {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
  backdrop-filter: blur(12px);
}

.faq-card.active {
  border-color: var(--gold-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.faq-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: transparent;
  user-select: none;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text-white);
}

.faq-header:hover { color: var(--gold-light); }

.faq-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-icon svg {
  width: 15px !important;
  height: 15px !important;
}

.faq-card.active .faq-icon {
  transform: rotate(180deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: rgba(11, 15, 25, 0.6);
}

.faq-card.active .faq-body {
  max-height: 350px;
  padding: 0 20px 18px 20px;
}

.faq-body p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ==========================================================================
   İletişim & Form
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 32px;
}

.contact-card {
  background: var(--bg-dark-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--gold-border);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid var(--gold-border-subtle);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 18px !important;
  height: 18px !important;
}

.contact-item-text small {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold-light);
  font-weight: 600;
}

.contact-item-text strong {
  font-size: 1.05rem;
  color: var(--text-white);
}

.form-group {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 11px 15px;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-subtle);
  background-color: var(--bg-input);
  color: var(--text-white);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-primary);
  background-color: rgba(18, 24, 38, 0.95);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
}

.form-control option {
  background-color: #121826;
  color: #FFFFFF;
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* ==========================================================================
   Footer (Alt Bilgi)
   ========================================================================== */
.footer-main {
  background: rgba(7, 10, 17, 0.96);
  border-top: 1px solid var(--gold-border-subtle);
  padding: 55px 0 20px;
  margin-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 14px;
  margin-bottom: 18px;
  line-height: 1.55;
}

.footer-motto-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--gold-border);
  border-radius: var(--border-radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
}

.footer-motto-badge svg {
  width: 13px !important;
  height: 13px !important;
}

.footer-col-title {
  font-size: 1.05rem;
  color: var(--text-white);
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 8px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--gold-gradient);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-link svg {
  width: 14px !important;
  height: 14px !important;
  min-width: 14px;
  color: var(--gold-primary);
  transition: transform var(--transition-fast);
}

.footer-link:hover {
  color: var(--gold-light);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.84rem;
}

/* ==========================================================================
   İki Kolonlu Izgara ve Form Satırı Yardımcıları (Responsive)
   ========================================================================== */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ==========================================================================
   Mobil Sabit Arama Çubuğu & Yüzen WhatsApp
   ========================================================================== */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  box-sizing: border-box;
  background: rgba(11, 15, 25, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1.5px solid var(--gold-border);
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  z-index: 9999;
  box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.7);
}

.mobile-bottom-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  box-sizing: border-box;
}

.mobile-bottom-btn {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: var(--border-radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
  transition: all var(--transition-fast);
}

.mobile-bottom-btn svg {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
}

.mobile-bottom-btn.btn-phone {
  background: var(--gold-gradient);
  color: #0B0F19;
  border: 1px solid var(--gold-light);
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.35);
}

.mobile-bottom-btn.btn-phone:hover, .mobile-bottom-btn.btn-phone:active {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.mobile-bottom-btn.btn-whatsapp {
  background: var(--whatsapp-color);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.mobile-bottom-btn.btn-whatsapp:hover, .mobile-bottom-btn.btn-whatsapp:active {
  background: var(--whatsapp-hover);
  transform: translateY(-1px);
}

.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 52px;
  height: 52px;
  background-color: var(--whatsapp-color);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: all var(--transition-normal);
}

.floating-whatsapp svg {
  width: 28px !important;
  height: 28px !important;
}

.floating-whatsapp:hover {
  transform: scale(1.08);
  background-color: var(--whatsapp-hover);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
}

/* ==========================================================================
   Duyarlı Tasarım (Responsive Media Queries)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .two-col-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-badges-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  /* Mobilde villayı, sıcak akşam ışıklarını ve lüks detayları belirgin göster */
  .site-bg-fixed {
    background-image: 
      radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.24) 0%, transparent 50%),
      linear-gradient(180deg, rgba(11, 15, 25, 0.42) 0%, rgba(11, 15, 25, 0.65) 35%, rgba(7, 10, 18, 0.88) 100%),
      url('../images/bg-villa.jpg');
    background-position: center top;
  }

  /* Üst Çubuk & Navbar */
  .top-bar { padding: 6px 0; }
  .top-bar-left { display: none; }
  .top-bar-inner { justify-content: center; text-align: center; }
  .top-bar-right { justify-content: center; gap: 14px; }
  .nav-links, .header-actions { display: none; }
  .mobile-toggle { display: block; }
  .navbar-brand .logo-img { height: 38px; }

  /* Hero Butonları (Mobilde Tam Genişlik, Orantılı & Kaymayan) */
  .hero { padding: 45px 0 55px; }
  .hero-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-bottom: 24px;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 0.98rem;
    box-sizing: border-box;
  }
  .hero-card { padding: 22px 18px; }

  /* İki Kolonlu Izgaralar & Formlar */
  .two-col-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }
  .trust-badges-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Sabit Mobil İletişim Çubuğu (Hemen Ara + WhatsApp) */
  .mobile-bottom-bar { display: block; }
  body { padding-bottom: 75px; }

  /* Mobilde çift buton karmaşası ve kenara kayma olmaması için yüzen simgeyi gizle */
  .floating-whatsapp { display: none !important; }

  .section { padding-top: 45px; padding-bottom: 45px; }
}

@media (max-width: 480px) {
  .container { padding-left: 14px; padding-right: 14px; }
  .top-bar-item { display: none; }
  .service-card { padding: 20px 16px; }
  .sidebar-widget { padding: 18px 14px; }
  .mobile-bottom-bar { padding: 8px 12px; }
  .mobile-bottom-btn { padding: 11px 8px; font-size: 0.9rem; }
}
