/* =============================================
   Cihan Cebeci Hukuk ve Danışmanlık - Ana CSS
   Design: Luxury Legal / Gold & Black
   Renk Paleti: Kart Vizite Uyumlu
   ============================================= */

:root {
  --gold: #C9A84C;
  --gold-light: #D4AF6A;
  --gold-dark: #A07830;
  --gold-bright: #E8C96A;
  --navy: #0A0A0A;
  --navy-mid: #161616;
  --navy-light: #1E1E1E;
  --white: #FFFFFF;
  --off-white: #F5F2ED;
  --gray-100: #F0EDE8;
  --gray-200: #E0DDD8;
  --gray-400: #9B9282;
  --gray-600: #5C5548;
  --gray-800: #2A2A2A;
  --text-dark: #1A1A1A;
  --text-medium: #444444;
  --text-light: #777777;
  --border: rgba(201,168,76,0.25);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.25);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.35);
  --shadow-gold: 0 8px 30px rgba(201,168,76,0.3);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.8;
}

.divider-gold {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 20px 0;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---- TOPBAR ---- */
.topbar {
  background: var(--navy);
  padding: 9px 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.topbar-left a,
.topbar-left .hours {
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.topbar-left a:hover { color: var(--gold-light); }
.topbar-left i { color: var(--gold); font-size: 0.75rem; }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-right a {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  transition: var(--transition);
}
.topbar-right a:hover {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
}

/* ---- HEADER / NAV ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(10,10,10,0.08);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(10,10,10,0.15);
}

.navbar { padding: 0; }
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
/* Tüm logo stil kuralları dosyanın alt kısmındaki "KARTVİZİT STİLİ LOGO"
   bölümünde override ediliyor, burada yalnızca container düzenli. */

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-dark);
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--gold-dark);
  background: var(--gray-100);
}
.nav-menu > li > a i { font-size: 0.7rem; transition: transform 0.3s; }
.nav-menu > li.dropdown:hover > a i { transform: rotate(180deg); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 9px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  box-shadow: var(--shadow-gold) !important;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: var(--white);
  min-width: 240px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--gold);
  padding: 8px 0;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  pointer-events: none;
}
.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 0.84rem;
  color: var(--text-medium);
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.dropdown-menu li a:hover {
  color: var(--gold-dark);
  background: var(--gray-100);
  border-left-color: var(--gold);
  padding-left: 24px;
}
.dropdown-all a {
  border-top: 1px solid var(--gray-200) !important;
  margin-top: 4px !important;
  color: var(--gold) !important;
  font-weight: 600 !important;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
  border-radius: 2px;
}
.mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- HERO SECTION ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(10,10,10,0.97) 0%, rgba(22,22,22,0.92) 50%, rgba(10,10,10,0.85) 100%);
  z-index: 1;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 40px,
      rgba(201,168,76,0.02) 40px,
      rgba(201,168,76,0.02) 80px
    );
  z-index: 0;
}

.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
}

.hero-content { max-width: 680px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge i { color: var(--gold); }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero h1 .highlight {
  color: var(--gold-light);
  font-style: italic;
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(201,168,76,0.2);
}

.stat-item { text-align: left; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ---- SERVICES SECTION ---- */
.services-section {
  padding: 100px 0;
  background: var(--off-white);
}

.section-header {
  margin-bottom: 60px;
}
.section-header.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-icon i {
  font-size: 1.5rem;
  color: var(--gold);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}
.service-card:hover .service-icon i { color: var(--white); }

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--navy);
}
.service-card p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 24px;
}
.service-card .read-more {
  color: var(--gold-dark);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.service-card .read-more:hover { gap: 12px; }

/* ---- ABOUT SECTION ---- */
.about-section {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--navy);
  color: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border: 3px solid var(--gold);
}
.about-image-badge .badge-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  display: block;
}
.about-image-badge .badge-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}

.about-content .section-label { margin-bottom: 16px; }
.about-content p {
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--gray-100);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.feature-item i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.feature-item span {
  font-size: 0.88rem;
  color: var(--text-medium);
  font-weight: 500;
}

/* ---- WHY US ---- */
.why-section {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
}

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

.why-card {
  padding: 36px 28px;
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  text-align: center;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(201,168,76,0.05);
  border-color: rgba(201,168,76,0.35);
  transform: translateY(-4px);
}
.why-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.why-card-icon i { font-size: 1.6rem; color: var(--gold); }
.why-card h4 { color: var(--white); margin-bottom: 12px; font-size: 1.1rem; }
.why-card p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.75; }

/* ---- TESTIMONIALS ---- */
.testimonials-section {
  padding: 100px 0;
  background: var(--gray-100);
}

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gray-200);
  line-height: 1;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}
.testimonial-stars i { color: var(--gold); font-size: 0.9rem; }

.testimonial-text {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  flex-shrink: 0;
}
.author-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
}
.author-title {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ---- CTA SECTION ---- */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-light) 100%);
  text-align: center;
}
.cta-section h2 {
  color: var(--navy);
  margin-bottom: 16px;
}
.cta-section p {
  color: rgba(10,10,10,0.75);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 36px;
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 16px 32px;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 600;
  transition: var(--transition);
}
.cta-phone:hover { background: var(--navy-mid); transform: translateY(-2px); }

/* ---- BLOG SECTION ---- */
.blog-section {
  padding: 100px 0;
  background: var(--white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}

.blog-card-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-image img { transform: scale(1.05); }

.blog-card-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card-image-placeholder i { font-size: 2.5rem; color: var(--gold); opacity: 0.6; }

.blog-category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--navy);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.blog-card-body {
  padding: 28px;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 0.8rem;
  color: var(--text-light);
}
.blog-meta i { color: var(--gold); }

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--navy);
  line-height: 1.4;
}
.blog-card h3 a:hover { color: var(--gold-dark); }
.blog-card p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---- CONTACT SECTION ---- */
.contact-section {
  padding: 100px 0;
  background: var(--off-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-info h3 {
  margin-bottom: 24px;
  color: var(--navy);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-200);
}
.contact-info-item:last-of-type { border-bottom: none; }

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { color: var(--gold); font-size: 1rem; }
.contact-info-text h5 { font-size: 0.8rem; color: var(--text-light); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; font-family: var(--font-body); }
.contact-info-text p, .contact-info-text a { color: var(--text-dark); font-size: 0.96rem; font-weight: 500; }
.contact-info-text a:hover { color: var(--gold-dark); }

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
}
.contact-form h3 { margin-bottom: 8px; }
.form-subtitle { color: var(--text-light); font-size: 0.9rem; margin-bottom: 32px; }

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

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-medium);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.93rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ---- FAQ SECTION ---- */
.faq-section {
  padding: 100px 0;
  background: var(--white);
}

.faq-container { max-width: 780px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold-dark); }
.faq-question .faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-question .faq-icon i { font-size: 0.75rem; transition: transform 0.3s; }
.faq-item.active .faq-question .faq-icon {
  background: var(--gold);
}
.faq-item.active .faq-question .faq-icon i { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 28px 24px;
  color: var(--text-medium);
  font-size: 0.92rem;
  line-height: 1.8;
  border-top: 1px solid var(--gray-200);
  padding-top: 20px;
}
.faq-item.active .faq-answer { display: block; }

/* ---- TEAM SECTION ---- */
.team-section {
  padding: 100px 0;
  background: var(--off-white);
}

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

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.team-photo {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex;
  align-items: center;
  justify-content: center;
}
.team-photo-placeholder i { font-size: 4rem; color: var(--gold); opacity: 0.4; }

.team-card-body { padding: 28px 24px; }
.team-card h3 { font-size: 1.25rem; color: var(--navy); margin-bottom: 6px; }
.team-title { color: var(--gold-dark); font-size: 0.85rem; font-weight: 500; margin-bottom: 16px; }
.team-bar { font-size: 0.8rem; color: var(--text-light); margin-bottom: 16px; }
.team-social { display: flex; gap: 10px; justify-content: center; }
.team-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gray-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
  transition: var(--transition);
}
.team-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* ---- BREADCRUMB ---- */
.page-hero {
  background: var(--navy);
  padding: 60px 0 50px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 30px, rgba(201,168,76,0.02) 30px, rgba(201,168,76,0.02) 60px);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 0.65rem; }

/* ---- FOOTER ---- */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.75); }

.footer-main { padding: 80px 0 50px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.footer-logo-sub {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.footer-about p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  font-weight: 600;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-contact-list li:last-child { border: none; }
.footer-contact-list i { color: var(--gold); font-size: 0.85rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-list span, .footer-contact-list a {
  color: rgba(255,255,255,0.65);
  font-size: 0.87rem;
  line-height: 1.6;
}
.footer-contact-list a:hover { color: var(--gold-light); }

.footer-links li { margin-bottom: 4px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.87rem;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  transition: var(--transition);
}
.footer-links a i { font-size: 0.65rem; color: var(--gold); }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-posts li { margin-bottom: 4px; }
.footer-posts a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.footer-posts a:hover .post-title { color: var(--gold-light); }
.post-date { font-size: 0.76rem; color: rgba(255,255,255,0.4); display: block; margin-bottom: 4px; }
.post-date i { color: var(--gold); margin-right: 4px; }
.post-title { font-size: 0.87rem; color: rgba(255,255,255,0.65); line-height: 1.5; display: block; }
.no-posts { font-size: 0.87rem; color: rgba(255,255,255,0.4); }

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ---- WHATSAPP + SCROLL TOP ---- */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 54px;
  height: 54px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.whatsapp-tooltip {
  position: absolute;
  right: 62px;
  white-space: nowrap;
  background: var(--navy);
  color: var(--white);
  padding: 7px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-family: var(--font-body);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  cursor: pointer;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-top:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ---- ALERT / FLASH ---- */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-success { background: #d1fae5; color: #065f46; border-left: 4px solid #10b981; }
.alert-error { background: #fee2e2; color: #991b1b; border-left: 4px solid #ef4444; }

/* ---- PAGINATION ---- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 50px;
}
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.88rem;
  color: var(--text-medium);
  transition: var(--transition);
}
.pagination a:hover, .pagination .current {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  font-weight: 600;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-grid { gap: 48px; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { max-height: 380px; }
  .about-image-badge { right: 0; bottom: -20px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .topbar { display: none; }

  .mobile-menu-btn { display: flex; }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 20px 0;
    gap: 0;
    z-index: 1000;
    border-top: 3px solid var(--gold);
  }
  .nav-menu.open { display: flex; }
  .nav-menu > li > a { padding: 13px 24px; border-radius: 0; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 20px;
    pointer-events: auto;
    background: var(--gray-100);
    border-top: none;
    display: none;
  }
  .dropdown.open .dropdown-menu { display: block; }
  .nav-cta { margin: 12px 24px; width: calc(100% - 48px); justify-content: center; }

  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-main { padding: 50px 0 32px; }

  .contact-form { padding: 28px; }

  .services-grid, .why-grid, .testimonials-grid, .blog-grid, .team-grid {
    grid-template-columns: 1fr;
  }
  .about-features { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
  .section-title { font-size: 1.8rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .stat-number { font-size: 2rem; }
}

/* ============================================================
   YENİ EKLENENLER - Kartvizit Logo, Marquee, Hero Görsel, 
   Justify Metin, Adres Topbar, Mobil Uyum
   ============================================================ */

/* ---- KARTVİZİT STİLİ LOGO ---- */
.logo {
  gap: 14px !important;
}
.logo-svg {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 6px rgba(201,168,76,0.3));
  transition: var(--transition);
}
.logo:hover .logo-svg {
  transform: rotate(-4deg) scale(1.05);
}
.logo-img {
  height: 58px;
  width: auto;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  padding: 2px 0;
  line-height: 1;
}
.logo-rule {
  display: block;
  width: 100%;
  min-width: 210px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold-bright) 50%, var(--gold) 80%, transparent 100%);
  opacity: 0.85;
}
.logo-rule-top { margin-bottom: 4px; }
.logo-rule-bottom { margin-top: 4px; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  padding: 2px 0;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 60%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-tagline {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding-bottom: 2px;
}
.logo-subline {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 4px;
  opacity: 0.85;
}

/* ---- TOPBAR ADRES ---- */
.topbar-address {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem;
  max-width: 360px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.topbar-address i { color: var(--gold); font-size: 0.75rem; flex-shrink: 0; }
.tb-email {
  max-width: 220px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Topbar bazı medya sınırlarında öğeleri gizle - adres öncelikli kalsın */
@media (max-width: 1100px) {
  .topbar .hours { display: none; }
}
@media (max-width: 920px) {
  .topbar .tb-email { display: none; }
}
@media (max-width: 768px) {
  .topbar { display: none; }
}

/* ---- HERO GÖRSEL / SVG ---- */
.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 46%;
  max-width: 640px;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.22;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to left, black 40%, transparent 100%);
  mask-image: linear-gradient(to left, black 40%, transparent 100%);
}
.hero-visual {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  max-width: 40vw;
  max-height: 70vh;
  z-index: 0;
  opacity: 0.55;
  pointer-events: none;
}
.hero-visual svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.15));
}
@media (max-width: 900px) {
  .hero-visual { display: none; }
  .hero-image { width: 100%; opacity: 0.08; -webkit-mask-image: none; mask-image: none; }
}

/* Hero başlığı tek satır altın - güncellenmiş stil */
.hero h1 .highlight {
  color: var(--gold-light);
  font-style: italic;
  display: inline-block;
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 30px rgba(201,168,76,0.2);
}

/* Hero arka plan - koyu mavi yerine daha nötr, siyah+altın */
.hero-bg {
  background: 
    radial-gradient(ellipse at top left, rgba(201,168,76,0.08) 0%, transparent 50%),
    linear-gradient(135deg, #0A0A0A 0%, #161616 50%, #0A0A0A 100%) !important;
}

/* Site header gölgesi - mavi→siyah */
.site-header {
  box-shadow: 0 2px 20px rgba(10,10,10,0.08) !important;
}
.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(10,10,10,0.15) !important;
}

/* ---- TESTIMONIAL MARQUEE (Soldan Sağa Kayan) ---- */
.testimonials-marquee {
  overflow: hidden;
  width: 100%;
  padding: 20px 0 40px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.testimonials-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marqueeLtr 60s linear infinite;
  will-change: transform;
}
.testimonials-marquee:hover .testimonials-track {
  animation-play-state: paused;
}
.testimonials-track .testimonial-card {
  flex: 0 0 340px;
  width: 340px;
  margin: 0;
}
@keyframes marqueeLtr {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
/* Hareketi azalt (accessibility) */
@media (prefers-reduced-motion: reduce) {
  .testimonials-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
  }
  .testimonials-marquee { mask-image: none; -webkit-mask-image: none; }
}
@media (max-width: 640px) {
  .testimonials-track .testimonial-card {
    flex: 0 0 280px;
    width: 280px;
  }
  .testimonials-track { animation-duration: 50s; }
}

/* ---- HİZMET İÇERİKLERİ İKİ YANA YASLI ---- */
.article-content p,
.article-content li {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}
.article-content h2,
.article-content h3 {
  text-align: left;
}
/* Mobil'de justify ile oluşan boşluk sorunu olmasın */
@media (max-width: 600px) {
  .article-content p,
  .article-content li {
    text-align: left;
    hyphens: none;
  }
}

/* Blog/gizlilik/kullanım gibi diğer makale içerikleri */
.blog-content p,
.blog-post-content p {
  text-align: justify;
  hyphens: auto;
}
@media (max-width: 600px) {
  .blog-content p,
  .blog-post-content p { text-align: left; hyphens: none; }
}

/* ---- HERO H1 - TEK SATIR GÜVENCELİ ---- */
.hero h1 {
  font-size: clamp(2rem, 5.2vw, 3.8rem) !important;
  line-height: 1.2 !important;
}
@media (max-width: 600px) {
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.4rem) !important; }
}

/* ---- LOGO - Mobilde kompakt tut ---- */
@media (max-width: 640px) {
  .logo-tagline { font-size: 0.55rem; letter-spacing: 0.14em; }
  .logo-name { font-size: 1.35rem; letter-spacing: 0.1em; }
  .logo-subline { display: none; }
  .logo-rule { min-width: 140px; }
  .logo-svg, .logo-img { width: 48px; height: 48px; }
}
@media (max-width: 520px) {
  .logo-tagline { display: none; }
  .logo-rule { display: none; }
  .logo-name { font-size: 1.1rem; letter-spacing: 0.08em; }
  .logo-subline { display: none; }
  .logo-svg, .logo-img { width: 42px; height: 42px; }
  .logo { gap: 10px !important; }
}

/* ---- FOOTER - adresin okunaklı olması için ---- */
.footer-contact-list li {
  align-items: flex-start;
}
.footer-contact-list li span,
.footer-contact-list li a {
  line-height: 1.55;
  word-break: break-word;
}

/* ---- Section subtitle (testimonial header için) ---- */
.testimonials-section .section-subtitle {
  color: var(--text-light);
  max-width: 640px;
}

/* ---- Admin ve diğer yerlerdeki koyu mavi gradientleri sitedeki öğelerde override ---- */
/* Avatar / placeholder gradyanları navy (siyah) kullansın */
.author-avatar {
  background: linear-gradient(135deg, #0A0A0A, var(--gold-dark)) !important;
}

/* ---- MOBIL UYUM EK İYİLEŞTİRMELER ---- */
@media (max-width: 768px) {
  .hero { min-height: auto; }
  .hero .container { padding-top: 60px; padding-bottom: 60px; }
  .services-section, .about-section, .why-section, 
  .testimonials-section, .blog-section, .faq-section { padding: 60px 0; }
  .service-card { padding: 28px 22px; }
  .container { padding: 0 18px; }
  .page-hero { padding: 50px 0 40px; }
}

@media (max-width: 480px) {
  .hero-badge { font-size: 0.7rem; padding: 6px 12px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .btn { font-size: 0.82rem; padding: 12px 20px; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions > * { width: 100%; text-align: center; justify-content: center; }
}

/* ---- WHATSAPP FLOAT - mobile boyut ---- */
@media (max-width: 480px) {
  .whatsapp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .scroll-top { width: 42px; height: 42px; }
}

/* ---- SERVICE DETAY SAYFASI - MOBIL ---- */
@media (max-width: 960px) {
  .service-detail-layout { gap: 32px !important; }
}

/* ---- FIX: Topbar phone on small - adres öncelikli kalsın ---- */
@media (max-width: 1200px) and (min-width: 769px) {
  .topbar-left { gap: 16px; }
  .topbar-address { max-width: 280px; font-size: 0.74rem; }
}
