/* ============================================
   İŞLEYEN HUKUK BÜROSU - DEMO CLONE
   Design System & Full Styles
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Red+Hat+Display:wght@400;500;600;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
  --primary-dark: #1A212D;
  --primary-darker: #141a24;
  --gold: #B89B64;
  --gold-hover: #d4b47a;
  --gold-dark: #9a7f4e;
  --white: #FFFFFF;
  --light-bg: #F8F9FA;
  --light-gray: #E9ECEF;
  --text-dark: #2c3e50;
  --text-body: #555555;
  --text-light: #888888;
  --border-color: #dee2e6;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-gold: 0 4px 20px rgba(184,155,100,0.3);
  --transition: all 0.3s ease;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --max-width: 1200px;
  --header-height: 80px;
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Red Hat Display', sans-serif;
  color: var(--text-dark);
  line-height: 1.3;
  font-weight: 700;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

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

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

ul { list-style: none; }

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

.section-padding {
  padding: 80px 0;
}

/* ── Section Titles ── */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.2rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title p {
  margin-top: 15px;
  color: var(--text-light);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}

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

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

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

.btn-dark {
  background: var(--primary-dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--primary-darker);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--primary-dark);
  transition: var(--transition);
  height: var(--header-height);
}

.header.scrolled {
  background: var(--primary-darker);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  height: 70px;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.logo-icon {
  width: 45px;
  height: 45px;
  background: transparent;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text .firm-name {
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 0.5px;
}

.logo-text .firm-subtitle {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

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

.nav-menu a {
  padding: 10px 16px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 6px;
  position: relative;
}

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

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 60%;
}

/* Dropdown */
.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark) !important;
  font-size: 0.85rem;
  border-radius: 0;
}

.dropdown-menu a:hover {
  background: var(--light-bg);
  color: var(--gold) !important;
}

.dropdown-menu a::after {
  display: none;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta .btn {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

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

.hero-bg {
  position: absolute;
  top: var(--header-height);
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url('../img/gemini.png');
  background-size: cover;
  background-position: 50% 10%;
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: var(--header-height);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184,155,100,0.15);
  border: 1px solid rgba(184,155,100,0.3);
  padding: 8px 18px;
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 3.2rem;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.15;
}

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

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

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

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-item {
  text-align: center;
}

.hero-stat-item .number {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}

.hero-stat-item .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 5px;
}

/* ============================================
   PROCESS / 3-STEP SECTION
   ============================================ */
.process-section {
  padding: 80px 0;
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.process-card {
  text-align: center;
  padding: 40px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  position: relative;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.process-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(184,155,100,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--gold);
  transition: var(--transition);
}

.process-card:hover .process-icon {
  background: var(--gold);
  color: var(--white);
}

.process-step-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-family: 'Red Hat Display', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(184,155,100,0.1);
}

.process-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.process-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* Connector arrows between cards */
.process-card:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--gold);
  z-index: 5;
}

/* ============================================
   ABOUT PREVIEW SECTION
   ============================================ */
.about-preview {
  padding: 80px 0;
  background: var(--light-bg);
}

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

.about-content .subtitle {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.about-content h2 {
  margin-bottom: 20px;
  font-size: 2rem;
}

.about-content p {
  margin-bottom: 15px;
  line-height: 1.8;
}

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

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 0.9rem;
}

.about-feature .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(184,155,100,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.about-image-wrapper {
  position: relative;
}

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

.about-image-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--gold);
  color: var(--white);
  padding: 20px 25px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.about-image-badge .number {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
}

.about-image-badge .text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   PRACTICE AREAS / SERVICE CARDS
   ============================================ */
.services-section {
  padding: 80px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  padding: 35px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gold);
  transition: var(--transition);
}

.service-card:hover::before {
  height: 100%;
}

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

.service-card .service-icon {
  font-size: 2.2rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

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

.service-link:hover {
  gap: 10px;
}

.services-cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================
   STATISTICS / PROGRESS SECTION
   ============================================ */
.stats-section {
  padding: 80px 0;
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(184,155,100,0.05);
}

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

.stats-content h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 15px;
}

.stats-content p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 30px;
}

.progress-item {
  margin-bottom: 25px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--white);
  font-weight: 500;
  font-size: 0.9rem;
}

.progress-bar {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-hover));
  border-radius: 10px;
  width: 0;
  transition: width 1.5s ease;
}

.stats-counters {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.counter-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  transition: var(--transition);
}

.counter-card:hover {
  background: rgba(184,155,100,0.1);
  border-color: rgba(184,155,100,0.3);
  transform: translateY(-5px);
}

.counter-card .counter-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.counter-card .counter-number {
  font-family: 'Red Hat Display', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
}

.counter-card .counter-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 5px;
}

/* ============================================
   TOOLS / CALCULATORS SECTION
   ============================================ */
.tools-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.tools-search {
  max-width: 500px;
  margin: 0 auto 40px;
  position: relative;
}

.tools-search input {
  width: 100%;
  padding: 15px 20px 15px 50px;
  border: 2px solid var(--light-gray);
  border-radius: 50px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  background: var(--white);
  transition: var(--transition);
}

.tools-search input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.tools-search .search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 1.1rem;
}

.tools-category {
  margin-bottom: 50px;
}

.tools-category h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.tools-category h3 .cat-icon {
  color: var(--gold);
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tool-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--light-gray);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.tool-card .tool-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(184,155,100,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.tool-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.tool-card p {
  font-size: 0.8rem;
  color: var(--text-light);
  flex: 1;
  margin-bottom: 15px;
}

.tool-card .tool-link {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tool-card:hover .tool-link {
  gap: 10px;
}

/* ============================================
   CALCULATOR INNER PAGE
   ============================================ */
.calculator-page {
  padding: 40px 0 80px;
  margin-top: var(--header-height);
}

.calculator-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.calculator-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 35px;
}

.calculator-box h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.calculator-box .calc-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-gray);
}

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

.calc-form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.calc-form-group input,
.calc-form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}

.calc-form-group input:focus,
.calc-form-group select:focus {
  outline: none;
  border-color: var(--gold);
}

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

.calc-buttons {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.calc-result {
  margin-top: 30px;
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 25px;
  display: none;
}

.calc-result.visible {
  display: block;
  animation: fadeInUp 0.4s ease;
}

.calc-result h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.calc-result-table {
  width: 100%;
  border-collapse: collapse;
}

.calc-result-table tr {
  border-bottom: 1px solid var(--light-gray);
}

.calc-result-table td {
  padding: 10px 0;
  font-size: 0.9rem;
}

.calc-result-table td:first-child {
  font-weight: 600;
  color: var(--text-dark);
}

.calc-result-table td:last-child {
  text-align: right;
  color: var(--gold);
  font-weight: 700;
}

.calc-result .total-row td {
  font-size: 1.1rem;
  border-bottom: none;
  padding-top: 15px;
}

/* Sidebar */
.calc-sidebar .sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 25px;
  margin-bottom: 25px;
}

.calc-sidebar .sidebar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.calc-sidebar .sidebar-list a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.85rem;
  color: var(--text-body);
  transition: var(--transition);
}

.calc-sidebar .sidebar-list a:hover {
  color: var(--gold);
  padding-left: 10px;
}

.calc-sidebar .sidebar-list a:last-child {
  border-bottom: none;
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  position: relative;
  padding: 120px 0 60px;
  background: var(--primary-dark);
  text-align: center;
  margin-top: var(--header-height);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(184,155,100,0.05);
}

.page-hero h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.page-hero .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
}

.page-hero .breadcrumb a {
  color: var(--gold);
}

/* ============================================
   ABOUT PAGE SECTIONS
   ============================================ */
.about-full {
  padding: 80px 0;
}

.about-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-intro p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-body);
}

.lawyer-section {
  padding: 80px 0;
  background: var(--light-bg);
}

.lawyer-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: start;
}

.lawyer-photo img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.lawyer-info h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.lawyer-info .lawyer-title {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}

.lawyer-info p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.values-section {
  padding: 80px 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.value-card {
  text-align: center;
  padding: 35px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.value-card .value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(184,155,100,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
  color: var(--gold);
}

.value-card h4 {
  margin-bottom: 8px;
}

.value-card p {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ============================================
   SERVICES PAGE (Full 12 cards)
   ============================================ */
.services-full {
  padding: 80px 0;
}

.services-intro {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.contact-info-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}

.contact-info-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.contact-info-card .info-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(184,155,100,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--gold);
  font-size: 1.3rem;
}

.contact-info-card h4 {
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.contact-info-card p {
  font-size: 0.8rem;
  color: var(--text-light);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: var(--radius);
}

.contact-form-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 35px;
}

.contact-form-box h3 {
  margin-bottom: 25px;
  font-size: 1.3rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

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

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--light-gray);
  overflow: hidden;
  margin-bottom: 25px;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.blog-card-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, var(--primary-dark), rgba(184,155,100,0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 2rem;
}

.blog-card-content {
  padding: 25px;
}

.blog-card-meta {
  display: flex;
  gap: 15px;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

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

.blog-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.blog-sidebar .sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 25px;
  margin-bottom: 25px;
}

.blog-sidebar .sidebar-widget h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}

.blog-sidebar .search-box {
  position: relative;
}

.blog-sidebar .search-box input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
}

.blog-sidebar .search-box input:focus {
  outline: none;
  border-color: var(--gold);
}

.blog-sidebar .category-list li {
  border-bottom: 1px solid var(--light-gray);
}

.blog-sidebar .category-list li:last-child {
  border-bottom: none;
}

.blog-sidebar .category-list a {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 0.85rem;
  color: var(--text-body);
}

.blog-sidebar .category-list a:hover {
  color: var(--gold);
  padding-left: 8px;
}

.category-count {
  background: var(--light-bg);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary-dark);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.footer-about p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

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

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

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

.footer-links a {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  padding: 6px 0;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 5px;
}

.footer-contact-info p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-info .fc-icon {
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 3px;
}

.footer-legal {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  line-height: 1.6;
}

.footer-legal p {
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  line-height: 1.6;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

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

/* ============================================
   FLOATING WHATSAPP WIDGET
   ============================================ */
.whatsapp-widget {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
}

.whatsapp-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}

.whatsapp-popup {
  position: absolute;
  bottom: 75px;
  right: 0;
  width: 300px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
}

.whatsapp-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.whatsapp-popup-header {
  background: var(--primary-dark);
  padding: 18px 20px;
  color: var(--white);
}

.whatsapp-popup-header h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 3px;
}

.whatsapp-popup-header p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

.whatsapp-popup-body {
  padding: 20px;
}

.whatsapp-popup-body a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
}

.wp-link {
  background: rgba(37,211,102,0.1);
  color: #25D366;
}

.wp-link:hover {
  background: #25D366;
  color: var(--white);
}

.phone-link {
  background: rgba(184,155,100,0.1);
  color: var(--gold);
}

.phone-link:hover {
  background: var(--gold);
  color: var(--white);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid,
  .tools-grid,
  .services-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  
  .nav-menu, .header-cta {
    display: none;
  }

  .nav-menu.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--primary-dark);
    padding: 20px;
    gap: 0;
    box-shadow: var(--shadow-lg);
  }

  .nav-menu.active a {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .hamburger {
    display: flex;
  }

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

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

  .process-card:not(:last-child)::after {
    display: none;
  }

  .about-grid,
  .lawyer-grid,
  .contact-layout,
  .calculator-layout,
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .tools-grid,
  .services-full-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 20px;
  }

  .values-grid,
  .contact-info-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-counters {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero-buttons {
    flex-direction: column;
  }

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

  .about-image-wrapper img {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .section-padding {
    padding: 50px 0;
  }

  h1 { font-size: 1.6rem; }

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .values-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .stats-counters {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

/* Ekstra: Sadece mobilde gorunen linkler */
.mobile-only {
    display: none !important;
}
@media (max-width: 768px) {
    .mobile-only {
        display: block !important;
    }
}
