/* ==========================================================================
   DİYARBAKIR OTO ÇEKİCİ - LUXURY DARK THEME STYLES
   Mobile First, PageSpeed 95+, High Contrast Neon Cyan & Gold Dark Aesthetics
   ========================================================================== */

:root {
  --bg-page: #0b0f19;       /* Deep obsidian dark */
  --bg-card: #111827;       /* Dark slate card */
  --bg-card-hover: #172033;
  --bg-subtle: #0f1523;
  --bg-header: rgba(11, 15, 25, 0.95);

  --primary: #06b6d4;       /* Neon Cyan */
  --primary-hover: #0891b2;
  --primary-light: rgba(6, 182, 212, 0.12);
  --primary-glow: rgba(6, 182, 212, 0.25);
  
  --accent: #f59e0b;        /* Amber Gold */
  --accent-hover: #d97706;
  --accent-light: rgba(245, 158, 11, 0.12);
  
  --whatsapp: #22c55e;
  --whatsapp-hover: #16a34a;
  --phone: #06b6d4;
  --phone-hover: #0891b2;

  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-light: #64748b;
  --border-color: #1e293b;
  --border-glow: rgba(6, 182, 212, 0.35);
  
  --shadow-sm: 0 2px 4px 0 rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 12px 0 rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.6);
  --shadow-xl: 0 20px 30px -10px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 25px rgba(6, 182, 212, 0.2);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 80px;
}

@media (min-width: 992px) {
  body {
    padding-bottom: 0;
  }
}

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

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

ul {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Common Section */
.section {
  padding: 65px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 95px 0;
  }
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 45px auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.45rem;
  }
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* NAVBAR (No Top-bar header) */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-header);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

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

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

.nav-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.3);
}

.nav-brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.15rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.2px;
}

.brand-subtitle {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 20px;
}

@media (min-width: 992px) {
  .nav-menu {
    display: flex;
  }
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #cbd5e1;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--primary);
  background-color: var(--primary-light);
}

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-nav-call {
  display: none;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #041017;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.35);
  transition: var(--transition);
}

.btn-nav-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
  color: #041017;
}

@media (min-width: 640px) {
  .btn-nav-call {
    display: inline-flex;
  }
}

.mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: #ffffff;
}

@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  width: 100%;
  background: var(--bg-card);
  border-bottom: 2px solid var(--primary);
  box-shadow: var(--shadow-xl);
  padding: 20px;
  z-index: 999;
}

.mobile-drawer.open {
  display: block;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  display: block;
  padding: 12px 16px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #e2e8f0;
  border-radius: var(--radius-sm);
  background: var(--bg-page);
}

.mobile-nav-link:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* HERO SECTION */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-color: #050811;
  overflow: hidden;
}

.hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(7, 10, 18, 0.88) 0%, rgba(7, 10, 18, 0.72) 50%, rgba(6, 182, 212, 0.3) 100%);
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  padding-top: 40px;
  padding-bottom: 50px;
}

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

@media (min-width: 992px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 182, 212, 0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(6, 182, 212, 0.4);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  color: #38bdf8;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-green 1.8s infinite;
}

@keyframes pulse-green {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-title {
  font-size: 2.1rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 0 20px rgba(0,0,0,0.6);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.1rem;
  }
}

.hero-title span {
  color: #38bdf8;
  background: linear-gradient(135deg, #38bdf8, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.btn-hero-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #06b6d4, #0891b2);
  color: #041017;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 900;
  font-size: 1.05rem;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
  transition: var(--transition);
}

.btn-hero-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.6);
  color: #041017;
}

.btn-hero-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #22c55e;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.35);
  transition: var(--transition);
}

.btn-hero-whatsapp:hover {
  background: #16a34a;
  transform: translateY(-2px);
  color: #fff;
}

/* Trust Rating Badge */
.hero-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(17, 24, 39, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  color: #ffffff;
}

.rating-google-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.rating-stars {
  color: #f59e0b;
  font-size: 1rem;
  letter-spacing: 2px;
}

.rating-text {
  font-size: 0.85rem;
  font-weight: 700;
}

.rating-text span {
  color: var(--primary);
}

/* Dark Hero Card */
.hero-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
}

.hero-card-header {
  margin-bottom: 20px;
  text-align: center;
}

.hero-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.hero-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 11px 14px;
  background: #0b0f19;
  border: 1px solid #1e293b;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: #ffffff;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: #0f172a;
  box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 16px;
  line-height: 1.4;
}

.form-checkbox-label input {
  margin-top: 2px;
}

.form-checkbox-label a {
  color: var(--primary);
  text-decoration: underline;
}

.btn-form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #22c55e;
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
}

.btn-form-submit:hover {
  background: #16a34a;
}

/* STATS BAR */
.stats-bar {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
}

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

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  background: var(--bg-page);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.stat-number {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

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

.service-img-wrapper {
  position: relative;
  width: 100%;
  height: 210px;
  background: #070a13;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-badge-chip {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(11, 15, 25, 0.9);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  border: 1px solid rgba(6, 182, 212, 0.4);
}

.service-content {
  padding: 22px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.service-features {
  margin-bottom: 20px;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 6px;
}

.service-feature-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.service-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid rgba(6, 182, 212, 0.2);
  transition: var(--transition);
}

.service-card-btn:hover {
  background: var(--primary);
  color: #041017;
}

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

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-img-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
}

.about-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(17, 24, 39, 0.92);
  backdrop-filter: blur(8px);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-badge-icon {
  font-size: 2rem;
  color: var(--accent);
}

.about-badge-text h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
}

.about-badge-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.about-list {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-list-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-list-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
}

.about-list-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* REGIONS */
.regions-section {
  background: var(--bg-subtle);
}

.regions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 640px) {
  .regions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .regions-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.region-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.region-card:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

.region-icon {
  width: 38px;
  height: 38px;
  background: var(--bg-page);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.region-info h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
}

.region-info p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* REVIEWS */
.reviews-section {
  background: var(--bg-page);
}

.reviews-summary-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 36px;
  gap: 16px;
}

@media (min-width: 768px) {
  .reviews-summary-card {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.rating-big-score {
  font-size: 3rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
}

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

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(6, 182, 212, 0.4);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
}

.author-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.author-location {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.review-badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  color: #22c55e;
  font-weight: 600;
}

.review-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.review-text {
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.5;
  flex-grow: 1;
}

.review-date {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 12px;
}

.reviews-load-more {
  text-align: center;
  margin-top: 36px;
}

.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-load-more:hover {
  background: var(--primary);
  color: #041017;
  box-shadow: 0 0 15px var(--primary-glow);
}

/* CONTACT */
.contact-section {
  background: var(--bg-subtle);
}

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

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
  }
}

.contact-info-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 30px;
  border: 1px solid var(--border-color);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--bg-page);
  border: 1px solid var(--border-color);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-text p, .contact-text a {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
}

/* FOOTER */
.site-footer {
  background: #060911;
  color: #94a3b8;
  padding: 60px 0 24px 0;
  border-top: 1px solid var(--border-color);
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.4fr 0.8fr 1fr 0.8fr;
  }
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

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

.footer-link {
  font-size: 0.88rem;
  color: #94a3b8;
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: center;
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    text-align: left;
  }
}

.footer-webkurdu {
  color: #cbd5e1;
  font-weight: 600;
}

.footer-webkurdu a {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

/* STICKY BUTTONS */
.sticky-actions-container {
  position: fixed;
  z-index: 9999;
}

@media (min-width: 769px) {
  .sticky-desktop-group {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 9999;
  }
  
  .sticky-mobile-bar {
    display: none !important;
  }

  .floating-action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: var(--radius-full);
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.5);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
  }

  .floating-action-btn.call-btn {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: #041017;
    animation: pulse-phone-dark 2s infinite;
  }

  .floating-action-btn.wa-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    animation: pulse-wa-dark 2s infinite 1s;
  }

  .floating-action-btn:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 12px 30px rgba(0,0,0,0.7);
  }

  .floating-icon-wrap {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .sticky-desktop-group {
    display: none !important;
  }

  .sticky-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #0f1422;
    padding: 10px 14px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    display: flex;
    gap: 10px;
    z-index: 9999;
    border-top: 1px solid var(--border-color);
  }

  .mobile-bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 10px;
    border-radius: var(--radius-full);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
  }

  .mobile-bar-btn.call-btn {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    color: #041017;
    animation: pulse-phone-mobile 2.2s infinite;
  }

  .mobile-bar-btn.wa-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    animation: pulse-wa-mobile 2.2s infinite 1.1s;
  }
}

@keyframes pulse-phone-dark {
  0% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.7); }
  70% { box-shadow: 0 0 0 14px rgba(6, 182, 212, 0); }
  100% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0); }
}

@keyframes pulse-wa-dark {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 14px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes pulse-phone-mobile {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

@keyframes pulse-wa-mobile {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* LEGAL PAGES */
.legal-content {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  margin-top: 30px;
  margin-bottom: 50px;
}

.legal-content h1 {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border-color);
}

.legal-content h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.legal-content ul {
  list-style: disc;
  margin-left: 24px;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.legal-content li {
  margin-bottom: 6px;
}
