/* ====================================
   KOÇAK HUKUK & DANIŞTMANLIK - GLOBAL STYLES
   ==================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables - Renk Paleti */
:root {
  /* Ana Renkler */
  --primary-navy: #1a2b4a;
  --primary-blue: #2c4875;
  --accent-gold: #c9a961;
  --accent-orange: #d97739;
  
  /* Nötr Renkler */
  --white: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --dark-gray: #343a40;
  
  /* Tipografi */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  
  /* Spacing */
  --section-padding: 80px 0;
  --container-max: 1400px;
  
  /* Transitions */
  --transition: all 0.3s ease;
}

/* ====================================
   RESET & BASE STYLES
   ==================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--dark-gray);
  line-height: 1.7;
  background-color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

/* ====================================
   TYPOGRAPHY
   ==================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary-navy);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--medium-gray);
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.8;
}

/* ====================================
   LAYOUT UTILITIES
   ==================================== */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  width: 100%;
  padding: 0 20px;
}

.section {
  padding: var(--section-padding);
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(to right, var(--accent-gold), var(--accent-orange));
}

.section-title p {
  font-size: 1.1rem;
  color: var(--medium-gray);
  max-width: 700px;
  margin: 1.5rem auto 0;
}

.section-subtitle {
  display: block;
  color: var(--accent-gold);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

/* ====================================
   INTRO SECTION
   ==================================== */

.intro-section {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.intro-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-text {
  text-align: left;
}

.intro-highlight {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.08) 0%, rgba(217, 119, 57, 0.05) 100%);
  border-left: 4px solid var(--accent-gold);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  position: relative;
}

.intro-highlight i.fa-quote-left {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: var(--accent-gold);
  opacity: 0.2;
}

.intro-highlight p {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--dark-gray);
  margin: 0;
}

.intro-paragraph {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
  padding-left: 2.5rem;
  position: relative;
}

.intro-paragraph i {
  position: absolute;
  left: 0;
  top: 0.3rem;
  font-size: 1.3rem;
}

.text-gold {
  color: var(--accent-gold);
}

.intro-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-box {
  background: var(--white);
  padding: 1.8rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  border: 1px solid rgba(201, 169, 97, 0.1);
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(201, 169, 97, 0.15);
  border-color: var(--accent-gold);
}

.feature-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.feature-box h4 {
  font-size: 1.2rem;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.feature-box p {
  font-size: 0.95rem;
  color: var(--medium-gray);
  line-height: 1.6;
  margin: 0;
}

/* Ekip kartları hover efekti */
a.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(201, 169, 97, 0.25);
}

a[href^="ekip/"]:hover > div {
  transform: scale(1.05);
}

/* ====================================
   HEADER & NAVIGATION
   ==================================== */

.header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.top-bar {
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.9rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.top-bar a {
  color: var(--white);
  transition: var(--transition);
}

.top-bar a:hover {
  color: var(--accent-gold);
}

.top-bar i {
  margin-right: 5px;
}

/* Language Selector */
.language-selector {
  display: flex;
  gap: 8px;
  align-items: center;
}

.language-selector a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.language-selector a:hover {
  color: var(--accent-gold);
  background: rgba(201, 169, 97, 0.15);
}

.language-selector a.active {
  color: var(--accent-gold);
  background: rgba(201, 169, 97, 0.2);
  font-weight: 600;
}

.language-selector a i {
  margin-right: 4px;
}

.navbar {
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.logo span {
  color: var(--accent-gold);
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  color: var(--primary-navy);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-navy);
  cursor: pointer;
}

/* ====================================
   BUTTONS
   ==================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 5px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary-navy);
  color: var(--white);
  border-color: var(--primary-navy);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-navy);
}

.btn-secondary {
  background-color: var(--accent-gold);
  color: var(--white);
  border-color: var(--accent-gold);
}

.btn-secondary:hover {
  background-color: transparent;
  color: var(--accent-gold);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-navy);
  border-color: var(--primary-navy);
}

.btn-outline:hover {
  background-color: var(--primary-navy);
  color: var(--white);
}

/* ====================================
   HERO SECTION
   ==================================== */

@keyframes heroSlider {
  0%, 33% {
    background-image: 
      linear-gradient(135deg, rgba(26, 43, 74, 0.95) 0%, rgba(44, 72, 117, 0.92) 100%),
      url('../images/hero-bg.jpg');
  }
  34%, 66% {
    background-image: 
      linear-gradient(135deg, rgba(26, 43, 74, 0.95) 0%, rgba(44, 72, 117, 0.92) 100%),
      url('../images/law-books.jpg');
  }
  67%, 100% {
    background-image: 
      linear-gradient(135deg, rgba(26, 43, 74, 0.95) 0%, rgba(44, 72, 117, 0.92) 100%),
      url('../images/justice-hammer.jpg');
  }
}

.hero {
  background-image: 
    linear-gradient(135deg, rgba(26, 43, 74, 0.95) 0%, rgba(44, 72, 117, 0.92) 100%),
    url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: heroSlider 15s infinite;
  color: var(--white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><path d="M0,1000 L1000,0 L1000,1000 Z" fill="rgba(255,255,255,0.03)"/></svg>');
  background-size: cover;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 700px;
}

.hero h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero .btn {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--white);
}

.hero .btn:hover {
  background-color: var(--white);
  color: var(--primary-navy);
  border-color: var(--white);
}

.hero .btn-outline {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.hero .btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-navy);
}

/* ====================================
   CARDS
   ==================================== */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  border-top: 3px solid var(--accent-gold);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary-navy);
}

.card p {
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
}

.card .btn {
  font-size: 0.9rem;
  padding: 10px 24px;
}

/* ====================================
   STATS SECTION
   ==================================== */

.stats {
  background-color: var(--light-gray);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold) !important;
  background: rgba(201,169,97,0.05) !important;
  box-shadow: 0 10px 30px rgba(201,169,97,0.2);
}

.stat-icon {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-navy);
  font-family: var(--font-serif);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--medium-gray);
  font-weight: 500;
}

/* ====================================
   TEAM SECTION
   ==================================== */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.team-member {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team-member-image {
  width: 100%;
  height: 400px;
  background-color: var(--light-gray);
  background-size: cover;
  background-position: center top;
  position: relative;
}

.team-member-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(26, 43, 74, 0.7), transparent);
}

.team-member-info {
  padding: 1.5rem;
}

.team-member h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.team-member .role {
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 1rem;
  display: block;
}

.team-member .specialty {
  color: var(--medium-gray);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.team-member .education {
  color: var(--medium-gray);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* ====================================
   FORMS
   ==================================== */

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 5px;
  transition: var(--transition);
  background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
}

.form-note {
  font-size: 0.85rem;
  color: var(--medium-gray);
  font-style: italic;
  margin-top: 0.5rem;
}

/* ====================================
   FOOTER
   ==================================== */

.footer {
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--accent-gold);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.footer-section p,
.footer-section li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.8rem;
  line-height: 1.8;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.footer-section i {
  margin-right: 8px;
  color: var(--accent-gold);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--accent-gold);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-disclaimer {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-top: 2rem;
  border-radius: 5px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */

@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .cards-grid,
  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 50px 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.8rem;
  }
  
  .hero {
    padding: 80px 0;
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero .lead {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  /* Kurucu Ortak Kartı Mobil Fix */
  a[href*="yunus-emre-kocak"] > div > div[style*="grid-template-columns: 200px 1fr"] {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
    text-align: center !important;
  }
  
  a[href*="yunus-emre-kocak"] > div > div > div:first-child {
    width: 100% !important;
  }
  
  a[href*="yunus-emre-kocak"] > div > div > div:first-child > div {
    width: 160px !important;
    height: 200px !important;
    margin: 0 auto 1rem !important;
  }
  
  /* KURUCU ORTAK butonu mobilde küçült */
  a[href*="yunus-emre-kocak"] > div > div > div:first-child > div:last-child {
    padding: 0.4rem 1rem !important;
    font-size: 0.7rem !important;
    margin-top: 0.5rem !important;
  }
  
  a[href*="yunus-emre-kocak"] h3 {
    font-size: 1.6rem !important;
  }
  
  a[href*="yunus-emre-kocak"] p {
    font-size: 1rem !important;
  }
  
  /* Uzmanlık alanları, eğitim ve dil divlerini küçült */
  a[href*="yunus-emre-kocak"] > div > div > div:last-child > div {
    margin-bottom: 0.8rem !important;
  }
  
  a[href*="yunus-emre-kocak"] h4 {
    font-size: 0.8rem !important;
    margin-bottom: 0.3rem !important;
  }
  
  a[href*="yunus-emre-kocak"] span {
    font-size: 0.85rem !important;
    padding: 0.4rem 1rem !important;
  }
  
  .top-bar {
    font-size: 0.75rem;
    padding: 8px 0;
  }
  
  .top-bar .container {
    flex-direction: column;
    gap: 8px;
  }
  
  .top-bar-left,
  .top-bar-right {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .top-bar a {
    font-size: 0.75rem;
    padding: 4px 8px;
  }
  
  .top-bar i {
    font-size: 0.7rem;
  }
  
  .language-selector {
    margin-top: 5px;
  }
  
  .cards-grid {
    grid-template-columns: 1fr;
  }
  
  /* Ekip grid mobil - 3 kişilik kart */
  div[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
  }
  
  .intro-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .intro-text {
    text-align: left;
  }
  
  .intro-highlight {
    padding: 1.5rem;
  }
  
  .intro-paragraph {
    padding-left: 2rem;
    font-size: 1rem;
  }
  
  /* Ekibimiz mobil düzeni */
  .section div[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
  }
  
  .section div[style*="grid-template-columns: auto 1fr"] {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  /* Kurucu ortak kartı daha da küçült */
  a[href*="yunus-emre-kocak"] > div {
    padding: 2rem 1.5rem !important;
  }
  
  a[href*="yunus-emre-kocak"] h3 {
    font-size: 1.4rem !important;
  }
  
  /* Hero mobil padding */
  .hero {
    padding: 60px 0 !important;
  }
  
  .section {
    padding: 40px 0 !important;
  }
}

/* ====================================
   UTILITY CLASSES
   ==================================== */

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.pt-1 { padding-top: 0.5rem; }
.pt-2 { padding-top: 1rem; }
.pt-3 { padding-top: 1.5rem; }
.pt-4 { padding-top: 2rem; }
.pt-5 { padding-top: 3rem; }

.pb-1 { padding-bottom: 0.5rem; }
.pb-2 { padding-bottom: 1rem; }
.pb-3 { padding-bottom: 1.5rem; }
.pb-4 { padding-bottom: 2rem; }
.pb-5 { padding-bottom: 3rem; }

.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }

/* ====================================
   MODAL
   ==================================== */

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-content {
  background-color: white;
  padding: 3rem;
  border-radius: 15px;
  max-width: 1000px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--medium-gray);
  cursor: pointer;
  transition: color 0.3s;
  line-height: 1;
  z-index: 10;
}

.modal-close:hover {
  color: var(--primary-navy);
}

/* Modal responsive */
@media (max-width: 768px) {
  .modal {
    padding: 1rem;
  }
  
  .modal-content {
    padding: 2rem 1.5rem;
    max-height: 95vh;
  }
  
  .modal-close {
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
  }
  
  /* İletişim sayfası responsive */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
}

/* ====================================
   WHATSAPP FLOATING BUTTON
   ==================================== */

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 100;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128C7E;
  transform: scale(1.1);
  box-shadow: 2px 2px 15px rgba(0,0,0,0.4);
}

.whatsapp-float i {
  margin-top: 3px;
}

/* Pulse animasyonu */
@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Mobil cihazlarda küçült */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
    font-size: 25px;
  }
}
