:root {
  --bg: #0a0a0a;
  --text: #f5f5f5;
  --text-muted: #a1a1aa;
  
  --gold-light: #ffcc66; 
  --gold-dark: #f59e0b;  
  
  --gold-gradient: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark));
  --gold-shadow: 0 0 15px rgba(255, 204, 102, 0.4), 0 0 5px rgba(255, 204, 102, 0.2);
  --gold-shadow-intense: 0 0 25px rgba(255, 204, 102, 0.7), 0 0 10px rgba(255, 204, 102, 0.4);
  
  --border-dark: #2d2d2d;
  --section-bg: #111;
  --easing: cubic-bezier(0.25, 1, 0.5, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  background-image: url('assets/background.webp'); 
  background-size: cover; 
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #0a0a0a; 
  position: relative;
  z-index: 1; 
}

body::before {
    content: '';
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%; 
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: -1; 
}

/* === TİPOGRAFİ VE ANİMASYONLAR === */
h1, h2, h3, h4,
.brand-title, .footer-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  background: var(--gold-gradient);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  animation: textGradientShine 5s linear infinite;
}

@keyframes textGradientShine {
  to { background-position: 200% center; }
}

@keyframes zoomFadeIn {
  from { opacity: 0; transform: scale3d(0.9, 0.9, 1); }
  to { opacity: 1; transform: scale3d(1, 1, 1); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.card-fade-in {
    opacity: 0;
    transform: scale(0.9);
    animation: cardFadeInAnimation 0.8s var(--easing) forwards;
}

@keyframes cardFadeInAnimation {
  to { opacity: 1; transform: scale(1); }
}

h1 { font-size: 56px; }
h2 { font-size: 42px; margin-bottom: 60px; }
h3 { font-size: 22px; font-weight: 600; }
h4 { font-size: 18px; }

p {
  color: var(--text-muted);
  font-size: 17px;
}

/* === HEADER (ÜST MENÜ) === */
header {
  display: block; 
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.0) 100%);
  transition: background-color 0.3s;
  animation: zoomFadeIn 1s var(--easing) forwards 0.2s;
  opacity: 0;
}
header.scrolled {
  background-color: rgba(10, 10, 10, 0.9);
}

.header-top-row {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 8px 30px;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.header-top-row a.btn-top-info {
  display: inline-flex;
  align-items: center;
  padding: 3px 6px;
  margin-right: 10px;
  background-color: var(--gold-dark);
  color: #111;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--gold-shadow);
}
.header-top-row a.btn-top-info:hover {
  background-color: var(--gold-light);
  transform: translateY(-2px);
}
.header-top-row a.btn-top-info i {
  margin-right: 6px; 
  color: #111;
  font-size: 12px;
}

.header-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 30px;
  height: 80px;
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 45px; width: auto; border-radius: 4px; }
.brand-text-container { display: flex; flex-direction: column; align-items: flex-start; }
.brand-title { font-size: 20px; font-weight: 900; line-height: 1; animation: none; }
.brand-tagline { font-family: 'Inter', sans-serif; font-weight: 500; font-size: 13px; color: var(--text-muted); line-height: 1; margin-top: 4px; letter-spacing: 0.5px; }

.navbar { display: flex; align-items: center; gap: 30px; }
.navbar a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
  overflow: hidden; 
  padding: 5px 0;
  cursor: pointer; 
}
.navbar a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-gradient);
  background-size: 200% 100%;
  transform: translateX(-101%);
  transition: transform 0.6s var(--easing);
}
.navbar a:hover { color: var(--gold-light); }
.navbar a:hover::after {
  transform: translateX(0%);
  animation: textGradientShine 1s linear 1;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--gold-light);
  z-index: 1001;
  background: none;
  border: none;
  padding: 0;
}

/* === YENİ AÇILIR DİL SEÇİCİ (DROPDOWN) === */
.lang-dropdown-container {
  position: relative;
  display: inline-block;
  z-index: 1005; 
}
.lang-dropdown-btn {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-dark);
  padding: 8px 15px;
  border-radius: 6px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.lang-dropdown-btn:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.lang-dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 10px;
  background-color: rgba(20, 20, 20, 0.95);
  backdrop-filter: blur(10px);
  min-width: 140px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.5);
  border: 1px solid var(--gold-dark);
  border-radius: 8px;
  overflow: hidden;
  flex-direction: column;
}
.lang-dropdown-content.show { display: flex; }
.lang-option {
  color: var(--text);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.lang-option:hover {
  background-color: rgba(255, 204, 102, 0.2);
  color: var(--gold-light);
}

/* === ANA SAYFA (HERO) VİDEO BÖLÜMÜ === */
.hero-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex; /* DÜZELTİLDİ: Ortalamayı sağlar */
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  opacity: 1;
  transition: opacity 0.3s ease-out;
  padding: 0 !important; /* DÜZELTİLDİ: Gereksiz boşlukları siler */
  transform: none !important; /* DÜZELTİLDİ: Aşağı kaymayı engeller */
}
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.6);
}
.hero-video::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}
.hero-video::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%; width: 160%; height: 160%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 204, 102, 0.12) 0%, rgba(255, 204, 102, 0.02) 60%, transparent 100%);
  z-index: 3;
  filter: blur(30px);
  animation: goldPulse 8s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.8;
}

.hero-video .hero-content-overlay {
  position: relative; /* DÜZELTİLDİ: Absolute yerine relative kullanılarak mükemmel hizalama sağlandı */
  z-index: 4;
  width: 100%;
  max-width: 1000px; 
  padding: 0 20px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.6);
  opacity: 0;
  animation: zoomFadeIn 1.4s var(--easing) forwards 0.2s;
}

.hero-content-overlay .hero-since {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: var(--gold-light); 
  text-transform: uppercase;
  display: block;
}
.hero-content-overlay h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  margin: 0 0 20px 0;
}

/* Dönen Metin Stili */
#changing-text {
  font-size: 2rem; 
  margin: 10px 0 30px 0;
  color: var(--text) !important; 
  -webkit-text-fill-color: var(--text) !important; 
  background: none !important;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8), 0 0 2px rgba(0, 0, 0, 0.5);
  transition: opacity 0.5s ease-in-out;
  opacity: 1; 
  min-height: 100px; 
  text-align: center; 
}
#changing-text strong { color: var(--text) !important; }

/* === YENİ DANIŞMANLIK LİNKLERİ (TOOLTIP) === */
.hero-links-container.action-buttons {
  display: flex;
  flex-wrap: wrap; 
  justify-content: center;
  gap: 20px; /* Butonlar arası boşluğu biraz açtık ki ferahlasın */
  margin-top: 60px; 
  max-width: 950px; /* 1200px'ten 950px'e düşürdük: Sihirli 3+2 formülü! */
  margin-left: auto;
  margin-right: auto;
}

.hero-tooltip-wrapper {
  position: relative; 
  display: block;
  width: 280px; /* SABİT GENİŞLİK: Tüm butonlar milimetrik olarak eşit olur */
  flex: none; /* Esnemeyi durdurduk */
  margin: 0 auto; /* Ortalamak için */
}
.hero-tooltip-wrapper .btn-hero-link {
  width: 100%;
  box-sizing: border-box;
}
.btn-hero-link {
  display: inline-block;
  padding: 15px 15px;
  background: transparent; 
  color: var(--gold-light); 
  border: 2px solid var(--gold-dark); 
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
  transition: all 0.4s var(--easing);
  text-align: center;
}
.btn-hero-link:hover {
  background: var(--gold-dark); 
  color: #111; 
  border-color: var(--gold-dark);
  box-shadow: var(--gold-shadow); 
  transform: translateY(-3px) scale(1.05);
}
.hero-tooltip-content {
  position: absolute;
  top: calc(100% + 15px); 
  left: 50%;
  transform: translateX(-50%) translateY(10px); 
  width: 260px;
  background: rgba(10, 10, 10, 0.9); 
  backdrop-filter: blur(10px); 
  border: 1px solid var(--gold-dark);
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.8), 0 0 15px rgba(255, 204, 102, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none; 
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 100;
}
.hero-tooltip-content::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(10, 10, 10, 0.9);
  border-left: 1px solid var(--gold-dark);
  border-top: 1px solid var(--gold-dark);
}
.hero-tooltip-content ul { list-style: none; padding: 0; margin: 0; text-align: left; }
.hero-tooltip-content ul li { color: #e5e7eb; font-family: 'Inter', sans-serif; font-size: 13px; line-height: 1.5; margin-bottom: 8px; padding-left: 15px; position: relative; }
.hero-tooltip-content ul li:last-child { margin-bottom: 0; }
.hero-tooltip-content ul li::before { content: "•"; color: var(--gold-light); font-size: 16px; position: absolute; left: 0; top: -2px; }
.hero-tooltip-wrapper:hover .hero-tooltip-content {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); 
}


/* === SAYFA DÜZENİ VE ALT SAYFALAR === */
section {
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s var(--easing);
  position: relative; 
  z-index: 10; 
}

.page-section {
    display: none;
    animation: pageFadeIn 0.6s var(--easing);
}
.page-section.active { display: block; }
.page-section:not(.active) { display: none; }

/* DÜZELTİLDİ: Hero aktifken blok yerine flex kalmasını sağlar */
#hero.active {
    display: flex !important;
}

@keyframes pageFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* DÜZELTİLDİ: Çift boşluk (padding) engellendi */
.page-section:not(#hero) {
    padding-top: 140px; 
    padding-bottom: 60px;
}
section.visible { opacity: 1; transform: translateY(0); }

/* Geri Butonu */
.btn-page-back {
  position: absolute;
  top: 140px; 
  left: 40px;
  z-index: 1001; 
  font-family: 'Inter', sans-serif;
  padding: 10px 20px;
  background: var(--gold-dark);
  color: #111;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s var(--easing);
  border: 1px solid var(--gold-light);
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
}
.btn-page-back:hover {
  background: var(--gold-light);
  color: #000;
  transform: scale(1.05);
}

/* Standart İçerik Kutusu (Danışmanlık Sayfaları İçin) */
.content {
  flex: 1;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(0,0,0,0.5);
  padding: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-dark);
}

/* === İLETİŞİM FORMU (Contact) === */
.contact-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 50px; max-width: 1000px; margin: 0 auto; }
.contact-form { flex: 1 1 400px; text-align: left; background: #1a1a1a; padding: 30px; border-radius: 14px; border: 1px solid var(--border-dark); }
.contact-form h3 { margin-top: 0; }
.contact-form label { display: block; margin-top: 15px; margin-bottom: 5px; font-weight: 500; font-family: 'Inter', sans-serif; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px; margin-bottom: 10px; border: 1px solid #333; background: var(--bg); color: var(--text); border-radius: 8px; font-family: 'Inter', sans-serif; transition: border-color 0.3s; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold-light); outline: none; box-shadow: var(--gold-shadow); }
.contact-form button { width: 100%; margin-top: 20px; border: none; padding: 14px; background: var(--gold-dark); color: #111; font-weight: 700; border-radius: 8px; cursor: pointer; transition: 0.3s; }
.contact-form button:hover { background: var(--gold-light); }
.contact-info { flex: 1 1 300px; text-align: left; background: rgba(0,0,0,0.5); padding: 30px; border-radius: 10px; border: 1px solid var(--border-dark); }
.info-item { display: flex; align-items: center; margin-bottom: 30px; }
.info-item i { font-size: 24px; color: var(--gold-dark); margin-right: 15px; width: 30px; text-align: center; }
.info-item div p { margin: 0; font-size: 15px; color: var(--text-muted); }
.info-item div strong { display: block; font-size: 18px; color: var(--text); font-family: 'Playfair Display', serif; }


/* === FOOTER (ALT BİLGİ) === */
.site-footer {
  background-color: #0c0c0c; 
  color: #a0a0a0;
  padding: 60px 30px 20px 30px;
  border-top: 1px solid #333;
  opacity: 0;
  animation: fadeIn 0.8s var(--easing) forwards 0.5s; /* DÜZELTİLDİ: Footer'ın anında gelmesi sağlandı */
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr 1fr 1fr;
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto 40px auto;
}
.footer-column h3 {
  font-family: 'Playfair Display', serif;
  color: #ffffff;
  font-size: 1.25rem;
  margin-bottom: 20px;
  border-bottom: 1px solid #ffcc66;
  padding-bottom: 10px;
  font-weight: 700;
}
.footer-column.logo-column h3 { border-bottom: none; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #a0a0a0; text-decoration: none; transition: color 0.3s, padding-left 0.3s; display: inline-block; }
.footer-links a:hover { color: #ffcc66; padding-left: 5px; }
.footer-column.logo-column { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; }
.footer-logo-container { display: flex; align-items: center; gap: 12px; }
.footer-logo-container img { height: 40px; border-radius: 4px; }
.footer-text-container { display: flex; flex-direction: column; align-items: flex-start; }
.social-icons { margin-top: 20px; }
.social-icons a { font-size: 20px; margin: 0 10px; color: var(--text-muted); transition: color 0.3s ease, transform 0.3s ease; }
.social-icons a:hover { color: var(--gold-light); transform: scale(1.2); text-shadow: 0 0 10px var(--gold-light); }
.footer-links.contact-info li { display: flex; align-items: flex-start; }
.footer-links.contact-info i { color: #ffcc66; margin-right: 12px; margin-top: 5px; width: 15px; }
.footer-bottom { border-top: 1px solid #333; padding-top: 20px; text-align: center; font-family: 'Inter', sans-serif; font-size: 13px; }

/* === MOBİL & RESPONSIVE AYARLAR === */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-column.logo-column { grid-column: 1 / -1; order: -1; margin-bottom: 30px; }
  
  .btn-page-back { top: 110px !important; left: 20px !important; z-index: 9999 !important; }
  .page-section:not(#hero) { padding-top: 170px !important; }
  h2 { margin-top: 30px !important; padding-top: 0 !important; position: relative; z-index: 1; }
}

@media (max-width: 768px) {
  .header-top-row { flex-direction: column; align-items: flex-start; gap: 8px; padding: 10px 15px; }
  .header-bottom-row { height: 70px; padding: 10px 15px; }
  .menu-toggle { display: block; }
  
  .navbar {
    position: fixed; top: 0; right: 0; width: 250px; height: 100%;
    flex-direction: column; justify-content: center; background: var(--section-bg);
    transform: translateX(100%); transition: transform 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0,0,0,0.4); z-index: 999; border-left: 1px solid var(--border-dark);
  }
  .navbar.open { transform: translateX(0); }
  .navbar a { font-size: 1.2em; padding: 15px 0; width: 100%; text-align: center; }
  
  /* DÜZELTİLDİ: Mobilde açılır dil menüsü hizalaması */
  .lang-dropdown-container { margin-left: 0; margin-top: 0; }
  .lang-dropdown-content { right: 0; left: auto; transform: none; }

  .hero-video-bg { object-position: center center; }
  
  .footer-grid { grid-template-columns: 1fr; }
  .footer-column { margin-bottom: 20px; }
  .site-footer { padding: 40px 15px 20px 15px; }
}

@media (max-width: 480px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  .hero-content-overlay h1 { font-size: 36px; }
  section { padding-left: 20px; padding-right: 20px; }
  .brand img { height: 35px; }
}

/* === RTL (SAĞDAN SOLA - ARAPÇA) AYARLARI === */
html[dir="rtl"] { font-family: 'Noto Sans Arabic', 'Inter', sans-serif; }
html[dir="rtl"] h1, html[dir="rtl"] h2, html[dir="rtl"] h3, html[dir="rtl"] h4,
html[dir="rtl"] .brand-title, html[dir="rtl"] .footer-title { font-family: 'Playfair Display', 'Noto Sans Arabic', serif; }
html[dir="rtl"] .brand, html[dir="rtl"] .footer-logo-container { flex-direction: row-reverse; }
html[dir="rtl"] .brand-text-container, html[dir="rtl"] .footer-text-container { align-items: flex-end; }
html[dir="rtl"] .lang-dropdown-container { margin-left: 0; margin-right: 20px; }
html[dir="rtl"] .info-item i { margin-right: 0; margin-left: 15px; }
@media (max-width: 768px) { html[dir="rtl"] .lang-dropdown-container { margin-right: 0; } }
/* === HİZMETLER (SERVICES) SAYFASI KART STİLLERİ (GERİ GETİRİLDİ) === */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
}

.service-card {
  background: #111;
  border-radius: 14px;
  border: 1px solid var(--border-dark);
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.4s var(--easing), box-shadow 0.4s var(--easing), border-color 0.4s var(--easing);
  
  /* Sayfa açılış animasyonu için başlangıç durumu */
  opacity: 0;
  transform: scale(0.9);
}

.service-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), var(--gold-shadow-intense);
  border-color: var(--gold-dark);
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 20px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 15px;
}
/* ==========================================================================
   ZARİF HİZMET BUTONLARI VE HİZMET KARTLARI (KUSURSUZ SİMETRİ)
   ========================================================================== */

.hero-links-container.action-buttons {
  display: flex !important;
  flex-wrap: wrap !important; 
  justify-content: center !important;
  gap: 15px !important; 
  margin-top: 50px !important; 
  max-width: 1000px !important; 
  margin-left: auto !important;
  margin-right: auto !important;
}

.hero-tooltip-wrapper {
  position: relative !important; 
  display: block !important;
  width: 220px !important; /* Daha dar ve zarif bir genişlik */
  flex: none !important; 
  margin: 0 auto !important;
}

.btn-hero-link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  padding: 8px 12px !important; /* Dikeyde inceltildi */
  min-height: 48px !important;  /* Tok bir görünüm için sabit yükseklik */
  background: rgba(0, 0, 0, 0.6) !important; 
  color: var(--gold-light) !important; 
  border: 2px solid var(--gold-dark) !important; 
  border-radius: 8px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important; /* Daha kibar font boyutu */
  font-weight: 600 !important;
  text-decoration: none !important;
  line-height: 1.2 !important; /* Yazı satır aralığı daraltıldı */
  text-align: center !important;
  transition: all 0.4s var(--easing) !important;
  box-sizing: border-box !important;
}

.btn-hero-link:hover {
  background: var(--gold-dark) !important; 
  color: #111 !important; 
  border-color: var(--gold-dark) !important;
  box-shadow: var(--gold-shadow) !important; 
  transform: translateY(-3px) !important;
}

/* Hizmet Sayfaları İçin Kart Tasarımı */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: rgba(17, 17, 17, 0.9);
  border-radius: 12px;
  border: 1px solid var(--border-dark);
  padding: 35px 25px;
  text-align: center;
  transition: all 0.4s var(--easing);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), var(--gold-shadow);
  border-color: var(--gold-dark);
}