/* --- TEMEL AYARLAR --- */
:root {
  --gold: #d0aa16;
  --dark: #0a0a0a;
  --white: #ffffff;
  --whatsapp-green: #25d366;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { 
  font-family: 'Segoe UI', Arial, sans-serif; 
  line-height: 1.6; 
  color: #222; 
  background: #fff;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
.container { width: 1200px; max-width: 90%; margin: auto; }

/* --- HEADER --- */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  min-height: 90px;
}

.logo { width: 150px !important; height: auto; z-index: 2200; }

.nav { display: flex; gap: 25px; align-items: center; }
.nav a {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  transition: 0.3s;
}
.nav a:hover, .nav a.active { color: var(--gold); }

/* --- HAMBURGER --- */
.menu-btn {
  display: none;
  background: var(--gold);
  color: #111;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 26px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2200;
}

/* --- HERO --- */
.hero { 
  height: 750px; 
  background: url('../img/hero.jpg') center/cover no-repeat; 
  position: relative; 
  display: flex; 
  align-items: center; 
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); }
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-title { 
  font-size: 28px; 
  color: var(--gold); 
  margin-bottom: 24px; 
  text-transform: uppercase; 
}
.hero-copy p { 
  color: #fff; 
  font-size: 17px; 
  margin-bottom: 16px; 
  max-width: 820px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.brand-red { color: #d71920; font-weight: bold; }
.cta { 
  display: inline-block; 
  background: var(--gold); 
  color: #fff; 
  padding: 12px 25px; 
  border-radius: 6px; 
  font-weight: bold; 
  transition: 0.3s; 
  box-shadow: 0 10px 20px rgba(0,0,0,0.2); 
}
.cta:hover { transform: translateY(-2px); background: #fff; color: #111; }

/* --- HİZMETLER --- */
.services { padding: 90px 0; background: #f8f9fa; }
.services h2 { text-align: center; margin-bottom: 50px; font-size: 32px; font-weight: 800; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card { 
  background: #fff; 
  border-radius: 15px; 
  overflow: hidden; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.08); 
  border: 1px solid #d5d5d5; 
  transition: all 0.3s ease; 
}
.card:hover { transform: translateY(-10px); box-shadow: 0 18px 45px rgba(0,0,0,0.12); border-color: var(--gold); }
.card img { width: 100%; height: 240px; object-fit: cover; }
.card h3 { padding: 20px; text-align: center; font-size: 18px; line-height: 1.3; font-weight: 700; }

/* --- HAKKIMIZDA --- */
.consult { padding: 100px 0; background: #f0f2f5; }
.consult-box { 
  text-align: center; 
  max-width: 900px; 
  margin: auto; 
  background: #fff; 
  padding: 50px 35px; 
  border-radius: 25px; 
  box-shadow: 0 15px 40px rgba(0,0,0,0.08); 
  border: 1px solid #d5d5d5; 
}
.consult-box h2 { font-size: clamp(22px, 3vw, 32px); color: var(--gold); margin-bottom: 25px; word-wrap: break-word; overflow-wrap: break-word; line-height: 1.4; }
.consult-box p { font-size: 16px; color: #444; line-height: 1.8; margin-bottom: 15px; }
.consult-logo { width: 220px; margin: 30px auto 0; }

/* --- İLETİŞİM --- */
.contact { padding: 90px 0; background: #f4f4f4; }
.contact h2 { text-align: center; margin-bottom: 50px; font-size: 32px; }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.map-card, .contact-info, .contact-form { 
  background: #fff; 
  border-radius: 18px; 
  padding: 30px; 
  box-shadow: 0 5px 20px rgba(0,0,0,0.05); 
  border: 1px solid #e5e5e5;
}
.map-card h3, .contact-info h3 { font-size: 20px; margin-bottom: 20px; color: var(--gold); border-bottom: 1px solid #eee; padding-bottom: 10px; }
.map-card iframe { width: 100%; height: 215px; border: 0; border-radius: 12px; }

.info-group { display: flex; flex-direction: column; gap: 20px; }
.info-item { display: flex; align-items: flex-start; gap: 15px; }
.info-item svg { width: 24px; height: 24px; fill: var(--gold); flex-shrink: 0; margin-top: 2px; }
.info-item strong { display: block; font-size: 12px; text-transform: uppercase; color: #888; letter-spacing: 1px; margin-bottom: 4px; }
.info-item p { font-size: 15px; color: #222; font-weight: 600; margin: 0; }
.info-item a { color: #222; transition: 0.3s; }
.info-item a:hover { color: var(--gold); }

.contact-form { display: flex; flex-direction: column; gap: 15px; justify-content: space-between; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 14px; border: 1px solid #ddd; border-radius: 10px; font: inherit; background: #fafafa; transition: 0.3s; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); background: #fff; outline: none; }
.contact-form button { background: var(--dark); color: #fff; border: none; padding: 16px; border-radius: 50px; font-weight: bold; cursor: pointer; transition: 0.3s; margin-top: auto; }
.contact-form button:hover { background: var(--gold); color: #111; }

/* --- PREMIUM FOOTER --- */
.footer {
  background: #080808;
  color: #fff;
  padding: 60px 0 30px;
  border-top: 3px solid var(--gold);
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; }
.footer-logo-side { display: flex; align-items: center; gap: 20px; }
.footer-logo-side img { width: 140px; margin-bottom: 0; }
.footer-logo-side p { font-size: 13px; color: #888; margin: 0; text-align: left; }

.footer-credit { text-align: right; }
.footer-credit span { display: block; font-size: 11px; color: #777; letter-spacing: 3px; font-weight: 600; margin-bottom: 4px; }
.footer-credit a { 
  font-size: 20px; font-weight: 800; color: #fff; letter-spacing: 1px; 
  position: relative; display: inline-block; padding-bottom: 2px; transition: color 0.3s ease; 
}
.footer-credit a::after {
  content: ''; position: absolute; width: 100%; height: 2px; bottom: 0; left: 0;
  background-color: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform 0.4s ease;
}
.footer-credit a:hover { color: var(--gold); }
.footer-credit a:hover::after { transform: scaleX(1); transform-origin: left; }

/* --- BUTONLAR --- */
.action-buttons {
  position: fixed;
  right: 25px;
  bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  z-index: 2000;
}
.whatsapp { 
  width: 55px; height: 55px; 
  background: var(--whatsapp-green); 
  border-radius: 50%; 
  display: flex; align-items: center; justify-content: center; 
  box-shadow: 0 8px 20px rgba(0,0,0,0.3); padding: 13px; transition: transform 0.3s ease;
}
.whatsapp:hover { transform: scale(1.1); }
.whatsapp svg { fill: #fff; width: 100%; }
.scroll-top { 
  width: 45px; height: 45px; 
  background: var(--gold); 
  border-radius: 10px; 
  display: none; align-items: center; justify-content: center; 
  border: none; cursor: pointer; font-size: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* --- MOBİL RESPONSIVE --- */
@media (max-width: 992px) {
  .grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .menu-btn { display: flex; align-items: center; justify-content: center; }
  .nav {
    display: none;
    position: fixed;
    inset: 0;
    background: #080808;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    z-index: 2100;
  }
  .nav.open { display: flex; }
  .mobile-nav-logo { display: block !important; width: 180px; margin-bottom: 40px; }
  .nav a { font-size: 22px; }
  .logo { width: 130px !important; }
  .grid { grid-template-columns: 1fr; }
  .consult-box { padding: 35px 20px; width: 100%; }
  
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; gap: 40px; }
  .footer-logo-side { flex-direction: column; align-items: center; gap: 10px; text-align: center; }
  .footer-logo-side p { text-align: center; }
  .footer-credit { text-align: center; }
}

.reveal { opacity: 0; transform: translateY(30px); transition: 0.8s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }