/* ============================================
   ATLAS HUKUK OFİSİ — Premium Style System
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --dark-brown: #3C2415;
  --medium-brown: #6B4226;
  --warm-brown: #A0714F;
  --light-brown: #C4956A;
  --cream: #E8D5C4;
  --light-cream: #F5EDE4;
  --dark-text: #1A1A1A;
  --gold: #C8A97E;
  --gold-light: #D4B98A;
  --gold-dark: #B8955E;
  --white: #FFFFFF;
  --black: #000000;
  --whatsapp: #25D366;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.12);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 16px 60px rgba(0, 0, 0, 0.25);
  --shadow-gold: 0 4px 25px rgba(200, 169, 126, 0.3);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --glass-bg: rgba(60, 36, 21, 0.45);
  --glass-border: rgba(200, 169, 126, 0.18);
  --glass-blur: 18px;

  --section-padding: 100px 0;
  --container-max: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--cream);
  background-color: var(--dark-brown);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--dark-brown);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  width: 80px;
  height: 80px;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(200, 169, 126, 0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.6; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(30, 18, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(200, 169, 126, 0.1);
}

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

.nav-logo img {
  max-height: 50px;
  width: auto;
  transition: transform var(--transition-fast);
}

.nav-logo img:hover {
  transform: scale(1.03);
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(232, 213, 196, 0.8);
  letter-spacing: 0.3px;
  position: relative;
  padding: 4px 0;
}

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

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

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

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  padding: 8px 18px;
  border: 1px solid rgba(200, 169, 126, 0.35);
  border-radius: 100px;
  transition: all var(--transition-fast);
}

.nav-phone:hover {
  background: rgba(200, 169, 126, 0.12);
  border-color: var(--gold);
}

.nav-phone svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 14, 7, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--cream);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-base);
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

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

/* Stagger animation */
.mobile-menu.open a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.open a:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.open a:nth-child(6) { transition-delay: 0.35s; }

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30, 14, 6, 0.92) 0%,
    rgba(60, 36, 21, 0.85) 40%,
    rgba(107, 66, 38, 0.7) 100%
  );
  z-index: 1;
}

/* Globe particle canvas */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 750px;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(200, 169, 126, 0.1);
  border: 1px solid rgba(200, 169, 126, 0.25);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-badge svg {
  width: 14px;
  height: 14px;
  fill: var(--gold);
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

.hero h1 span {
  color: var(--gold);
  display: inline;
}

.hero-subtitle {
  font-size: 1.12rem;
  color: rgba(232, 213, 196, 0.75);
  max-width: 600px;
  margin-bottom: 42px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  border: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark-brown);
  box-shadow: 0 4px 20px rgba(200, 169, 126, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(200, 169, 126, 0.5);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(232, 213, 196, 0.35);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 169, 126, 0.08);
  transform: translateY(-2px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(232, 213, 196, 0.5);
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(200, 169, 126, 0.4);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 3px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* Decorative globe shapes */
.hero-globe-decor {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 126, 0.07);
  z-index: 2;
  pointer-events: none;
  animation: globeRotate 40s linear infinite;
}

.hero-globe-decor::before {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 126, 0.05);
}

.hero-globe-decor::after {
  content: '';
  position: absolute;
  inset: 80px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 126, 0.04);
}

@keyframes globeRotate {
  to { transform: translateY(-50%) rotate(360deg); }
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section-dark {
  background: var(--dark-brown);
}

.section-darker {
  background: #2A1810;
}

.section-gradient {
  background: linear-gradient(180deg, var(--dark-brown) 0%, #2A1810 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
}

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

.section-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  margin: 0 auto;
  border-radius: 3px;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children .reveal:nth-child(1) { transition-delay: 0s; }
.stagger-children .reveal:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .reveal:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .reveal:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .reveal:nth-child(5) { transition-delay: 0.35s; }
.stagger-children .reveal:nth-child(6) { transition-delay: 0.4s; }

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h3 {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.about-text p {
  color: rgba(232, 213, 196, 0.75);
  font-size: 1.02rem;
  line-height: 1.9;
  margin-bottom: 28px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--cream);
  font-size: 0.95rem;
}

.about-feature-item svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  flex-shrink: 0;
}

/* Stats Cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 169, 126, 0.35);
  box-shadow: var(--shadow-gold);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(232, 213, 196, 0.65);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   PRACTICE AREAS
   ============================================ */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.practice-card {
  background: rgba(42, 24, 16, 0.6);
  border: 1px solid rgba(200, 169, 126, 0.1);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.practice-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 169, 126, 0.08), transparent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.practice-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 169, 126, 0.3);
  box-shadow: var(--shadow-gold);
}

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

.practice-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(200, 169, 126, 0.15), rgba(200, 169, 126, 0.05));
  border: 1px solid rgba(200, 169, 126, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all var(--transition-base);
}

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

.practice-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--gold);
  transition: fill var(--transition-fast);
}

.practice-card:hover .practice-icon svg {
  fill: var(--dark-brown);
}

.practice-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
  transition: color var(--transition-fast);
}

.practice-card:hover h3 {
  color: var(--gold);
}

.practice-card p {
  font-size: 0.9rem;
  color: rgba(232, 213, 196, 0.6);
  line-height: 1.7;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.team-card {
  background: rgba(42, 24, 16, 0.5);
  border: 1px solid rgba(200, 169, 126, 0.1);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 169, 126, 0.3);
  box-shadow: var(--shadow-gold);
}

.team-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 3.5;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team-card:hover .team-photo img {
  transform: scale(1.06);
}

.team-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 14, 6, 0.9) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.team-card:hover .team-photo-overlay {
  opacity: 1;
}

.team-info {
  padding: 22px 20px;
  text-align: center;
}

.team-info h3 {
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 4px;
}

.team-info span {
  font-size: 0.82rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.why-card {
  display: flex;
  gap: 20px;
  padding: 32px 28px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(200, 169, 126, 0.3);
  box-shadow: var(--shadow-gold);
}

.why-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: linear-gradient(135deg, rgba(200, 169, 126, 0.15), rgba(200, 169, 126, 0.05));
  border: 1px solid rgba(200, 169, 126, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
}

.why-content h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 8px;
}

.why-content p {
  font-size: 0.9rem;
  color: rgba(232, 213, 196, 0.65);
  line-height: 1.7;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-form h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-form > p {
  color: rgba(232, 213, 196, 0.6);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

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

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  background: rgba(26, 26, 26, 0.4);
  border: 1px solid rgba(200, 169, 126, 0.15);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(232, 213, 196, 0.35);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 126, 0.1);
}

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

.form-group select option {
  background: var(--dark-brown);
  color: var(--cream);
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark-brown);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-base);
  font-family: var(--font-body);
  letter-spacing: 0.5px;
}

.btn-submit:hover {
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

/* Contact Info */
.contact-info-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.contact-info-card:hover {
  border-color: rgba(200, 169, 126, 0.3);
  transform: translateX(4px);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: linear-gradient(135deg, rgba(200, 169, 126, 0.15), rgba(200, 169, 126, 0.05));
  border: 1px solid rgba(200, 169, 126, 0.2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}

.contact-info-text h4 {
  font-size: 0.92rem;
  color: var(--gold);
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-weight: 600;
}

.contact-info-text p {
  font-size: 0.88rem;
  color: rgba(232, 213, 196, 0.7);
  line-height: 1.5;
}

/* Map */
.contact-map {
  margin-top: 8px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(200, 169, 126, 0.15);
  aspect-ratio: 16 / 9;
  background: rgba(42, 24, 16, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(232, 213, 196, 0.4);
  font-size: 0.88rem;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.5) contrast(1.1);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #1A0F08;
  border-top: 1px solid rgba(200, 169, 126, 0.08);
  padding: 64px 0 0;
}

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

.footer-brand img {
  max-height: 45px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(232, 213, 196, 0.55);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(200, 169, 126, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
  fill: var(--gold);
  transition: fill var(--transition-fast);
}

.footer-social a:hover svg {
  fill: var(--dark-brown);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 20px;
}

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

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(232, 213, 196, 0.55);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(200, 169, 126, 0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(232, 213, 196, 0.4);
}

.footer-bottom a {
  color: var(--gold);
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 58px;
  height: 58px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-base);
  animation: whatsappPulse 2s ease-in-out infinite;
}

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

.whatsapp-btn svg {
  width: 30px;
  height: 30px;
  fill: white;
}

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

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 96px;
  z-index: 900;
  width: 46px;
  height: 46px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  transition: fill var(--transition-fast);
}

.back-to-top:hover svg {
  fill: var(--dark-brown);
}

/* ============================================
   FİLO HASAR YÖNETİMİ SECTION
   ============================================ */
.filo-section {
  background: linear-gradient(180deg, #0d0a07 0%, #1a140e 50%, #0d0a07 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.filo-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(200, 169, 126, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 169, 126, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.filo-section .section-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: rgba(232, 213, 196, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* AI Badge */
.filo-ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 32px auto;
  padding: 10px 24px;
  background: rgba(200, 169, 126, 0.08);
  border: 1px solid rgba(200, 169, 126, 0.2);
  border-radius: 100px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
  position: relative;
}

.ai-pulse {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

/* Filo Stats */
.filo-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 48px auto;
  flex-wrap: wrap;
}

.filo-stat {
  text-align: center;
  padding: 20px 40px;
}

.filo-stat-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.filo-stat-number span {
  font-size: 1.6rem;
  color: rgba(200, 169, 126, 0.6);
}

.filo-stat-label {
  font-size: 0.82rem;
  color: rgba(232, 213, 196, 0.5);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.filo-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(200, 169, 126, 0.15);
}

/* Process Steps */
.filo-process {
  margin: 56px 0;
}

.filo-process-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--cream);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 500;
}

.filo-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
}

.filo-step {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 28px 16px;
  background: rgba(200, 169, 126, 0.04);
  border: 1px solid rgba(200, 169, 126, 0.1);
  border-radius: 16px;
  position: relative;
  transition: all 0.3s;
}

.filo-step:hover {
  background: rgba(200, 169, 126, 0.08);
  border-color: rgba(200, 169, 126, 0.25);
  transform: translateY(-4px);
}

.filo-step-number {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  opacity: 0.6;
}

.filo-step-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  background: rgba(200, 169, 126, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filo-step-icon svg {
  width: 22px;
  height: 22px;
  fill: var(--gold);
}

.filo-step h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 8px;
  font-weight: 600;
}

.filo-step p {
  font-size: 0.82rem;
  color: rgba(232, 213, 196, 0.5);
  line-height: 1.6;
}

.filo-step-arrow {
  color: rgba(200, 169, 126, 0.2);
  font-size: 1.5rem;
  padding-top: 60px;
  flex-shrink: 0;
}

/* Feature Cards */
.filo-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0;
}

.filo-feature-card {
  padding: 32px 24px;
  background: rgba(200, 169, 126, 0.04);
  border: 1px solid rgba(200, 169, 126, 0.1);
  border-radius: 16px;
  transition: all 0.3s;
}

.filo-feature-card:hover {
  background: rgba(200, 169, 126, 0.08);
  border-color: rgba(200, 169, 126, 0.25);
  transform: translateY(-4px);
}

.filo-feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(200, 169, 126, 0.15), rgba(200, 169, 126, 0.05));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.filo-feature-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--gold);
}

.filo-feature-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 10px;
  font-weight: 600;
}

.filo-feature-card p {
  font-size: 0.88rem;
  color: rgba(232, 213, 196, 0.5);
  line-height: 1.65;
}

/* CTA */
.filo-cta {
  text-align: center;
  margin-top: 48px;
  padding: 40px;
  background: linear-gradient(135deg, rgba(200, 169, 126, 0.08), rgba(200, 169, 126, 0.02));
  border: 1px solid rgba(200, 169, 126, 0.15);
  border-radius: 20px;
}

.filo-cta p {
  font-size: 1.1rem;
  color: rgba(232, 213, 196, 0.7);
  margin-bottom: 20px;
}

/* Filo Responsive */
@media (max-width: 1024px) {
  .filo-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .filo-steps {
    flex-direction: column;
    align-items: center;
  }
  .filo-step {
    max-width: 100%;
    width: 100%;
  }
  .filo-step-arrow {
    padding-top: 0;
    transform: rotate(90deg);
  }
  .filo-stat {
    padding: 16px 24px;
  }
  .filo-stat-number {
    font-size: 2rem;
  }
  .filo-stat-divider {
    display: none;
  }
  .filo-stats {
    gap: 8px;
  }
  .filo-features {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   LANGUAGE TOGGLE
   ============================================ */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  background: none;
  border: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  line-height: 1;
  margin-left: 16px;
  opacity: 0.7;
}

.lang-toggle:hover {
  opacity: 1;
}

.lang-divider {
  color: rgba(200, 169, 126, 0.3);
  font-weight: 300;
  margin: 0 1px;
}

.lang-option {
  transition: all 0.2s;
}

.lang-active {
  color: var(--gold);
  font-weight: 600;
}

.lang-inactive {
  color: rgba(232, 213, 196, 0.45);
  font-weight: 400;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }

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

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .hero-globe-decor {
    right: -200px;
    width: 500px;
    height: 500px;
  }

  .about-grid {
    gap: 40px;
  }
}

/* Mobile Landscape */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
  }

  .nav-links,
  .nav-phone {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .lang-toggle {
    padding: 6px 12px;
    font-size: 0.78rem;
  }

  .mobile-menu {
    display: flex;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-globe-decor {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 28px 20px;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat-card {
    padding: 20px 16px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }

  .why-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .whatsapp-btn {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }

  .back-to-top {
    right: 80px;
    bottom: 20px;
    width: 40px;
    height: 40px;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gold { color: var(--gold); }
.text-cream { color: var(--cream); }
.text-white { color: var(--white); }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }

/* ============================================
   LEGAL MODALS (KVKK & Çerez)
   ============================================ */
.legal-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 10000;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.legal-modal.active {
  display: flex;
}

.legal-modal-content {
  background: var(--light-cream);
  color: var(--dark-brown);
  max-width: 720px;
  width: 100%;
  max-height: 80vh;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.legal-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--medium-brown);
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s, transform 0.2s;
}

.legal-modal-close:hover {
  color: var(--dark-brown);
  transform: scale(1.2);
}

.legal-modal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: var(--dark-brown);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 12px;
}

.legal-text h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin: 20px 0 10px;
  color: var(--medium-brown);
}

.legal-text p {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #4a3728;
}

.legal-text ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-text ul li {
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 6px;
  color: #4a3728;
  position: relative;
  padding-left: 8px;
}

.legal-text ul li::marker {
  color: var(--gold);
}

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(12px);
  padding: 20px 24px;
  z-index: 9999;
  align-items: center;
  justify-content: center;
  border-top: 1px solid rgba(200, 169, 126, 0.3);
  animation: slideUpBanner 0.4s ease;
}

@keyframes slideUpBanner {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-content {
  max-width: 1060px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-content p {
  flex: 1;
  font-size: 0.88rem;
  color: var(--cream);
  line-height: 1.6;
  min-width: 280px;
  margin: 0;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-accept {
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--gold), #b8944e);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(200, 169, 126, 0.4);
}

.cookie-reject {
  padding: 10px 24px;
  background: transparent;
  color: var(--light-brown);
  border: 1px solid rgba(200, 169, 126, 0.3);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.cookie-reject:hover {
  border-color: var(--gold);
  color: var(--gold);
}

@media (max-width: 768px) {
  .legal-modal-content {
    padding: 24px 20px;
    max-height: 85vh;
  }

  .legal-modal-content h2 {
    font-size: 1.4rem;
    padding-right: 30px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }
}
