/* 
  Kuzey Boya Badana - Custom Premium Stylesheet
  Domain: kuzeyboyabadana.com.tr
  Design: Modern, Premium, High Performance, Mobile-Responsive
*/

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

:root {
  --primary-hsl: 222, 80%, 25%;
  --secondary-hsl: 24, 95%, 50%;
  --accent-hsl: 142, 70%, 45%;
  
  --primary: hsl(var(--primary-hsl));
  --primary-light: hsl(222, 80%, 35%);
  --primary-dark: hsl(222, 80%, 15%);
  --secondary: hsl(var(--secondary-hsl));
  --secondary-light: hsl(24, 95%, 60%);
  --secondary-dark: hsl(24, 95%, 40%);
  --accent: hsl(var(--accent-hsl));
  --accent-light: hsl(142, 70%, 55%);
  
  --background: hsl(210, 40%, 98%);
  --surface: hsl(0, 0%, 100%);
  --text: hsl(220, 40%, 15%);
  --text-muted: hsl(215, 20%, 45%);
  --border: hsl(215, 30%, 92%);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(30, 58, 138, 0.06);
  --shadow-lg: 0 20px 40px rgba(30, 58, 138, 0.1);
  --shadow-glow: 0 0 20px rgba(249, 115, 22, 0.35);
  --shadow-whatsapp: 0 8px 24px rgba(37, 211, 102, 0.3);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  --header-height: 80px;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--background);
  overflow-x: hidden;
}

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

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

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

/* Common Layout Elements */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

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

.section-header .subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
  padding: 6px 16px;
  background-color: hsl(24, 95%, 96%);
  border-radius: var(--radius-full);
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 18px;
}

@media (max-width: 768px) {
  .section-header {
    margin-bottom: 40px;
  }
  .section-header h2 {
    font-size: 28px;
  }
  .section-header p {
    font-size: 16px;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--surface);
  box-shadow: 0 4px 14px rgba(30, 58, 138, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--surface);
  box-shadow: var(--shadow-glow);
}

.btn-secondary:hover {
  background-color: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
}

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

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

.btn-white {
  background-color: var(--surface);
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}

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

.btn-whatsapp-cta {
  background-color: #25D366;
  color: white;
  box-shadow: var(--shadow-whatsapp);
}

.btn-whatsapp-cta:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  background-color: transparent;
  display: flex;
  align-items: center;
}

/* Subtle dark gradient overlay at the top to ensure white navigation text is readable over hero graphics */
.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0) 100%);
  z-index: -1;
  pointer-events: none;
  transition: var(--transition-smooth);
  opacity: 1;
}

.site-header.scrolled::before {
  opacity: 0;
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: 75px;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

.logo-badge {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--secondary), var(--primary-light));
  color: white;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.logo-info {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: white;
  transition: var(--transition-smooth);
}

.logo-subtitle {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--secondary-light);
  transition: var(--transition-smooth);
}

.site-header.scrolled .logo-title {
  color: var(--primary-dark);
}

.site-header.scrolled .logo-subtitle {
  color: var(--secondary);
}

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

.nav-link {
  font-weight: 600;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 6px 0;
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--secondary-light);
}

.site-header.scrolled .nav-link {
  color: var(--text-muted);
}

.site-header.scrolled .nav-link:hover, .site-header.scrolled .nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--secondary);
  color: white;
  padding: 8px 18px 8px 8px;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  box-shadow: var(--shadow-glow);
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  cursor: pointer;
}

.cta-icon-wrapper {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition-smooth);
}

.cta-icon-wrapper svg {
  display: block;
}

.header-cta:hover {
  background-color: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5);
}

.header-cta:hover .cta-icon-wrapper {
  background-color: white;
  color: var(--secondary);
}

.site-header.scrolled .header-cta {
  background-color: var(--primary);
  box-shadow: 0 4px 14px rgba(30, 58, 138, 0.2);
}

.site-header.scrolled .header-cta .cta-icon-wrapper {
  background-color: rgba(255, 255, 255, 0.15);
}

.site-header.scrolled .header-cta:hover {
  background-color: var(--primary-light);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.3);
}

.site-header.scrolled .header-cta:hover .cta-icon-wrapper {
  background-color: white;
  color: var(--primary);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  width: 30px;
  height: 24px;
  justify-content: center;
}

.mobile-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: white;
  transition: var(--transition-smooth);
}

.site-header.scrolled .mobile-toggle span {
  background-color: var(--primary-dark);
}

@media (max-width: 992px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--surface);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px;
    gap: 24px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
    z-index: 999;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu .nav-link {
    color: var(--text) !important;
    font-size: 18px;
    font-weight: 600;
    width: 100%;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
  }
  
  .nav-menu .nav-link::after {
    display: none; /* Disable underline hover animation in vertical mobile menu */
  }
  
  .nav-menu .nav-link:hover, .nav-menu .nav-link.active {
    color: var(--secondary) !important;
    border-bottom-color: var(--secondary);
    padding-left: 5px;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .mobile-toggle.active span {
    background-color: var(--primary-dark) !important;
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
  }
  
  .header-actions .header-cta {
    display: none; /* Hide header CTA on mobile, keep inside sidebar or hero */
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--primary-dark);
}

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

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

.hero-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.95) 0%, rgba(15, 23, 42, 0.8) 100%);
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  color: var(--surface);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  color: var(--secondary-light);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-content h1 {
  color: var(--surface);
  font-size: 56px;
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-content h1 span {
  color: var(--secondary);
  background: linear-gradient(120deg, var(--secondary-light), #fdba74);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 20px;
  color: rgba(241, 245, 249, 0.85);
  margin-bottom: 40px;
  max-width: 600px;
}

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

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 32px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-feature-icon {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  flex-shrink: 0;
}

.hero-feature-text {
  font-size: 15px;
  font-weight: 500;
  color: rgba(241, 245, 249, 0.9);
}

/* Hero Badge Showcase Box */
.hero-image-box {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-showcase-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 380px;
  color: var(--surface);
  transform: rotate(2deg);
  transition: var(--transition-smooth);
}

.hero-showcase-card:hover {
  transform: rotate(0deg) scale(1.03);
}

.hero-showcase-title {
  font-family: var(--font-heading);
  font-size: 22px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
  color: var(--surface);
}

.hero-showcase-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-showcase-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.hero-showcase-item svg {
  color: var(--accent-light);
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 80px;
  }
  .hero .container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-content h1 {
    font-size: 40px;
  }
  .hero-content p {
    font-size: 18px;
  }
  .hero-showcase-card {
    transform: none;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .hero-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Hakkımızda Section */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-img-wrapper {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.about-img-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.about-img-wrapper.img-large {
  grid-row: span 2;
  height: 420px;
}

.about-img-wrapper.img-large img {
  height: 100%;
  object-fit: cover;
}

.about-img-wrapper.img-small {
  height: 200px;
}

.about-img-wrapper.img-small img {
  height: 100%;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background-color: var(--primary);
  color: var(--surface);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  border-bottom: 4px solid var(--secondary);
}

.about-experience-badge .years {
  display: block;
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  color: var(--secondary-light);
}

.about-experience-badge .text {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 16px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.about-highlight-item {
  display: flex;
  gap: 16px;
}

.about-highlight-icon {
  width: 48px;
  height: 48px;
  background-color: hsl(222, 80%, 96%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.about-highlight-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--primary-dark);
}

.about-highlight-desc {
  font-size: 14px;
  color: var(--text-muted);
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-images {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
}

/* Hizmetlerimiz Section */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  background-color: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  flex: 1 1 340px;
  max-width: 380px;
}

@media (max-width: 576px) {
  .service-card {
    flex: 1 1 100%;
  }
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30, 58, 138, 0.15);
}

.service-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

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

.service-icon-box {
  width: 56px;
  height: 56px;
  background-color: hsl(24, 95%, 96%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  color: var(--primary);
  font-family: var(--font-heading);
}

.service-link svg {
  transition: var(--transition-fast);
}

.service-card:hover .service-link svg {
  transform: translateX(4px);
}

/* Grid column adjustments removed (handled by flex wrap) */

/* Yorumlar (Reviews) Section */
.reviews-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

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

.review-card.review-hidden {
  display: none !important;
}

.reviews-container.show-all .review-card.review-hidden {
  display: block !important;
  animation: fadeInReview 0.5s ease-in-out forwards;
}

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

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

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background-color: var(--surface);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition-smooth);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30, 58, 138, 0.1);
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 15px;
  right: 30px;
  font-size: 90px;
  font-family: var(--font-heading);
  color: hsl(222, 80%, 95%);
  line-height: 1;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  color: #fbbf24;
}

.review-text {
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
  font-size: 15px;
  position: relative;
  z-index: 2;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.client-avatar {
  width: 48px;
  height: 48px;
  background-color: var(--primary-light);
  color: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
}

.client-name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  color: var(--primary-dark);
}

.client-region {
  font-size: 13px;
  color: var(--text-muted);
}

/* Hizmet Bölgelerimiz (Service Areas) */
.districts-section {
  background-color: hsl(210, 40%, 96%);
}

.search-box {
  max-width: 450px;
  margin: 0 auto 40px auto;
  position: relative;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1px solid var(--border);
  background-color: var(--surface);
}

.search-box input {
  width: 100%;
  padding: 16px 24px;
  padding-right: 56px;
  font-size: 16px;
  background-color: transparent;
}

.search-box .search-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

@media (max-width: 992px) {
  .districts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (max-width: 480px) {
  .districts-grid {
    grid-template-columns: 1fr;
  }
}

.district-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-smooth);
}

.district-card:hover {
  background-color: var(--primary-dark);
  color: var(--surface);
  border-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.district-card svg {
  color: var(--secondary);
  flex-shrink: 0;
}

.district-card:hover svg {
  color: var(--secondary-light);
}

.district-card.hidden {
  display: none;
}

/* İletişim (Contact) Section */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
}

.contact-info-card {
  background-color: var(--primary-dark);
  color: var(--surface);
  padding: 50px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark) 0%, hsl(222, 80%, 10%) 100%);
}

.contact-info-card::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(249, 115, 22, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.contact-info-title {
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--surface);
}

.contact-info-desc {
  color: rgba(241, 245, 249, 0.85);
  margin-bottom: 40px;
  font-size: 16px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-light);
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-detail-text h4 {
  color: var(--surface);
  font-size: 15px;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-detail-text p, .contact-detail-text a {
  color: rgba(241, 245, 249, 0.9);
  font-size: 16px;
  font-weight: 500;
}

.contact-detail-text a:hover {
  color: var(--secondary-light);
}

.contact-socials {
  display: flex;
  gap: 16px;
}

.contact-social-btn {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social-btn:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--surface);
  transform: translateY(-3px);
}

.contact-form-wrapper {
  background-color: var(--surface);
  padding: 50px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.contact-form h3 {
  font-size: 28px;
  margin-bottom: 12px;
}

.contact-form .form-desc {
  color: var(--text-muted);
  margin-bottom: 32px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-weight: 600;
  font-size: 14px;
  color: var(--primary-dark);
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 20px;
  background-color: hsl(210, 40%, 97%);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary);
  background-color: var(--surface);
  box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.08);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
}

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

.form-checkbox label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
  cursor: pointer;
}

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

.form-status {
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  display: none;
}

.form-status.success {
  display: block;
  background-color: hsl(142, 70%, 95%);
  color: hsl(142, 70%, 25%);
  border: 1px solid hsl(142, 70%, 85%);
}

.form-status.error {
  display: block;
  background-color: hsl(0, 85%, 97%);
  color: hsl(0, 85%, 30%);
  border: 1px solid hsl(0, 85%, 90%);
}

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

@media (max-width: 768px) {
  .contact-info-card, .contact-form-wrapper {
    padding: 30px 20px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
}

/* Map Section Card */
.map-card-wrapper {
  margin-top: 50px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 350px;
  position: relative;
}

.map-placeholder-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, hsl(210, 40%, 93%) 0%, hsl(210, 40%, 88%) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.map-placeholder-icon {
  width: 64px;
  height: 64px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--surface);
  margin-bottom: 16px;
  box-shadow: var(--shadow-md);
}

.map-placeholder-bg h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.map-placeholder-bg p {
  color: var(--text-muted);
  font-size: 14px;
  max-width: 400px;
  margin-bottom: 20px;
}

/* Footer */
.site-footer {
  background-color: hsl(220, 40%, 8%);
  color: rgba(241, 245, 249, 0.8);
  padding: 80px 0 30px 0;
  border-top: 4px solid var(--secondary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  color: var(--surface);
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 800;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(241, 245, 249, 0.6);
  margin-bottom: 24px;
  max-width: 320px;
}

.footer-links-title {
  color: var(--surface);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-links-list a {
  font-size: 14px;
  color: rgba(241, 245, 249, 0.65);
}

.footer-links-list a:hover {
  color: var(--secondary-light);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 14px;
}

.footer-contact-item svg {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-contact-item a:hover {
  color: var(--secondary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 14px;
  color: rgba(241, 245, 249, 0.5);
}

.footer-bottom a {
  color: rgba(241, 245, 249, 0.5);
  font-weight: 500;
}

.footer-bottom a:hover {
  color: var(--secondary-light);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .site-footer {
    padding: 50px 0 30px 0;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}


/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: -200px;
  left: 20px;
  right: 20px;
  max-width: 600px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 24px;
  z-index: 1002;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (min-width: 768px) {
  .cookie-banner {
    left: 30px;
    right: auto;
  }
}

.cookie-banner.show {
  bottom: 30px;
}

.cookie-text {
  font-size: 14px;
  color: var(--text-muted);
}

.cookie-text a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.cookie-btn-accept {
  padding: 8px 20px;
  background-color: var(--primary);
  color: var(--surface);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cookie-btn-accept:hover {
  background-color: var(--primary-light);
}

.cookie-btn-decline {
  padding: 8px 20px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.cookie-btn-decline:hover {
  background-color: var(--background);
  color: var(--text);
}

/* Legal Pages Core Layout styling */
.legal-hero {
  padding-top: 160px;
  padding-bottom: 60px;
  background-color: var(--primary-dark);
  color: var(--surface);
  text-align: center;
}

.legal-hero h1 {
  color: var(--surface);
  font-size: 40px;
}

.legal-content-section {
  padding: 60px 0;
  background-color: var(--surface);
}

.legal-card {
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
  background-color: var(--surface);
}

.legal-card h2 {
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--primary-dark);
}

.legal-card h2:first-of-type {
  margin-top: 0;
}

.legal-card p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 15px;
}

.legal-card ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 15px;
}

.legal-card li {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .legal-hero h1 {
    font-size: 28px;
  }
  .legal-card {
    padding: 24px 16px;
  }
}

/* Floating Action Buttons Container */
/* Floating Action Buttons Container */
.floating-actions-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 998;
  width: 56px;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
  text-decoration: none;
}

.floating-btn svg {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
}

.floating-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.floating-whatsapp {
  background-color: #25D366;
}

.floating-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  z-index: -1;
  animation: pulse-whatsapp 2s infinite;
  pointer-events: none;
}

.floating-phone {
  background-color: var(--secondary);
}

.floating-phone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  z-index: -1;
  animation: pulse-phone 2s infinite;
  pointer-events: none;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes pulse-phone {
  0% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(249, 115, 22, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
  }
}

@media (max-width: 576px) {
  .floating-actions-container {
    bottom: 20px;
    right: 20px;
    gap: 12px;
    width: 48px;
  }
  .floating-btn {
    width: 48px;
    height: 48px;
  }
  .floating-btn svg {
    width: 20px;
    height: 20px;
  }
}
