/* ============================
   ADEL SOLAR ENERJİ — STYLE SYSTEM
   ============================ */

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

/* --- CSS Custom Properties --- */
:root {
  --clr-bg-dark: #0a1628;
  --clr-bg-darker: #060f1d;
  --clr-bg-card: #111d33;
  --clr-bg-light: #f8f9fa;
  --clr-bg-white: #ffffff;
  --clr-gold: #f0a500;
  --clr-gold-light: #ffc444;
  --clr-orange: #ff6b35;
  --clr-amber: #ffb347;
  --clr-text-white: #ffffff;
  --clr-text-light: #c8d6e5;
  --clr-text-muted: #8395a7;
  --clr-text-dark: #1a1a2e;
  --clr-text-body: #4a4a5a;
  --clr-accent-blue: #00b4d8;
  --clr-success: #2ecc71;
  --clr-glass: rgba(255, 255, 255, 0.05);
  --clr-glass-border: rgba(255, 255, 255, 0.1);
  --gradient-sun: linear-gradient(135deg, #ff6b35 0%, #f0a500 50%, #ffc444 100%);
  --gradient-dark: linear-gradient(180deg, #0a1628 0%, #0d1f3c 100%);
  --gradient-hero: linear-gradient(135deg, #0a1628 0%, #0f2744 40%, #12243a 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.2);
  --shadow-gold: 0 8px 32px rgba(240, 165, 0, 0.3);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--clr-text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--clr-bg-white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* --- Scrollbar --- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--clr-bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--clr-gold);
  border-radius: 4px;
}

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

/* --- Section Base --- */
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-dark {
  background: var(--gradient-dark);
  color: var(--clr-text-white);
}

.section-light {
  background: var(--clr-bg-light);
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(240, 165, 0, 0.1);
  color: var(--clr-gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(240, 165, 0, 0.2);
}

.section-dark .section-badge {
  background: rgba(240, 165, 0, 0.15);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-dark .section-title {
  color: var(--clr-text-white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--clr-text-body);
  max-width: 640px;
  margin: 0 auto;
}

.section-dark .section-subtitle {
  color: var(--clr-text-light);
}

.highlight {
  color: var(--clr-gold);
}

/* ============================
   HEADER / NAVIGATION
   ============================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.header.scrolled {
  padding: 12px 0;
  background: rgba(10, 22, 40, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
  text-decoration: none;
  transition: var(--transition);
}

.logo:hover {
  transform: scale(1.02);
}

/* Logo görsel stili */
.logo-image {
  height: 80px;
  width: auto;
  max-width: 330px;
  object-fit: contain;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .logo-image {
    height: 63px;
    max-width: 260px;
  }
}

@media (max-width: 480px) {
  .logo-image {
    height: 56px;
    max-width: 230px;
  }
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-sun);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 16px rgba(240, 165, 0, 0.4), 0 0 24px rgba(240, 165, 0, 0.2);
  position: relative;
  overflow: hidden;
}

/* Logo icon glow animasyonu */
.logo-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
  animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.1);
  }
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--clr-text-white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.logo-text span {
  color: var(--clr-gold);
  font-weight: 900;
}

/* Mobilde logo boyutu */
@media (max-width: 768px) {
  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  .logo-text {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }

  .logo-text {
    font-size: 1rem;
  }
}

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

.nav-links a {
  color: var(--clr-text-light);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

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

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

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

/* CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  background: var(--gradient-sun);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.btn-cta:hover::before {
  left: 100%;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(240, 165, 0, 0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

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

/* Mobile menu */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.mobile-toggle span {
  width: 28px;
  height: 2px;
  background: #fff;
  transition: var(--transition);
  border-radius: 2px;
}

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

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

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

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(240, 165, 0, 0.08) 0%, transparent 60%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text {
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(240, 165, 0, 0.12);
  border: 1px solid rgba(240, 165, 0, 0.25);
  color: var(--clr-gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 .gradient-text {
  background: var(--gradient-sun);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--clr-text-light);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-image {
  flex: 1;
  position: relative;
  animation: fadeInRight 1s ease 0.4s both;
}

.hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gradient-sun);
  opacity: 0.3;
  filter: blur(40px);
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--clr-gold);
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-top: 4px;
}

/* ============================
   SERVICES SECTION
   ============================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--clr-bg-card);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--clr-glass-border);
  transition: var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-sun);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-slow);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(240, 165, 0, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: rgba(240, 165, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gradient-sun);
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

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

/* ============================
   WHY US SECTION
   ============================ */
.why-us {
  background: var(--clr-bg-light);
}

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

.why-card {
  text-align: center;
  padding: 40px 24px;
  background: #fff;
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(240, 165, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--gradient-sun);
  transform: scale(1.1);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--clr-text-dark);
}

.why-card p {
  color: var(--clr-text-body);
  font-size: 0.9rem;
}

/* ============================
   ABOUT SECTION
   ============================ */
.about-content {
  display: flex;
  align-items: center;
  gap: 64px;
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 200px;
  height: 200px;
  border: 3px solid var(--clr-gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text .typewriter-line {
  font-size: 1.1rem;
  color: var(--clr-gold);
  font-weight: 600;
  margin-bottom: 20px;
  min-height: 1.5em;
  border-right: 2px solid var(--clr-gold);
  display: inline-block;
  padding-right: 4px;
  animation: blink 0.7s step-end infinite;
}

@keyframes blink {

  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: var(--clr-gold);
  }
}

.about-text p {
  color: var(--clr-text-body);
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.fact-box {
  padding: 20px;
  background: var(--clr-bg-light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--clr-gold);
}

.fact-box strong {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--clr-gold);
  display: block;
}

.fact-box span {
  font-size: 0.85rem;
  color: var(--clr-text-body);
}

/* ============================
   SERVICE AREAS
   ============================ */
.areas-content {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.areas-highlight {
  flex: 1;
  background: var(--clr-bg-card);
  border-radius: var(--radius-md);
  padding: 40px;
  border: 1px solid var(--clr-glass-border);
}

.areas-highlight h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

.area-tag {
  display: inline-block;
  padding: 8px 18px;
  margin: 4px;
  background: rgba(240, 165, 0, 0.1);
  color: var(--clr-gold);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(240, 165, 0, 0.2);
  transition: var(--transition);
}

.area-tag:hover {
  background: var(--gradient-sun);
  color: #fff;
}

.areas-list {
  flex: 1;
}

.areas-list h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

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

.city-item {
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--clr-text-light);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  border: 1px solid transparent;
}

.city-item:hover {
  border-color: rgba(240, 165, 0, 0.3);
  color: var(--clr-gold);
  background: rgba(240, 165, 0, 0.05);
}

/* ============================
   FAQ SECTION
   ============================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  transition: var(--transition);
}

.faq-item.active {
  box-shadow: var(--shadow-sm);
  border-color: rgba(240, 165, 0, 0.3);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--clr-text-dark);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--clr-gold);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(240, 165, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--clr-gold);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--gradient-sun);
  color: #fff;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--clr-text-body);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ============================
   BLOG PREVIEW
   ============================ */
.blog-card {
  display: flex;
  background: var(--clr-bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--clr-glass-border);
  transition: var(--transition);
  max-width: 900px;
  margin: 0 auto;
}

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

.blog-card-image {
  width: 40%;
  min-height: 300px;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.blog-card-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-card-date {
  color: var(--clr-gold);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.blog-card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.3;
}

.blog-card-content p {
  color: var(--clr-text-muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

/* Ana sayfa blog grid kartları - dikey stil */
.blog-grid-home .blog-card {
  flex-direction: column;
  max-width: none;
  margin: 0;
}

.blog-grid-home .blog-card-image {
  width: 100%;
  min-height: 200px;
  height: 200px;
}

.blog-grid-home .blog-card-content {
  padding: 20px 24px 24px;
}

.blog-grid-home .blog-card-content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.blog-grid-home .blog-card-content h3 a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.blog-grid-home .blog-card-content p {
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.blog-card-meta {
  color: var(--clr-gold);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-card-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,215,0,0.9);
  color: #000;
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.blog-card-image {
  position: relative;
}

.blog-card-link {
  color: var(--clr-gold);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-link:hover {
  color: var(--clr-orange);
}

/* ============================
   CONTACT SECTION
   ============================ */
.contact-wrapper {
  display: flex;
  gap: 48px;
}

.contact-info {
  flex: 1;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-info>p {
  color: var(--clr-text-body);
  margin-bottom: 32px;
}

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

.contact-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(240, 165, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item-label {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

.contact-item-value {
  font-weight: 600;
  color: var(--clr-text-dark);
}

.contact-form-wrapper {
  flex: 1;
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e9ecef;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: var(--transition);
  background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--clr-gold);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(240, 165, 0, 0.1);
}

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

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

.btn-submit {
  width: 100%;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--gradient-sun);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(240, 165, 0, 0.4);
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--clr-bg-darker);
  color: var(--clr-text-light);
  padding: 80px 0 0;
}

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

.footer-brand p {
  color: var(--clr-text-muted);
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

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

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
}

/* ============================
   FLOATING ELEMENTS
   ============================ */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9998;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, #4ade80, #25d366 50%, #1da855 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none;
  box-shadow:
    0 4px 15px rgba(37, 211, 102, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 3px 10px rgba(37, 211, 102, 0.4));
  overflow: visible;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  filter: drop-shadow(0 5px 20px rgba(37, 211, 102, 0.7));
}

/* WhatsApp ring animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: wa-ring 2.5s ease-in-out infinite;
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1.5px solid rgba(37, 211, 102, 0.25);
  animation: wa-ring 2.5s ease-in-out infinite 0.4s;
}

@keyframes wa-ring {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0; }
}

.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 36px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-bg-card);
  color: var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 1px solid var(--clr-glass-border);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--clr-gold);
  color: #fff;
  transform: translateY(-4px);
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger-children>* {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.stagger-children.active>*:nth-child(1) {
  transition-delay: 0.1s;
}

.stagger-children.active>*:nth-child(2) {
  transition-delay: 0.2s;
}

.stagger-children.active>*:nth-child(3) {
  transition-delay: 0.3s;
}

.stagger-children.active>*:nth-child(4) {
  transition-delay: 0.4s;
}

.stagger-children.active>*:nth-child(5) {
  transition-delay: 0.5s;
}

.stagger-children.active>*:nth-child(6) {
  transition-delay: 0.6s;
}

.stagger-children.active>* {
  opacity: 1;
  transform: translateY(0);
}

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

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

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

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-desc {
    margin: 0 auto 36px;
  }

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

  .hero-stats {
    justify-content: center;
  }

  .hero-image {
    max-width: 500px;
  }

  .about-content {
    flex-direction: column;
  }

  .about-image::after {
    display: none;
  }

  .areas-content {
    flex-direction: column;
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .blog-card {
    flex-direction: column;
  }

  .blog-card-image {
    width: 100%;
    min-height: 200px;
  }
}

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

  /* Nav-links ve mobile-toggle kuralları MOBİL APP STİLLERİ bloğunda tanımlandı */

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

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

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

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

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

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

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

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

/* ============================
   BLOG PAGE STYLES
   ============================ */
.blog-page-hero {
  padding: 140px 0 60px;
  background: var(--gradient-hero);
  color: #fff;
  text-align: center;
}

.blog-page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.blog-meta {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
}

.blog-content-area {
  display: flex;
  gap: 48px;
  padding: 60px 0;
}

.blog-main {
  flex: 2;
}

.blog-main h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin: 32px 0 16px;
  padding-left: 16px;
  border-left: 4px solid var(--clr-gold);
}

.blog-main p {
  color: var(--clr-text-body);
  margin-bottom: 16px;
  line-height: 1.8;
}

.blog-main .tip-box {
  background: rgba(240, 165, 0, 0.06);
  border-left: 4px solid var(--clr-gold);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
  font-size: 0.95rem;
}

.blog-sidebar {
  flex: 1;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.blog-toc {
  background: var(--clr-bg-light);
  padding: 24px;
  border-radius: var(--radius-md);
}

.blog-toc h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.blog-toc a {
  display: block;
  padding: 8px 0;
  color: var(--clr-text-body);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.blog-toc a:hover {
  color: var(--clr-gold);
  padding-left: 8px;
}

.blog-cta-box {
  margin-top: 24px;
  padding: 24px;
  background: var(--gradient-dark);
  border-radius: var(--radius-md);
  color: #fff;
  text-align: center;
}

.blog-cta-box h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 8px;
}

.blog-cta-box p {
  font-size: 0.9rem;
  color: var(--clr-text-light);
  margin-bottom: 16px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-bottom: 16px;
}

.breadcrumb a:hover {
  color: var(--clr-gold);
}

.breadcrumb span {
  color: var(--clr-text-muted);
}

/* Blog Responsive Styles - Mobile First */
@media (max-width: 768px) {
  /* Blog Hero - Mobil */
  .blog-page-hero {
    padding: 100px 0 40px;
  }

  .blog-page-hero h1 {
    font-size: 1.75rem;
    line-height: 1.3;
    padding: 0 16px;
  }

  /* Blog Content Layout - Stack on Mobile */
  .blog-content-area {
    flex-direction: column;
    padding: 40px 16px;
    gap: 32px;
  }

  /* Blog Main Content - Full Width */
  .blog-main {
    flex: 1;
    width: 100%;
    max-width: 100%;
  }

  .blog-main h2 {
    font-size: 1.4rem;
    margin: 24px 0 12px;
    padding-left: 12px;
  }

  .blog-main h3 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
  }

  .blog-main p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 14px;
  }

  .blog-main ul,
  .blog-main ol {
    padding-left: 24px;
    margin-bottom: 16px;
  }

  .blog-main li {
    margin-bottom: 8px;
    line-height: 1.7;
  }

  .blog-main img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
  }

  .blog-main .tip-box {
    padding: 12px 16px;
    margin: 16px 0;
    font-size: 0.9rem;
  }

  /* Blog Sidebar - Stack Below Content */
  .blog-sidebar {
    position: static;
    width: 100%;
    max-width: 100%;
  }

  .blog-toc {
    padding: 20px 16px;
  }

  .blog-toc h4 {
    font-size: 1rem;
  }

  .blog-toc a {
    font-size: 0.85rem;
    padding: 6px 0;
  }

  .blog-cta-box {
    padding: 20px 16px;
    margin-top: 20px;
  }

  .blog-cta-box h4 {
    font-size: 1.1rem;
  }

  .blog-cta-box .btn-cta {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  /* Breadcrumb - Mobile */
  .breadcrumb {
    padding: 0 16px;
    font-size: 0.85rem;
    flex-wrap: wrap;
  }

  /* Article Feedback - Mobile */
  .article-feedback {
    padding: 20px 16px;
    margin: 24px 0;
  }

  .article-feedback-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .feedback-btn {
    width: 100%;
    padding: 12px 20px;
  }

  /* Social Share - Mobile */
  .social-share {
    padding: 20px 16px;
  }

  .social-share-buttons {
    flex-wrap: wrap;
    gap: 10px;
  }

  .share-btn {
    flex: 1 1 calc(50% - 5px);
    min-width: 140px;
  }

  /* Related Articles - Mobile */
  .related-articles-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .related-article-card {
    padding: 16px;
  }

  .related-article-card h4 {
    font-size: 1rem;
  }

  .related-article-card p {
    font-size: 0.85rem;
  }
}

/* Extra Small Devices - 480px */
@media (max-width: 480px) {
  .blog-page-hero h1 {
    font-size: 1.5rem;
  }

  .blog-main h2 {
    font-size: 1.25rem;
  }

  .blog-main h3 {
    font-size: 1.1rem;
  }

  .blog-main p {
    font-size: 0.95rem;
  }

  .social-share-buttons {
    flex-direction: column;
  }

  .share-btn {
    flex: 1 1 100%;
    width: 100%;
  }
}

/* ============================
   ELEKTRİK ANİMASYON STİLLERİ v2
   Profesyonel, akıcı enerji akışı
   ============================ */

/* — Görsel etrafı enerji akışı (Image wrap) — */
.energy-border-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: var(--radius-md);
  isolation: isolate;
}

.energy-border-wrap img {
  display: block;
  width: 100%;
  border-radius: var(--radius-md);
  position: relative;
  z-index: 2;
}

/* Dönen conic-gradient kenar */
.energy-border-glow {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: calc(var(--radius-md) + 3px);
  background: conic-gradient(from var(--glow-angle, 0deg),
      transparent 0%,
      rgba(240, 165, 0, 0.0) 10%,
      rgba(240, 165, 0, 0.6) 20%,
      rgba(255, 200, 60, 0.9) 25%,
      rgba(240, 165, 0, 0.6) 30%,
      rgba(240, 165, 0, 0.0) 40%,
      transparent 50%,
      rgba(0, 180, 255, 0.0) 60%,
      rgba(0, 180, 255, 0.4) 70%,
      rgba(0, 210, 255, 0.7) 75%,
      rgba(0, 180, 255, 0.4) 80%,
      rgba(0, 180, 255, 0.0) 90%,
      transparent 100%);
  z-index: 1;
  animation: rotateGlow 4s linear infinite;
  pointer-events: none;
}

/* Dış yumuşak glow katmanı */
.energy-border-outer {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: calc(var(--radius-md) + 8px);
  background: conic-gradient(from var(--glow-angle-reverse, 180deg),
      transparent 0%,
      rgba(240, 165, 0, 0.0) 15%,
      rgba(240, 165, 0, 0.2) 22%,
      rgba(255, 220, 100, 0.35) 25%,
      rgba(240, 165, 0, 0.2) 28%,
      rgba(240, 165, 0, 0.0) 35%,
      transparent 50%,
      rgba(0, 180, 255, 0.0) 65%,
      rgba(0, 180, 255, 0.15) 72%,
      rgba(0, 210, 255, 0.25) 75%,
      rgba(0, 180, 255, 0.15) 78%,
      rgba(0, 180, 255, 0.0) 85%,
      transparent 100%);
  z-index: 0;
  filter: blur(6px);
  animation: rotateGlowReverse 6s linear infinite;
  pointer-events: none;
}

/* Canvas parçacık katmanı */
.energy-particles-canvas {
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  pointer-events: none;
  z-index: 3;
}

@property --glow-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@property --glow-angle-reverse {
  syntax: '<angle>';
  initial-value: 180deg;
  inherits: false;
}

@keyframes rotateGlow {
  0% {
    --glow-angle: 0deg;
  }

  100% {
    --glow-angle: 360deg;
  }
}

@keyframes rotateGlowReverse {
  0% {
    --glow-angle-reverse: 180deg;
  }

  100% {
    --glow-angle-reverse: -180deg;
  }
}

/* Fallback: @property desteklemeyen tarayıcılar için */
@supports not (background: conic-gradient(from 0deg, red, blue)) {
  .energy-border-glow {
    background: none;
    border: 2px solid rgba(240, 165, 0, 0.4);
    box-shadow: 0 0 15px rgba(240, 165, 0, 0.3), inset 0 0 15px rgba(240, 165, 0, 0.1);
    animation: fallbackPulse 3s ease-in-out infinite;
  }

  .energy-border-outer {
    display: none;
  }
}

@keyframes fallbackPulse {

  0%,
  100% {
    box-shadow: 0 0 15px rgba(240, 165, 0, 0.2);
  }

  50% {
    box-shadow: 0 0 30px rgba(240, 165, 0, 0.5), 0 0 60px rgba(240, 165, 0, 0.2);
  }
}

/* — Hizmet kartları akıcı enerji akışı — */
.energy-card {
  position: relative;
  overflow: hidden;
  animation: cardBreathe 4s ease-in-out infinite;
  animation-delay: var(--card-delay, 0s);
}

.energy-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: inherit;
  background: conic-gradient(from var(--glow-angle, 0deg),
      transparent 0%,
      transparent 20%,
      hsla(var(--card-hue, 200), 80%, 55%, 0.35) 25%,
      transparent 30%,
      transparent 70%,
      hsla(var(--card-hue, 200), 80%, 55%, 0.25) 75%,
      transparent 80%,
      transparent 100%);
  z-index: -1;
  animation: rotateGlow 5s linear infinite;
  animation-delay: var(--card-delay, 0s);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

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

/* Kart üzerinde yüzen ışık şeridi */
.energy-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, hsla(var(--card-hue, 200), 80%, 70%, 0.08), transparent);
  transform: skewX(-15deg);
  animation: cardLightSweep 5s ease-in-out infinite;
  animation-delay: var(--card-delay, 0s);
  z-index: 1;
  pointer-events: none;
}

@keyframes cardLightSweep {

  0%,
  100% {
    left: -50%;
  }

  50% {
    left: 120%;
  }
}

@keyframes cardBreathe {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  50% {
    transform: scale(1.015);
    box-shadow: 0 8px 40px rgba(0, 180, 255, 0.1), 0 0 20px rgba(0, 180, 255, 0.03);
  }
}

.service-card:hover {
  animation: none !important;
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 30px rgba(0, 212, 255, 0.1);
}

/* — Başlık plasma efekti — */
.plasma-title-wrap {
  position: relative;
  display: inline-block;
}

.plasma-canvas {
  position: absolute;
  top: -30px;
  left: -40px;
  width: calc(100% + 80px);
  height: calc(100% + 60px);
  pointer-events: none;
  z-index: 1;
}

.plasma-title-wrap .electric-title,
.plasma-title-wrap .section-title {
  position: relative;
  z-index: 2;
}

/* — Why kartları koyu enerji — */
.dark-energy-card {
  position: relative;
  overflow: hidden;
}

.dark-energy-card::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: inherit;
  background: conic-gradient(from var(--glow-angle, 0deg),
      transparent 0%,
      transparent 18%,
      rgba(26, 58, 110, 0.25) 23%,
      rgba(60, 120, 200, 0.35) 25%,
      rgba(26, 58, 110, 0.25) 27%,
      transparent 32%,
      transparent 68%,
      rgba(26, 58, 110, 0.2) 73%,
      rgba(40, 90, 180, 0.3) 75%,
      rgba(26, 58, 110, 0.2) 77%,
      transparent 82%,
      transparent 100%);
  z-index: -1;
  animation: rotateGlow 6s linear infinite;
  animation-delay: var(--de-delay, 0s);
  pointer-events: none;
}

.dark-energy-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(60, 120, 200, 0.06), transparent);
  transform: skewX(-15deg);
  animation: cardLightSweep 7s ease-in-out infinite;
  animation-delay: var(--de-delay, 0s);
  z-index: 1;
  pointer-events: none;
}

/* — Bölge butonları enerji pulse — */
.energy-pulse-btn {
  position: relative;
  overflow: hidden;
}

.energy-pulse-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.25) 50%, transparent 100%);
  animation: shimmerSlide 3.5s ease-in-out infinite;
  animation-delay: var(--pulse-delay, 0s);
}

/* Shimmer / Ayna animasyonu - bölge etiketleri */
.area-tag {
  position: relative;
  overflow: hidden;
  animation: shimmerStagger 3s ease-in-out infinite;
}

.area-tag::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  animation: shimmerSlide 3s ease-in-out infinite;
}

@keyframes shimmerSlide {

  0%,
  100% {
    left: -100%;
  }

  50% {
    left: 100%;
  }
}

@keyframes shimmerStagger {

  0%,
  100% {
    opacity: 0.85;
  }

  50% {
    opacity: 1;
  }
}

/* City item shimmer */
.city-item {
  position: relative;
  overflow: hidden;
}

.city-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(240, 165, 0, 0.15) 50%, transparent 100%);
  animation: cityShimmer 4s ease-in-out infinite;
}

.city-item:nth-child(3n+1)::after {
  animation-delay: 0s;
}

.city-item:nth-child(3n+2)::after {
  animation-delay: 0.5s;
}

.city-item:nth-child(3n+3)::after {
  animation-delay: 1s;
}

@keyframes cityShimmer {

  0%,
  100% {
    left: -100%;
  }

  50% {
    left: 100%;
  }
}

/* ============================
   ELEKTRİK LOGO BUTON (Footer)
   ============================ */
.electric-logo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 20px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.electric-logo-btn:hover {
  transform: scale(1.08);
}

/* İç içerik */
.elb-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #1a2d4d, #0d1a2e 70%);
  border: 2px solid rgba(255, 215, 0, 0.4);
  box-shadow:
    0 0 20px rgba(255, 215, 0, 0.2),
    0 0 40px rgba(255, 165, 0, 0.1),
    inset 0 0 20px rgba(255, 215, 0, 0.05);
  position: relative;
  z-index: 3;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.electric-logo-btn:hover .elb-inner {
  border-color: rgba(255, 215, 0, 0.8);
  box-shadow:
    0 0 30px rgba(255, 215, 0, 0.4),
    0 0 60px rgba(255, 165, 0, 0.2),
    inset 0 0 25px rgba(255, 215, 0, 0.1);
}

/* Yıldırım SVG ikonları */
.elb-bolt {
  width: 22px;
  height: 36px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.6));
  animation: boltPulse 2s ease-in-out infinite;
}

.elb-bolt-left {
  animation-delay: 0s;
}

.elb-bolt-right {
  animation-delay: 1s;
}

@keyframes boltPulse {

  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.6));
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.9));
  }
}

/* Teklif Al yazısı */
.elb-text {
  font-size: 0.85rem;
  font-weight: 800;
  color: #FFD700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 165, 0, 0.3);
  letter-spacing: 0.5px;
  white-space: nowrap;
  animation: textGlow 2.5s ease-in-out infinite;
}

@keyframes textGlow {

  0%,
  100% {
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 165, 0, 0.3);
  }

  50% {
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.8), 0 0 35px rgba(255, 165, 0, 0.5), 0 0 50px rgba(255, 107, 0, 0.2);
  }
}

/* Dönen elektrik halkaları */
.elb-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: rgba(255, 215, 0, 0.6);
  border-right-color: rgba(255, 165, 0, 0.3);
  animation: ringRotate 3s linear infinite;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.4));
}

.elb-ring-2 {
  width: 168px;
  height: 168px;
  margin: -84px 0 0 -84px;
  border-top-color: rgba(0, 180, 255, 0.4);
  border-right-color: rgba(0, 210, 255, 0.2);
  border-left-color: rgba(255, 215, 0, 0.15);
  animation: ringRotateReverse 4.5s linear infinite;
  filter: drop-shadow(0 0 8px rgba(0, 180, 255, 0.3));
}

@keyframes ringRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes ringRotateReverse {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(-360deg);
  }
}

/* Kıvılcım parçacıklar */
.elb-sparks {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.elb-sparks span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #FFD700;
  box-shadow: 0 0 6px rgba(255, 215, 0, 0.8), 0 0 12px rgba(255, 165, 0, 0.4);
  animation: sparkOrbit 3s linear infinite;
}

/* Her kıvılcıma farklı yörünge */
.elb-sparks span:nth-child(1) {
  animation-delay: 0s;
  --orbit-radius: 82px;
  --orbit-start: 0deg;
}

.elb-sparks span:nth-child(2) {
  animation-delay: 0.375s;
  --orbit-radius: 82px;
  --orbit-start: 45deg;
  width: 3px;
  height: 3px;
}

.elb-sparks span:nth-child(3) {
  animation-delay: 0.75s;
  --orbit-radius: 82px;
  --orbit-start: 90deg;
}

.elb-sparks span:nth-child(4) {
  animation-delay: 1.125s;
  --orbit-radius: 82px;
  --orbit-start: 135deg;
  width: 3px;
  height: 3px;
}

.elb-sparks span:nth-child(5) {
  animation-delay: 1.5s;
  --orbit-radius: 82px;
  --orbit-start: 180deg;
}

.elb-sparks span:nth-child(6) {
  animation-delay: 1.875s;
  --orbit-radius: 82px;
  --orbit-start: 225deg;
  width: 3px;
  height: 3px;
}

.elb-sparks span:nth-child(7) {
  animation-delay: 2.25s;
  --orbit-radius: 82px;
  --orbit-start: 270deg;
}

.elb-sparks span:nth-child(8) {
  animation-delay: 2.625s;
  --orbit-radius: 82px;
  --orbit-start: 315deg;
  width: 3px;
  height: 3px;
  background: #00d4ff;
  box-shadow: 0 0 6px rgba(0, 212, 255, 0.8);
}

@keyframes sparkOrbit {
  0% {
    top: calc(50% + var(--orbit-radius) * sin(var(--orbit-start)) - 2px);
    left: calc(50% + var(--orbit-radius) * cos(var(--orbit-start)) - 2px);
    opacity: 0;
    transform: scale(0);
  }

  10% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.3);
  }

  90% {
    opacity: 0.5;
    transform: scale(0.8);
  }

  100% {
    top: calc(50% + var(--orbit-radius) * sin(calc(var(--orbit-start) + 360deg)) - 2px);
    left: calc(50% + var(--orbit-radius) * cos(calc(var(--orbit-start) + 360deg)) - 2px);
    opacity: 0;
    transform: scale(0);
  }
}

/* Fallback: sin/cos desteklemeyen tarayıcılar */
@supports not (top: calc(50% + 80px * sin(45deg))) {
  .elb-sparks span:nth-child(1) {
    top: 2px;
    left: 50%;
  }

  .elb-sparks span:nth-child(2) {
    top: 15%;
    right: 10%;
    left: auto;
  }

  .elb-sparks span:nth-child(3) {
    top: 50%;
    right: 0;
    left: auto;
  }

  .elb-sparks span:nth-child(4) {
    bottom: 15%;
    right: 10%;
    top: auto;
    left: auto;
  }

  .elb-sparks span:nth-child(5) {
    bottom: 2px;
    left: 50%;
    top: auto;
  }

  .elb-sparks span:nth-child(6) {
    bottom: 15%;
    left: 10%;
    top: auto;
  }

  .elb-sparks span:nth-child(7) {
    top: 50%;
    left: 0;
  }

  .elb-sparks span:nth-child(8) {
    top: 15%;
    left: 10%;
  }

  .elb-sparks span {
    animation: sparkFallback 2s ease-in-out infinite;
  }

  @keyframes sparkFallback {

    0%,
    100% {
      opacity: 0.3;
      transform: scale(0.8);
    }

    50% {
      opacity: 1;
      transform: scale(1.5);
    }
  }
}


/* ============================
   NEON ELEKTRİK CTA BUTONLARI
   ============================ */

/* Ana wrapper — butonları saran container */
.neon-cta-wrap {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Neon elektrik buton — ortak stiller */
.neon-electric-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  overflow: visible;
  z-index: 1;
  transition: transform 0.2s ease;
  animation: electricShake 4s ease-in-out infinite;
}

.neon-electric-cta:nth-child(2) {
  animation-delay: 0.5s;
}

/* WhatsApp butonu (turuncu-altın) */
.neon-electric-cta.neon-gold {
  background: linear-gradient(135deg, #f0a500, #ff6b35);
  color: #fff;
  border: none;
  box-shadow:
    0 0 15px rgba(240, 165, 0, 0.4),
    0 0 30px rgba(240, 165, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.neon-electric-cta.neon-gold:hover {
  box-shadow:
    0 0 25px rgba(240, 165, 0, 0.7),
    0 0 50px rgba(240, 165, 0, 0.3),
    0 0 80px rgba(255, 107, 53, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

/* Telefon butonu (outline-mavi) */
.neon-electric-cta.neon-blue {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(0, 210, 255, 0.6);
  box-shadow:
    0 0 10px rgba(0, 210, 255, 0.3),
    0 0 20px rgba(0, 210, 255, 0.1),
    inset 0 0 10px rgba(0, 210, 255, 0.05);
}

.neon-electric-cta.neon-blue:hover {
  border-color: rgba(0, 210, 255, 0.9);
  box-shadow:
    0 0 20px rgba(0, 210, 255, 0.6),
    0 0 40px rgba(0, 210, 255, 0.3),
    0 0 60px rgba(0, 180, 255, 0.15),
    inset 0 0 15px rgba(0, 210, 255, 0.1);
  transform: scale(1.05);
}

/* Dönen neon kenar (::before) */
.neon-electric-cta::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 53px;
  z-index: -1;
  pointer-events: none;
}

.neon-electric-cta.neon-gold::before {
  background: conic-gradient(from var(--glow-angle, 0deg),
      transparent 0%,
      transparent 15%,
      rgba(240, 165, 0, 0.8) 22%,
      rgba(255, 200, 60, 1) 25%,
      rgba(240, 165, 0, 0.8) 28%,
      transparent 35%,
      transparent 65%,
      rgba(255, 107, 53, 0.6) 72%,
      rgba(255, 180, 0, 0.9) 75%,
      rgba(255, 107, 53, 0.6) 78%,
      transparent 85%,
      transparent 100%);
  animation: rotateGlow 2.5s linear infinite;
}

.neon-electric-cta.neon-blue::before {
  background: conic-gradient(from var(--glow-angle, 0deg),
      transparent 0%,
      transparent 15%,
      rgba(0, 180, 255, 0.6) 22%,
      rgba(0, 230, 255, 0.9) 25%,
      rgba(0, 180, 255, 0.6) 28%,
      transparent 35%,
      transparent 65%,
      rgba(80, 200, 255, 0.5) 72%,
      rgba(0, 210, 255, 0.8) 75%,
      rgba(80, 200, 255, 0.5) 78%,
      transparent 85%,
      transparent 100%);
  animation: rotateGlow 3s linear infinite;
}

/* Dış glow halo (::after) */
.neon-electric-cta::after {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 58px;
  z-index: -2;
  pointer-events: none;
  filter: blur(8px);
  opacity: 0.5;
}

.neon-electric-cta.neon-gold::after {
  background: conic-gradient(from var(--glow-angle, 0deg),
      transparent 0%,
      transparent 20%,
      rgba(240, 165, 0, 0.3) 25%,
      transparent 30%,
      transparent 70%,
      rgba(255, 107, 53, 0.25) 75%,
      transparent 80%,
      transparent 100%);
  animation: rotateGlow 2.5s linear infinite;
}

.neon-electric-cta.neon-blue::after {
  background: conic-gradient(from var(--glow-angle, 0deg),
      transparent 0%,
      transparent 20%,
      rgba(0, 210, 255, 0.25) 25%,
      transparent 30%,
      transparent 70%,
      rgba(0, 180, 255, 0.2) 75%,
      transparent 80%,
      transparent 100%);
  animation: rotateGlow 3s linear infinite;
}

/* Elektrik çarpma titreşim animasyonu */
@keyframes electricShake {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  2% {
    transform: translate(-1px, 1px) rotate(-0.5deg);
  }

  4% {
    transform: translate(1px, -1px) rotate(0.5deg);
  }

  6% {
    transform: translate(-1px, 0px) rotate(0deg);
  }

  8% {
    transform: translate(1px, 1px) rotate(-0.3deg);
  }

  10% {
    transform: translate(0, -1px) rotate(0.3deg);
  }

  12% {
    transform: translate(-1px, 1px) rotate(-0.5deg);
  }

  14% {
    transform: translate(1px, 0) rotate(0deg);
  }

  16% {
    transform: translate(0, 0) rotate(0deg);
  }

  /* 16-84% sakin kalıyor */
  84% {
    transform: translate(0, 0) rotate(0deg);
  }

  86% {
    transform: translate(1px, -1px) rotate(0.5deg);
  }

  88% {
    transform: translate(-1px, 1px) rotate(-0.3deg);
  }

  90% {
    transform: translate(0, -1px) rotate(0.5deg);
  }

  92% {
    transform: translate(1px, 0) rotate(-0.5deg);
  }

  94% {
    transform: translate(-1px, -1px) rotate(0.3deg);
  }

  96% {
    transform: translate(1px, 1px) rotate(0deg);
  }

  98% {
    transform: translate(0, 0) rotate(0deg);
  }
}

/* Hover'da sürekli çarpma */
.neon-electric-cta:hover {
  animation: electricShakeIntense 0.15s linear infinite !important;
}

@keyframes electricShakeIntense {
  0% {
    transform: translate(0, 0) scale(1.05);
  }

  25% {
    transform: translate(-2px, 1px) scale(1.05) rotate(-1deg);
  }

  50% {
    transform: translate(1px, -1px) scale(1.06) rotate(0.5deg);
  }

  75% {
    transform: translate(-1px, -1px) scale(1.05) rotate(-0.5deg);
  }

  100% {
    transform: translate(1px, 1px) scale(1.05) rotate(0deg);
  }
}

/* ============================
   GOOGLE MAPS
   ============================ */
.map-container {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 32px;
  border: 2px solid rgba(240, 165, 0, 0.2);
  box-shadow: var(--shadow-md);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  display: block;
}

/* ============================
   DROPDOWN MENÜ (İller)
   ============================ */
.nav-dropdown {
  position: relative;
}

.nav-dropdown>a::after {
  content: ' ▾';
  font-size: 0.7rem;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-sm);
  padding: 12px 0;
  min-width: 220px;
  max-height: 400px;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--clr-glass-border);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1002;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu a {
  display: block;
  padding: 8px 20px;
  font-size: 0.85rem;
  color: var(--clr-text-light) !important;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: rgba(240, 165, 0, 0.1);
  color: var(--clr-gold) !important;
}

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

.dropdown-divider {
  height: 1px;
  background: var(--clr-glass-border);
  margin: 8px 0;
}

/* ============================
   BOTTOM NAV BAR (Mobil)
   ============================ */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(240, 165, 0, 0.15);
  z-index: 1000;
  padding: 8px 0;
  padding-bottom: max(8px, env(safe-area-inset-bottom));
}

.bottom-nav-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 12px;
  color: var(--clr-text-muted);
  font-size: 0.65rem;
  font-weight: 500;
  transition: var(--transition);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.bottom-nav-item .nav-icon {
  font-size: 1.3rem;
  line-height: 1;
}

.bottom-nav-item.active,
.bottom-nav-item:hover {
  color: var(--clr-gold);
}

.bottom-nav-item.active .nav-icon {
  transform: scale(1.1);
}

/* ============================
   BOTTOM NAV FULL MENU (Mobil)
   ============================ */
.bottom-nav-menu {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 22, 40, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(240, 165, 0, 0.15);
  border-radius: 20px 20px 0 0;
  z-index: 1100;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bottom-nav-menu.open {
  max-height: 85vh;
  overflow-y: auto;
}

.bottom-nav-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  background: rgba(10, 22, 40, 0.98);
  z-index: 2;
}

.bottom-nav-menu-header h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-gold);
}

.bottom-nav-menu-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.bottom-nav-menu-close:hover {
  background: rgba(240, 165, 0, 0.2);
  color: var(--clr-gold);
}

.bottom-nav-menu-content {
  padding: 8px 0 24px;
}

.bottom-nav-menu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  color: var(--clr-text-light);
  font-size: 0.95rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}

.bottom-nav-menu-link:hover {
  color: var(--clr-gold);
  background: rgba(240, 165, 0, 0.06);
}

/* Dropdown accordion */
.bottom-nav-dropdown {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.bottom-nav-dropdown-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  color: var(--clr-text-light);
  font-size: 0.95rem;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.bottom-nav-dropdown-btn::after {
  content: '▾';
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  color: var(--clr-text-muted);
}

.bottom-nav-dropdown.open .bottom-nav-dropdown-btn {
  color: var(--clr-gold);
}

.bottom-nav-dropdown.open .bottom-nav-dropdown-btn::after {
  transform: rotate(180deg);
  color: var(--clr-gold);
}

.bottom-nav-dropdown-btn:hover {
  color: var(--clr-gold);
  background: rgba(240, 165, 0, 0.06);
}

.bottom-nav-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: rgba(6, 15, 29, 0.5);
}

.bottom-nav-dropdown.open .bottom-nav-dropdown-content {
  max-height: 500px;
}

.bottom-nav-dropdown-content a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px 11px 36px;
  color: var(--clr-text-muted);
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  transition: var(--transition);
}

.bottom-nav-dropdown-content a:hover {
  color: var(--clr-gold);
  background: rgba(240, 165, 0, 0.06);
}

.bottom-nav-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 4px 20px;
}

/* CTA buton */
.bottom-nav-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 20px 0;
  padding: 14px 24px;
  border-radius: 50px;
  background: var(--gradient-sun);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-gold);
  transition: var(--transition);
}

.bottom-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(240, 165, 0, 0.4);
}

/* Overlay */
.bottom-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1050;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bottom-nav-overlay.visible {
  opacity: 1;
}

@media (max-width: 768px) {
  .bottom-nav-menu {
    display: block;
  }

  .bottom-nav-overlay {
    display: block;
  }
}

/* ============================
   MOBİL MENÜ — FOTOVOLTAIK HÜCRE ANİMASYONLARI
   ============================ */

/* Menü header — güneş ikonu fotovoltaik pulse */
.bnav-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.bnav-sun-icon {
  display: inline-block;
  font-size: 1.4rem;
  position: relative;
  filter: drop-shadow(0 0 6px rgba(240, 165, 0, 0.5));
  transition: filter 0.3s ease, transform 0.3s ease;
}

/* Menü arkaplan — fotovoltaik hücre grid pattern */
.bottom-nav-menu {
  background-image:
    linear-gradient(rgba(10, 22, 40, 0.98), rgba(10, 22, 40, 0.98)),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 20px,
      rgba(240, 165, 0, 0.03) 20px,
      rgba(240, 165, 0, 0.03) 21px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 20px,
      rgba(240, 165, 0, 0.03) 20px,
      rgba(240, 165, 0, 0.03) 21px
    );
  background-size: 100% 100%, 20px 20px, 20px 20px;
}

/* Menü üst kenar — altın enerji çizgisi */
.bottom-nav-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    rgba(240, 165, 0, 0.5) 30%,
    rgba(255, 200, 0, 0.9) 50%,
    rgba(240, 165, 0, 0.5) 70%,
    transparent
  );
  border-radius: 20px 20px 0 0;
  z-index: 3;
  box-shadow: 0 0 8px rgba(240, 165, 0, 0.3);
}

/* Menü kapatma butonu — enerji deşarjı efekti */
.bottom-nav-menu-close {
  position: relative;
  overflow: visible;
}

.bottom-nav-menu-close::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(240, 165, 0, 0.3) 90deg,
    transparent 180deg,
    rgba(240, 165, 0, 0.3) 270deg,
    transparent 360deg
  );
  opacity: 0;
  animation: electricRingRotate 2s linear infinite;
}

.bottom-nav-menu-close:hover::before {
  opacity: 1;
}

@keyframes electricRingRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.bottom-nav-menu-close:active {
  animation: energyDischarge 0.3s ease-out;
}

@keyframes energyDischarge {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(240, 165, 0, 0.7); }
  50% { transform: scale(0.9); }
  100% { transform: scale(1); box-shadow: 0 0 0 10px rgba(240, 165, 0, 0); }
}

/* Menü öğeleri — enerji partikül animasyonu */
.bottom-nav-menu.open .bottom-nav-menu-link,
.bottom-nav-menu.open .bottom-nav-dropdown,
.bottom-nav-menu.open .bottom-nav-cta {
  animation: energyParticleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
}

.bottom-nav-menu.open .bottom-nav-menu-link:nth-child(1),
.bottom-nav-menu.open .bottom-nav-dropdown:nth-child(1) { animation-delay: 0.05s; }
.bottom-nav-menu.open .bottom-nav-menu-link:nth-child(2),
.bottom-nav-menu.open .bottom-nav-dropdown:nth-child(2) { animation-delay: 0.1s; }
.bottom-nav-menu.open .bottom-nav-dropdown:nth-child(3) { animation-delay: 0.15s; }
.bottom-nav-menu.open .bottom-nav-dropdown:nth-child(4) { animation-delay: 0.2s; }
.bottom-nav-menu.open .bottom-nav-dropdown:nth-child(5) { animation-delay: 0.25s; }
.bottom-nav-menu.open .bottom-nav-menu-link:nth-child(6) { animation-delay: 0.3s; }
.bottom-nav-menu.open .bottom-nav-menu-link:nth-child(7) { animation-delay: 0.35s; }
.bottom-nav-menu.open .bottom-nav-menu-link:nth-child(8) { animation-delay: 0.4s; }
.bottom-nav-menu.open .bottom-nav-cta:nth-child(9) { animation-delay: 0.5s; }

@keyframes energyParticleIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    box-shadow: 0 0 0 0 rgba(240, 165, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 15px 2px rgba(240, 165, 0, 0.3);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 0 0 0 rgba(240, 165, 0, 0);
  }
}

/* Dropdown buton — elektrik yükü hover efekti */
.bottom-nav-dropdown-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.bottom-nav-dropdown-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(240, 165, 0, 0.6) 25%,
    rgba(255, 220, 0, 1) 50%,
    rgba(240, 165, 0, 0.6) 75%,
    transparent
  );
  transform: translateY(-50%);
  transition: width 0.4s ease;
  box-shadow: 0 0 8px rgba(240, 165, 0, 0.8);
}

.bottom-nav-dropdown-btn:hover::before {
  width: 100%;
}

.bottom-nav-dropdown-btn:hover {
  background: rgba(240, 165, 0, 0.08);
  box-shadow: inset 0 0 20px rgba(240, 165, 0, 0.1);
}

/* Dropdown açılış — elektrik şarjı animasyonu */
.bottom-nav-dropdown.open .bottom-nav-dropdown-content {
  animation: electricCharge 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes electricCharge {
  0% {
    max-height: 0;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top;
  }
  30% {
    opacity: 0.3;
  }
  100% {
    max-height: 500px;
    opacity: 1;
    transform: scaleY(1);
  }
}

/* Dropdown linkler — elektrik kıvılcım efekti */
.bottom-nav-dropdown.open .bottom-nav-dropdown-content a {
  animation: electricSpark 0.4s ease forwards;
  opacity: 0;
  position: relative;
}

.bottom-nav-dropdown.open .bottom-nav-dropdown-content a:nth-child(1) { animation-delay: 0.05s; }
.bottom-nav-dropdown.open .bottom-nav-dropdown-content a:nth-child(2) { animation-delay: 0.08s; }
.bottom-nav-dropdown.open .bottom-nav-dropdown-content a:nth-child(3) { animation-delay: 0.11s; }
.bottom-nav-dropdown.open .bottom-nav-dropdown-content a:nth-child(4) { animation-delay: 0.14s; }
.bottom-nav-dropdown.open .bottom-nav-dropdown-content a:nth-child(5) { animation-delay: 0.17s; }
.bottom-nav-dropdown.open .bottom-nav-dropdown-content a:nth-child(6) { animation-delay: 0.2s; }
.bottom-nav-dropdown.open .bottom-nav-dropdown-content a:nth-child(7) { animation-delay: 0.23s; }
.bottom-nav-dropdown.open .bottom-nav-dropdown-content a:nth-child(8) { animation-delay: 0.26s; }
.bottom-nav-dropdown.open .bottom-nav-dropdown-content a:nth-child(9) { animation-delay: 0.29s; }
.bottom-nav-dropdown.open .bottom-nav-dropdown-content a:nth-child(10) { animation-delay: 0.32s; }
.bottom-nav-dropdown.open .bottom-nav-dropdown-content a:nth-child(11) { animation-delay: 0.35s; }
.bottom-nav-dropdown.open .bottom-nav-dropdown-content a:nth-child(12) { animation-delay: 0.38s; }
.bottom-nav-dropdown.open .bottom-nav-dropdown-content a:nth-child(13) { animation-delay: 0.41s; }
.bottom-nav-dropdown.open .bottom-nav-dropdown-content a:nth-child(14) { animation-delay: 0.44s; }
.bottom-nav-dropdown.open .bottom-nav-dropdown-content a:nth-child(15) { animation-delay: 0.47s; }
.bottom-nav-dropdown.open .bottom-nav-dropdown-content a:nth-child(16) { animation-delay: 0.5s; }
.bottom-nav-dropdown.open .bottom-nav-dropdown-content a:nth-child(17) { animation-delay: 0.53s; }
.bottom-nav-dropdown.open .bottom-nav-dropdown-content a:nth-child(18) { animation-delay: 0.56s; }
.bottom-nav-dropdown.open .bottom-nav-dropdown-content a:nth-child(19) { animation-delay: 0.59s; }
.bottom-nav-dropdown.open .bottom-nav-dropdown-content a:nth-child(20) { animation-delay: 0.62s; }
.bottom-nav-dropdown.open .bottom-nav-dropdown-content a:nth-child(21) { animation-delay: 0.65s; }
.bottom-nav-dropdown.open .bottom-nav-dropdown-content a:nth-child(22) { animation-delay: 0.68s; }
.bottom-nav-dropdown.open .bottom-nav-dropdown-content a:nth-child(23) { animation-delay: 0.71s; }

@keyframes electricSpark {
  0% {
    opacity: 0;
    transform: translateX(-15px);
    filter: brightness(0.5);
  }
  50% {
    filter: brightness(1.5);
    box-shadow: -2px 0 8px rgba(240, 165, 0, 0.6);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: brightness(1);
  }
}

.bottom-nav-dropdown.open .bottom-nav-dropdown-content a:hover {
  background: rgba(240, 165, 0, 0.12);
  box-shadow: inset 3px 0 0 rgba(240, 165, 0, 1),
              0 0 15px rgba(240, 165, 0, 0.2);
}

/* CTA buton — güneş enerjisi efekti */
.bottom-nav-cta {
  position: relative;
  overflow: hidden;
  background: var(--gradient-sun);
  box-shadow: 0 4px 20px rgba(240, 165, 0, 0.4);
  transition: all 0.3s ease;
}

.bottom-nav-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    rgba(255, 255, 255, 0.3) 50%,
    transparent
  );
  transition: none;
}

.bottom-nav-cta:hover::before {
  animation: solarEnergyFlow 1.2s ease-out forwards;
}

@keyframes solarEnergyFlow {
  0% { left: -60%; }
  100% { left: 120%; }
}

.bottom-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(240, 165, 0, 0.6),
              0 0 40px rgba(255, 200, 0, 0.3);
}

.bottom-nav-cta:active {
  transform: translateY(0) scale(0.98);
  filter: brightness(1.3);
}

/* Bottom nav bar — fotovoltaik aktif gösterge */
@media (max-width: 768px) {
  .bottom-nav-item {
    position: relative;
  }

  .bottom-nav-item.active::after {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: var(--clr-gold);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(240, 165, 0, 0.5);
  }

  /* Bottom nav üst border — altın enerji çizgisi */
  .bottom-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg,
      transparent,
      rgba(240, 165, 0, 0.4) 30%,
      rgba(255, 200, 0, 0.7) 50%,
      rgba(240, 165, 0, 0.4) 70%,
      transparent
    );
  }

  .bottom-nav-item:active {
    transform: scale(0.92);
    transition: transform 0.1s ease;
  }
}

/* Dropdown divider — altın çizgi */
.bottom-nav-divider {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(240, 165, 0, 0.15) 30%,
    rgba(240, 165, 0, 0.25) 50%,
    rgba(240, 165, 0, 0.15) 70%,
    transparent
  );
  margin: 4px 20px;
}

@keyframes electricArc {
  0% {
    left: -30%;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

/* ============================
   İL SAYFA STİLLERİ
   ============================ */
.city-page-hero {
  padding: 120px 0 60px;
  background: var(--gradient-hero);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.city-page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.city-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.city-service-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.city-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.city-service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.city-service-card-body {
  padding: 24px;
}

.city-service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--clr-text-dark);
}

.city-service-card-body p {
  color: var(--clr-text-body);
  font-size: 0.9rem;
  line-height: 1.7;
}

.district-section {
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.district-section h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 4px solid var(--clr-gold);
}

.district-section p {
  color: var(--clr-text-body);
  line-height: 1.8;
  margin-bottom: 12px;
}

.district-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.district-tag {
  padding: 10px 16px;
  background: var(--clr-bg-light);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-text-dark);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.district-tag:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  background: rgba(240, 165, 0, 0.05);
}

/* ============================
   MOBİL APP STİLLERİ (Geliştirilmiş)
   ============================ */
@media (max-width: 768px) {

  /* Body padding for bottom nav */
  body {
    padding-bottom: 70px;
  }

  /* Bottom nav göster */
  .bottom-nav {
    display: block;
  }

  /* Hamburger menü mobilde gizle — sadece bottom nav kullanılacak */
  .mobile-toggle {
    display: none !important;
  }

  /* Header mobilde ortala */
  .header-inner {
    justify-content: center;
  }

  /* Logo mobilde ortada */
  .logo {
    margin: 0 auto;
  }

  /* Nav-links mobilde gizle — bottom nav kullanılıyor */
  .nav-links {
    display: none !important;
  }

  /* Header sadece logo + CTA */
  .header {
    padding: 10px 0;
  }

  .header.scrolled {
    padding: 8px 0;
  }

  /* WhatsApp bottom nav'ın üstünde */
  .whatsapp-float {
    bottom: 85px;
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
  }

  .scroll-top {
    bottom: 145px;
    right: 20px;
    width: 38px;
    height: 38px;
  }

  /* Touch-friendly büyük butonlar */
  .btn-cta,
  .btn-outline {
    padding: 14px 32px;
    font-size: 1rem;
    min-height: 48px;
  }

  /* Kart breathing animasyonunu mobilde kapat */
  .service-card {
    animation: none;
  }

  /* Daha kompakt section padding */
  .section {
    padding: 60px 0;
  }

  /* Hero mobil */
  .hero {
    min-height: auto;
    padding: 80px 0 40px;
  }

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

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

  /* İstatistik sayaçları yatay */
  .hero-stats {
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

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

  /* Hizmet kartları tek sütun */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 28px 20px;
  }

  /* Why kartları */
  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .why-card {
    padding: 24px 16px;
  }

  /* Blog kartı */
  .blog-card {
    flex-direction: column;
  }

  .blog-card-image {
    width: 100%;
    min-height: 180px;
  }

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

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer {
    padding-bottom: 80px;
  }

  /* Container mobil padding */
  .container {
    padding: 0 16px;
  }

  /* İl sayfaları mobil */
  .city-services-grid {
    grid-template-columns: 1fr;
  }

  /* Google Maps mobil */
  .map-container iframe {
    height: 280px;
  }

  /* Form mobil */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Hizmet bölgeleri mobil */
  .city-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }

  .areas-content {
    flex-direction: column;
    gap: 24px;
  }

  .areas-highlight {
    padding: 24px;
  }

  /* About mobil */
  .about-content {
    flex-direction: column;
    gap: 32px;
  }

  .about-image::after {
    display: none;
  }

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

  /* Contact mobil */
  .contact-wrapper {
    flex-direction: column;
    gap: 32px;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  /* Dropdown menü mobilde bottom nav submenüsü */
  .dropdown-menu {
    position: fixed;
    bottom: 60px;
    left: 0;
    right: 0;
    top: auto;
    transform: none;
    width: 100%;
    max-height: 60vh;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    padding: 16px 0;
  }
}

/* Çok küçük ekranlar */
@media (max-width: 380px) {
  .hero h1 {
    font-size: 1.5rem;
  }

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

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

  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============================
   KURUMSAL SAYFALAR
   ============================ */

/* Kurumsal Hero */
.kurumsal-hero {
  padding: 120px 0 60px;
  background: var(--gradient-hero);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.kurumsal-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 50% 30%, rgba(240, 165, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.kurumsal-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
}

/* Kurumsal İçerik Wrapper */
.kurumsal-content {
  max-width: 900px;
  margin: 0 auto;
}

/* SSS Kategori */
.faq-category {
  margin-bottom: 48px;
}

.faq-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(240, 165, 0, 0.2);
}

.faq-category-icon {
  font-size: 1.8rem;
}

.faq-category-header h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-text-dark);
}

/* Kurumsal CTA */
.kurumsal-cta-section {
  text-align: center;
  padding: 60px 40px;
  background: var(--gradient-dark);
  border-radius: var(--radius-lg);
  margin-top: 60px;
}

.kurumsal-cta-section h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.kurumsal-cta-section p {
  color: var(--clr-text-light);
  margin-bottom: 24px;
  font-size: 1rem;
}

/* KVKK Metin Stili */
.kurumsal-text-content {
  max-width: 860px;
}

.kurumsal-article h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin: 40px 0 16px;
  padding-left: 16px;
  border-left: 4px solid var(--clr-gold);
}

.kurumsal-article p {
  color: var(--clr-text-body);
  line-height: 1.8;
  margin-bottom: 12px;
}

.kvkk-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.kvkk-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  color: var(--clr-text-body);
  line-height: 1.7;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.kvkk-list li::before {
  content: '›';
  position: absolute;
  left: 8px;
  color: var(--clr-gold);
  font-weight: 700;
  font-size: 1.2rem;
}

.kvkk-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: var(--clr-bg-light);
  border-radius: var(--radius-sm);
  margin-bottom: 32px;
  border-left: 4px solid var(--clr-gold);
}

.kvkk-meta-item {
  color: var(--clr-text-body);
  font-size: 0.9rem;
}

.kvkk-meta-item strong {
  color: var(--clr-text-dark);
}

.kvkk-table-wrap {
  overflow-x: auto;
  margin: 16px 0 24px;
}

.kvkk-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-size: 0.9rem;
}

.kvkk-table th {
  background: var(--clr-bg-dark);
  color: var(--clr-gold);
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
}

.kvkk-table td {
  padding: 12px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--clr-text-body);
}

.kvkk-table tr:nth-child(even) td {
  background: rgba(240, 165, 0, 0.03);
}

.kvkk-table tr:hover td {
  background: rgba(240, 165, 0, 0.06);
}

.kvkk-contact-box {
  background: var(--clr-bg-light);
  padding: 24px;
  border-radius: var(--radius-sm);
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kvkk-contact-item {
  color: var(--clr-text-body);
  font-size: 0.95rem;
}

/* Hakkımızda Hero */
.about-hero-section {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 64px;
}

.about-hero-image {
  flex: 1;
  position: relative;
}

.about-hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-hero-text {
  flex: 1;
}

.about-hero-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-hero-text p {
  color: var(--clr-text-body);
  margin-bottom: 12px;
  line-height: 1.8;
}

/* Vizyon & Misyon */
.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.vm-card {
  text-align: center;
  padding: 40px 28px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(240, 165, 0, 0.2);
}

.vm-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.vm-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 12px;
}

.vm-card p {
  color: var(--clr-text-body);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Neden Biz Detay */
.why-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-detail-card {
  padding: 32px 24px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.why-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.why-detail-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.why-detail-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 8px;
}

.why-detail-card p {
  color: var(--clr-text-body);
  font-size: 0.85rem;
  line-height: 1.7;
}

/* Hizmetlerimiz Detay */
.hizmet-detail-card {
  display: flex;
  gap: 32px;
  padding: 40px;
  background: var(--clr-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--clr-glass-border);
  margin-bottom: 24px;
  transition: var(--transition);
}

.hizmet-detail-card:hover {
  border-color: rgba(240, 165, 0, 0.3);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.3);
}

.hizmet-detail-icon {
  font-size: 3rem;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 165, 0, 0.1);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.hizmet-detail-card:hover .hizmet-detail-icon {
  background: var(--gradient-sun);
  transform: scale(1.1) rotate(5deg);
}

.hizmet-detail-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.hizmet-subtitle {
  color: var(--clr-gold) !important;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px !important;
}

.hizmet-detail-content p {
  color: var(--clr-text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.hizmet-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.hizmet-feature {
  color: var(--clr-text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Süreç Adımları */
.process-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.process-step {
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.process-number {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--gradient-sun);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  box-shadow: var(--shadow-gold);
}

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 8px;
}

.process-step p {
  color: var(--clr-text-body);
  font-size: 0.8rem;
  line-height: 1.5;
}

/* İnsan Kaynakları */
.ik-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.ik-benefit-card {
  text-align: center;
  padding: 36px 24px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.ik-benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(240, 165, 0, 0.2);
}

.ik-benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.ik-benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 8px;
}

.ik-benefit-card p {
  color: var(--clr-text-body);
  font-size: 0.9rem;
  line-height: 1.7;
}

.ik-positions {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ik-position-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.ik-position-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(240, 165, 0, 0.2);
}

.ik-position-header {
  padding: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ik-position-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 12px;
}

.ik-position-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.ik-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  background: var(--clr-bg-light);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--clr-text-body);
}

.ik-tag-active {
  background: rgba(46, 204, 113, 0.12);
  color: #2ecc71;
  font-weight: 600;
}

.ik-position-body {
  padding: 24px;
}

.ik-position-body h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin: 16px 0 8px;
}

.ik-position-body h4:first-child {
  margin-top: 0;
}

.ik-position-body ul {
  list-style: none;
  padding: 0;
}

.ik-position-body ul li {
  position: relative;
  padding: 6px 0 6px 20px;
  color: var(--clr-text-body);
  font-size: 0.9rem;
  line-height: 1.6;
}

.ik-position-body ul li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: var(--clr-gold);
  font-weight: 700;
}

.ik-position-footer {
  padding: 16px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(240, 165, 0, 0.02);
}

.ik-general-apply {
  text-align: center;
  padding: 48px;
  background: var(--clr-bg-light);
  border-radius: var(--radius-lg);
  margin-top: 48px;
  border: 2px dashed rgba(240, 165, 0, 0.3);
}

.ik-general-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.ik-general-apply h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 12px;
}

.ik-general-apply p {
  color: var(--clr-text-body);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.ik-kvkk-note {
  margin-top: 32px;
  padding: 16px 24px;
  background: rgba(240, 165, 0, 0.05);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--clr-gold);
}

.ik-kvkk-note p {
  color: var(--clr-text-body);
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0;
}

/* Kurumsal Responsive */
@media (max-width: 1024px) {
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }

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

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

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

  .about-hero-section {
    flex-direction: column;
  }

  .hizmet-detail-card {
    flex-direction: column;
  }

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

@media (max-width: 768px) {
  .kurumsal-hero {
    padding: 100px 0 40px;
  }

  .kurumsal-hero h1 {
    font-size: 1.8rem;
  }

  .kurumsal-cta-section {
    padding: 40px 20px;
  }

  .kvkk-meta {
    flex-direction: column;
    gap: 8px;
  }

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

  .ik-benefits-grid {
    grid-template-columns: 1fr;
  }

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

  .hizmet-detail-card {
    padding: 24px;
  }

  .ik-position-meta {
    flex-direction: column;
  }

  .ik-general-apply {
    padding: 32px 20px;
  }
}

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

/* ============================
   GERİ DÖNÜŞÜM GÖRSEL EFEKTİ
   ============================ */
.recycle-border-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  border-radius: var(--radius-md);
  isolation: isolate;
}

.recycle-border-wrap img {
  display: block;
  width: 100%;
  border-radius: var(--radius-md);
  position: relative;
  z-index: 2;
}

.recycle-border-glow {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: calc(var(--radius-md) + 3px);
  background: conic-gradient(from var(--glow-angle, 0deg),
      transparent 0%,
      rgba(46, 204, 113, 0.0) 10%,
      rgba(46, 204, 113, 0.6) 20%,
      rgba(39, 174, 96, 0.9) 25%,
      rgba(46, 204, 113, 0.6) 30%,
      rgba(46, 204, 113, 0.0) 40%,
      transparent 50%,
      rgba(22, 160, 133, 0.0) 60%,
      rgba(22, 160, 133, 0.4) 70%,
      rgba(26, 188, 156, 0.7) 75%,
      rgba(22, 160, 133, 0.4) 80%,
      rgba(22, 160, 133, 0.0) 90%,
      transparent 100%);
  z-index: 1;
  animation: rotateGlow 4s linear infinite;
  pointer-events: none;
}

.recycle-border-outer {
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: calc(var(--radius-md) + 8px);
  background: conic-gradient(from var(--glow-angle-reverse, 180deg),
      transparent 0%,
      rgba(46, 204, 113, 0.0) 15%,
      rgba(46, 204, 113, 0.2) 22%,
      rgba(39, 174, 96, 0.35) 25%,
      rgba(46, 204, 113, 0.2) 28%,
      rgba(46, 204, 113, 0.0) 35%,
      transparent 50%,
      rgba(22, 160, 133, 0.0) 65%,
      rgba(22, 160, 133, 0.15) 72%,
      rgba(26, 188, 156, 0.25) 75%,
      rgba(22, 160, 133, 0.15) 78%,
      rgba(22, 160, 133, 0.0) 85%,
      transparent 100%);
  z-index: 0;
  filter: blur(6px);
  animation: rotateGlowReverse 6s linear infinite;
  pointer-events: none;
}

.recycle-particles-canvas {
  position: absolute;
  top: -10px;
  left: -10px;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  pointer-events: none;
  z-index: 3;
}

/* ============================
   YATIRIMCI İLİŞKİLERİ SAYFASI
   ============================ */

/* Layout: Sidebar + Main */
.yi-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

/* Sidebar */
.yi-sidebar {
  position: sticky;
  top: 100px;
}

.yi-sidebar-nav {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.yi-sidebar-group {
  padding: 0;
}

.yi-sidebar-group+.yi-sidebar-group {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.yi-sidebar-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  padding: 16px 20px 8px;
  margin: 0;
  letter-spacing: 0.3px;
}

.yi-sidebar-link {
  display: block;
  padding: 10px 20px 10px 32px;
  font-size: 0.85rem;
  color: var(--clr-text-body);
  transition: var(--transition);
  position: relative;
  border-left: 3px solid transparent;
}

.yi-sidebar-link:hover {
  color: var(--clr-gold);
  background: rgba(240, 165, 0, 0.04);
}

.yi-sidebar-link.active {
  color: var(--clr-gold);
  background: rgba(240, 165, 0, 0.08);
  border-left-color: var(--clr-gold);
  font-weight: 600;
}

/* Main Content */
.yi-main {
  min-width: 0;
}

.yi-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-md);
}

.yi-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.yi-intro-text {
  margin-bottom: 48px;
  padding: 24px 28px;
  background: linear-gradient(135deg, rgba(240, 165, 0, 0.05) 0%, rgba(0, 180, 216, 0.03) 100%);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--clr-gold);
}

.yi-intro-text p {
  color: var(--clr-text-body);
  line-height: 1.8;
  margin-bottom: 8px;
}

.yi-intro-text p:last-child {
  margin-bottom: 0;
}

/* Section */
.yi-section {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  scroll-margin-top: 100px;
}

.yi-section:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.yi-section h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--clr-text-dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(240, 165, 0, 0.15);
}

.yi-section h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-text-dark);
}

.yi-section p {
  color: var(--clr-text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Image Wrap */
.yi-image-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.yi-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Table */
.yi-table-wrap {
  overflow-x: auto;
  margin: 20px 0 24px;
}

.yi-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-size: 0.9rem;
}

.yi-table th {
  background: var(--clr-bg-dark);
  color: var(--clr-gold);
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-family: var(--font-heading);
}

.yi-table td {
  padding: 14px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--clr-text-body);
}

.yi-table tr:last-child td {
  border-bottom: none;
}

.yi-table tr:hover td {
  background: rgba(240, 165, 0, 0.04);
}

/* Info Box */
.yi-info-box {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 20px;
  background: rgba(240, 165, 0, 0.05);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--clr-gold);
}

.yi-info-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.yi-info-box p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--clr-text-body);
}

/* VMV Grid (Vizyon, Misyon, Değerler) */
.yi-vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.yi-vmv-card {
  text-align: center;
  padding: 32px 20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.yi-vmv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(240, 165, 0, 0.2);
}

.yi-vmv-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.yi-vmv-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 10px;
}

.yi-vmv-card p {
  color: var(--clr-text-body);
  font-size: 0.88rem;
  line-height: 1.7;
  margin: 0;
}

/* Company Info Table */
.yi-company-info {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.yi-info-row {
  display: flex;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
}

.yi-info-row:last-child {
  border-bottom: none;
}

.yi-info-row:hover {
  background: rgba(240, 165, 0, 0.03);
}

.yi-info-label {
  flex: 0 0 180px;
  padding: 14px 20px;
  font-weight: 600;
  color: var(--clr-text-dark);
  font-size: 0.9rem;
  background: rgba(240, 165, 0, 0.03);
  border-right: 1px solid rgba(0, 0, 0, 0.04);
}

.yi-info-value {
  flex: 1;
  padding: 14px 20px;
  color: var(--clr-text-body);
  font-size: 0.9rem;
}

/* Document Card */
.yi-doc-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin: 20px 0;
  transition: var(--transition);
}

.yi-doc-card:hover {
  border-color: rgba(240, 165, 0, 0.3);
  box-shadow: var(--shadow-md);
}

.yi-doc-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.yi-doc-info h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 4px;
}

.yi-doc-info p {
  color: var(--clr-text-body);
  font-size: 0.88rem;
  margin: 0;
}

/* List */
.yi-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.yi-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  color: var(--clr-text-body);
  line-height: 1.7;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  font-size: 0.9rem;
}

.yi-list li:last-child {
  border-bottom: none;
}

.yi-list li::before {
  content: '✓';
  position: absolute;
  left: 4px;
  color: var(--clr-gold);
  font-weight: 700;
}

/* Policy Grid */
.yi-policy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.yi-policy-card {
  padding: 28px 24px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.yi-policy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(240, 165, 0, 0.2);
}

.yi-policy-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.yi-policy-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 8px;
}

.yi-policy-card p {
  color: var(--clr-text-body);
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 0;
}

/* Contact Info Bar */
.yi-contact-info-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0 32px;
}

.yi-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.yi-contact-item:hover {
  border-color: rgba(240, 165, 0, 0.3);
  box-shadow: var(--shadow-md);
}

.yi-contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.yi-contact-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 2px;
}

.yi-contact-item a,
.yi-contact-item span {
  font-size: 0.85rem;
  color: var(--clr-text-body);
}

.yi-contact-item a:hover {
  color: var(--clr-gold);
}

/* Form */
.yi-form {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

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

.yi-form-group {
  margin-bottom: 16px;
}

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

.yi-form-group input,
.yi-form-group select,
.yi-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--clr-text-dark);
  transition: var(--transition);
  background: var(--clr-bg-light);
}

.yi-form-group input:focus,
.yi-form-group select:focus,
.yi-form-group textarea:focus {
  outline: none;
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.1);
}

.yi-submit-btn {
  width: 100%;
  padding: 14px 32px;
  font-size: 1rem;
  margin-top: 8px;
}

/* Responsive */
@media (max-width: 1024px) {
  .yi-layout {
    grid-template-columns: 240px 1fr;
    gap: 32px;
  }

  .yi-vmv-grid {
    grid-template-columns: 1fr;
  }

  .yi-contact-info-bar {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .yi-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .yi-sidebar {
    position: relative;
    top: 0;
    margin-bottom: 24px;
  }

  .yi-sidebar-nav {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    border-radius: var(--radius-sm);
    -webkit-overflow-scrolling: touch;
  }

  .yi-sidebar-group {
    display: flex;
    align-items: center;
    padding: 0;
    flex-shrink: 0;
  }

  .yi-sidebar-group+.yi-sidebar-group {
    border-top: none;
    border-left: 1px solid rgba(0, 0, 0, 0.06);
  }

  .yi-sidebar-title {
    display: none;
  }

  .yi-sidebar-link {
    padding: 12px 16px;
    white-space: nowrap;
    border-left: none;
    border-bottom: 3px solid transparent;
    font-size: 0.8rem;
  }

  .yi-sidebar-link.active {
    border-left: none;
    border-bottom-color: var(--clr-gold);
  }

  .yi-policy-grid {
    grid-template-columns: 1fr;
  }

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

  .yi-info-row {
    flex-direction: column;
  }

  .yi-info-label {
    flex: none;
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding: 10px 16px 6px;
  }

  .yi-info-value {
    padding: 6px 16px 10px;
  }

  .yi-form {
    padding: 16px;
  }

  /* Hero image responsive */
  .yi-hero-image {
    border-radius: var(--radius-md);
    margin-bottom: 20px;
  }

  .yi-hero-image img {
    width: 100%;
    height: auto;
  }

  /* Intro text responsive */
  .yi-intro-text {
    padding: 16px 18px;
    margin-bottom: 32px;
  }

  .yi-intro-text p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  /* Section responsive */
  .yi-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
  }

  .yi-section h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    padding-bottom: 10px;
  }

  .yi-section h3 {
    font-size: 1.05rem;
  }

  .yi-section p {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  /* Image wrap responsive */
  .yi-image-wrap {
    margin-bottom: 16px;
  }

  .yi-image-wrap img {
    width: 100%;
    height: auto;
  }

  /* Table responsive */
  .yi-table-wrap {
    margin: 16px 0;
  }

  .yi-table {
    font-size: 0.82rem;
    min-width: 0;
  }

  .yi-table th,
  .yi-table td {
    padding: 10px 12px;
  }

  /* VMV cards responsive */
  .yi-vmv-grid {
    gap: 16px;
    margin-top: 16px;
  }

  .yi-vmv-card {
    padding: 24px 16px;
  }

  .yi-vmv-icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
  }

  .yi-vmv-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
  }

  .yi-vmv-card p {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  /* Info box responsive */
  .yi-info-box {
    padding: 12px 16px;
    gap: 10px;
  }

  .yi-info-box p {
    font-size: 0.85rem;
  }

  /* Doc card responsive */
  .yi-doc-card {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }

  .yi-doc-icon {
    font-size: 2rem;
  }

  /* List responsive */
  .yi-list {
    padding-left: 20px;
    font-size: 0.9rem;
  }

  .yi-list li {
    padding: 6px 0;
    font-size: 0.88rem;
  }

  /* Contact info bar responsive */
  .yi-contact-info-bar {
    gap: 12px;
  }

  .yi-contact-item {
    padding: 12px;
    gap: 10px;
  }

  .yi-contact-icon {
    font-size: 1.3rem;
  }

  /* Form responsive */
  .yi-form-group input,
  .yi-form-group select,
  .yi-form-group textarea {
    font-size: 16px; /* Prevents iOS zoom */
    padding: 12px 14px;
  }

  .yi-form-group label {
    font-size: 0.85rem;
  }

  .yi-submit-btn {
    padding: 14px 24px;
    font-size: 0.95rem;
  }

  /* Kurumsal hero responsive */
  .kurumsal-hero {
    padding: 80px 0 40px;
  }

  .kurumsal-hero h1 {
    font-size: 1.6rem;
  }

  .kurumsal-hero .section-subtitle {
    font-size: 0.9rem;
  }

  /* Kurumsal CTA responsive */
  .kurumsal-cta-section {
    padding: 40px 20px;
  }

  .kurumsal-cta-section h2 {
    font-size: 1.3rem;
  }

  .kurumsal-cta-section p {
    font-size: 0.9rem;
  }

  /* Policy card responsive */
  .yi-policy-card {
    padding: 20px 16px;
  }

  .yi-policy-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

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

  .yi-policy-card p {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  /* Company info responsive */
  .yi-company-info {
    border-radius: var(--radius-sm);
  }

  /* Neon CTA responsive */
  .neon-cta-wrap {
    flex-direction: column;
    gap: 12px;
  }

  .neon-electric-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .yi-layout {
    gap: 0;
  }

  .yi-sidebar-link {
    padding: 10px 12px;
    font-size: 0.75rem;
  }

  .yi-section h2 {
    font-size: 1.15rem;
  }

  .yi-hero-image {
    border-radius: var(--radius-sm);
  }

  .yi-intro-text {
    padding: 14px 14px;
  }

  .yi-vmv-card {
    padding: 20px 14px;
  }

  .yi-form {
    padding: 12px;
  }

  .kurumsal-hero {
    padding: 60px 0 30px;
  }

  .kurumsal-hero h1 {
    font-size: 1.35rem;
  }

  .yi-table th,
  .yi-table td {
    padding: 8px 10px;
    font-size: 0.78rem;
  }
}

/* ====================================
   BLOG IMAGE SOLAR ANIMATION
   ==================================== */
.blog-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 3px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0a0e1a, #0d1525);
}

.solar-animation-border {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  padding: 3px;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(255, 215, 0, 0.3) 30deg,
    rgba(255, 165, 0, 0.4) 60deg,
    rgba(255, 215, 0, 0.3) 90deg,
    transparent 120deg,
    rgba(255, 215, 0, 0.2) 180deg,
    rgba(255, 165, 0, 0.3) 240deg,
    rgba(255, 215, 0, 0.3) 300deg,
    transparent 360deg
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: solarBorderRotate 8s linear infinite;
  pointer-events: none;
}

@keyframes solarBorderRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.blog-hero-image {
  display: block;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 1;
}

/* Solar particles floating effect */
.blog-image-wrapper::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 10%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #FFD700;
  box-shadow:
    40px 60px 0 #FFD700,
    120px 30px 0 #FFA500,
    200px 80px 0 #FFD700,
    280px 50px 0 #FFA500,
    60px 120px 0 #FFD700,
    180px 110px 0 #FFA500;
  animation: blogParticleFloat 12s ease-in-out infinite;
  opacity: 0.4;
  pointer-events: none;
}

@keyframes blogParticleFloat {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-20px) translateX(10px);
    opacity: 0.7;
  }
}

/* Glow pulse effect */
.blog-image-wrapper::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,215,0,0.05) 0%, transparent 70%);
  animation: solarGlowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes solarGlowPulse {
  0%, 100% {
    transform: scale(0.8);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.6;
  }
}

@media (max-width: 768px) {
  .blog-image-wrapper {
    max-width: 100%;
    padding: 2px;
  }
  
  .blog-image-wrapper::before {
    width: 3px;
    height: 3px;
    box-shadow:
      30px 40px 0 #FFD700,
      90px 20px 0 #FFA500,
      150px 60px 0 #FFD700,
      40px 80px 0 #FFA500;
  }
}

/* ==================== MÜŞTERI YORUMLARI MARQUEE ==================== */
.testimonials-section {
  padding: 80px 0 60px;
  overflow: hidden;
  position: relative;
}

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

.testimonials-track-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.testimonials-track {
  display: flex;
  gap: 24px;
  animation: marqueeScroll 60s linear infinite;
  width: max-content;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonial-card {
  flex-shrink: 0;
  width: 320px;
  background: var(--clr-bg-dark, #0c1d35);
  border: 1px solid rgba(255, 215, 0, 0.12);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(255, 215, 0, 0.35);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #FFD700;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  min-height: 70px;
  font-style: italic;
}

.testimonial-text::before {
  content: '"';
  font-size: 28px;
  font-weight: 700;
  color: #FFD700;
  opacity: 0.5;
  line-height: 0;
  position: relative;
  top: 8px;
  margin-right: 4px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 16px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #0a1628;
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 2px;
}

.testimonial-info span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.testimonial-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 10px;
  color: #FFD700;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-card {
    width: 280px;
    padding: 22px 18px;
  }
  .testimonials-section {
    padding: 60px 0 40px;
  }
  .testimonials-track {
    gap: 16px;
  }
}

/* ==================== HESAPLAMA ARACI ==================== */
.calc-section {
  padding: 80px 0;
}

.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1000px;
  margin: 40px auto 0;
}

.calc-form {
  background: var(--clr-bg-dark, #0c1d35);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 20px;
  padding: 36px 32px;
}

.calc-form h3 {
  color: #fff;
  font-size: 18px;
  margin: 0 0 24px;
  font-weight: 600;
}

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

.calc-form-group label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  font-weight: 500;
}

.calc-form-group input,
.calc-form-group select {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.calc-form-group input:focus,
.calc-form-group select:focus {
  border-color: #FFD700;
}

.calc-form-group select option {
  background: #0c1d35;
  color: #fff;
}

.calc-form-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.calc-range-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.calc-range-wrap input[type="range"] {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  border: none;
  padding: 0;
}

.calc-range-wrap input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  cursor: pointer;
  border: 2px solid #0c1d35;
}

.calc-range-value {
  min-width: 60px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #FFD700;
}

.calc-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
  border: none;
  border-radius: 12px;
  color: #0a1628;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.3s;
  margin-top: 8px;
  font-family: inherit;
}

.calc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

/* Sonuçlar */
.calc-results {
  background: var(--clr-bg-dark, #0c1d35);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 20px;
  padding: 36px 32px;
  display: none;
}

.calc-results.active {
  display: block;
  animation: calcFadeIn 0.5s ease;
}

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

.calc-results h3 {
  color: #fff;
  font-size: 18px;
  margin: 0 0 24px;
  font-weight: 600;
}

.calc-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.calc-result-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
}

.calc-result-card .calc-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.calc-result-card .calc-value {
  font-size: 22px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 4px;
}

.calc-result-card .calc-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calc-result-card.highlight-card {
  border-color: rgba(255, 215, 0, 0.25);
  background: rgba(255, 215, 0, 0.05);
}

.calc-savings-bar {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.calc-savings-bar h4 {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 12px;
  font-weight: 500;
}

.calc-bar-track {
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 8px;
}

.calc-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #FFD700, #4ce08a);
  border-radius: 5px;
  transition: width 1s ease;
  width: 0%;
}

.calc-bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
}

.calc-cta {
  display: block;
  text-align: center;
  padding: 14px;
  background: linear-gradient(135deg, #28a060, #4ce08a);
  border-radius: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: transform 0.2s;
}

.calc-cta:hover {
  transform: translateY(-2px);
}

/* Placeholder state */
.calc-placeholder {
  text-align: center;
  padding: 80px 20px;
  color: rgba(255, 255, 255, 0.3);
}

.calc-placeholder .calc-placeholder-icon {
  font-size: 48px;
  margin-bottom: 16px;
  opacity: 0.4;
}

.calc-placeholder p {
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .calc-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .calc-form, .calc-results {
    padding: 24px 20px;
  }
  .calc-result-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .calc-section {
    padding: 60px 0;
  }
}

/* ==================== SERTİFİKALAR ==================== */
.certificates-section {
  padding: 80px 0;
  overflow: hidden;
}

.cert-track-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 48px;
  mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 5%, #000 95%, transparent);
}

.cert-track {
  display: flex;
  gap: 24px;
  animation: certMarquee 40s linear infinite;
  width: max-content;
}

.cert-track:hover {
  animation-play-state: paused;
}

@keyframes certMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.cert-card {
  flex-shrink: 0;
  width: 220px;
  background: var(--clr-bg-dark, #0c1d35);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cert-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 12px 40px rgba(255, 215, 0, 0.08);
}

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

.cert-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  position: relative;
}

.cert-icon-iso { background: rgba(59, 130, 246, 0.12); border: 1px solid rgba(59, 130, 246, 0.25); }
.cert-icon-ce { background: rgba(255, 215, 0, 0.12); border: 1px solid rgba(255, 215, 0, 0.25); }
.cert-icon-iec { background: rgba(76, 222, 138, 0.12); border: 1px solid rgba(76, 222, 138, 0.25); }
.cert-icon-tse { background: rgba(239, 68, 68, 0.12); border: 1px solid rgba(239, 68, 68, 0.25); }
.cert-icon-guarantee { background: rgba(168, 85, 247, 0.12); border: 1px solid rgba(168, 85, 247, 0.25); }

.cert-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: #4ce08a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #0a1628;
  font-weight: 700;
}

.cert-card h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 6px;
  letter-spacing: 0.5px;
}

.cert-card .cert-number {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 10px;
  font-family: monospace;
}

.cert-card p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
  margin: 0;
}

.cert-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cert-stat { text-align: center; }

.cert-stat-value {
  font-size: 32px;
  font-weight: 700;
  color: #FFD700;
  line-height: 1;
  margin-bottom: 6px;
}

.cert-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .cert-card { width: 190px; padding: 22px 16px; }
  .certificates-section { padding: 60px 0; }
  .cert-stats { gap: 24px; flex-wrap: wrap; }
  .cert-stat-value { font-size: 24px; }
  .cert-track { gap: 16px; }
}

/* ====== COMPARISON TABLE ====== */
.compare-section {
  padding: 80px 0;
  background: var(--clr-bg-dark, #0a1628);
}

.compare-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.compare-tab {
  padding: 10px 24px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 50px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.compare-tab:hover {
  border-color: rgba(255, 215, 0, 0.5);
  color: #FFD700;
}

.compare-tab.active {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0a1628;
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: none;
  background: rgba(12, 29, 53, 0.6);
  backdrop-filter: blur(10px);
  position: relative;
  padding: 2px;
}

.compare-table-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 2px;
  background: conic-gradient(
    from var(--neon-angle, 0deg),
    transparent 0%,
    #FFD700 10%,
    #FFA500 20%,
    transparent 30%,
    transparent 50%,
    #22c55e 60%,
    #60a5fa 70%,
    transparent 80%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: neonBorderRotate 4s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.compare-table-wrap > table {
  position: relative;
  z-index: 2;
  background: rgba(12, 29, 53, 0.95);
  border-radius: 14px;
}

@keyframes neonBorderRotate {
  0% { --neon-angle: 0deg; }
  100% { --neon-angle: 360deg; }
}

@property --neon-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* Fallback for browsers without @property support */
@supports not (background: paint(something)) {
  .compare-table-wrap::before {
    background: linear-gradient(
      var(--neon-angle-fallback, 0deg),
      transparent 0%,
      #FFD700 10%,
      #FFA500 20%,
      transparent 30%,
      transparent 50%,
      #22c55e 60%,
      #60a5fa 70%,
      transparent 80%
    );
    animation: neonBorderFallback 4s linear infinite;
  }
}

@keyframes neonBorderFallback {
  0% { background-position: 0% 0%; opacity: 0.6; }
  25% { opacity: 1; }
  50% { background-position: 100% 100%; opacity: 0.6; }
  75% { opacity: 1; }
  100% { background-position: 0% 0%; opacity: 0.6; }
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.compare-table thead th {
  padding: 18px 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.15);
  color: rgba(255, 255, 255, 0.5);
}

.compare-table thead th:first-child {
  text-align: left;
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

.compare-table thead th.highlight-col {
  background: linear-gradient(180deg, rgba(255, 215, 0, 0.12) 0%, transparent 100%);
  color: #FFD700;
  position: relative;
}

.compare-table thead th.highlight-col::after {
  content: '⭐';
  display: block;
  font-size: 10px;
  margin-top: 4px;
}

.compare-table tbody td {
  padding: 14px 20px;
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}

.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.compare-table tbody td.highlight-col {
  background: rgba(255, 215, 0, 0.04);
  font-weight: 600;
  color: #FFD700;
}

.compare-table tbody tr:hover td {
  background: rgba(255, 215, 0, 0.03);
}

.compare-table tbody tr:hover td.highlight-col {
  background: rgba(255, 215, 0, 0.08);
}

.compare-check {
  color: #22c55e;
  font-weight: 700;
  font-size: 18px;
}

.compare-cross {
  color: #ef4444;
  font-weight: 700;
  font-size: 18px;
}

.compare-partial {
  color: #f59e0b;
  font-weight: 700;
  font-size: 14px;
}

.compare-panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.compare-panel-card {
  background: rgba(12, 29, 53, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.compare-panel-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
}

.compare-panel-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.compare-panel-card.recommended {
  border-color: rgba(255, 215, 0, 0.4);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.08);
}

.compare-panel-card.recommended::before {
  background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
  height: 4px;
}

.compare-panel-brand {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.compare-panel-origin {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.compare-panel-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.compare-panel-spec {
  text-align: center;
  padding: 10px 8px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
}

.compare-panel-spec-value {
  font-size: 18px;
  font-weight: 700;
  color: #FFD700;
  line-height: 1;
  margin-bottom: 4px;
}

.compare-panel-spec-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.compare-panel-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.badge-premium {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0a1628;
}

.badge-value {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.badge-popular {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.compare-panel-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.compare-panel-features li {
  padding: 5px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}

.compare-panel-features li::before {
  content: '✓';
  color: #22c55e;
  font-weight: 700;
  font-size: 12px;
}

.compare-content {
  display: none;
}

.compare-content.active {
  display: block;
  animation: compareFadeIn 0.4s ease;
}

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

.compare-note {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  font-style: italic;
}

@media (max-width: 768px) {
  .compare-section { padding: 60px 0; }
  .compare-tabs { gap: 6px; }
  .compare-tab { padding: 8px 16px; font-size: 13px; }
  .compare-panel-grid { grid-template-columns: 1fr; }
  .compare-table thead th,
  .compare-table tbody td { padding: 10px 12px; font-size: 13px; }
}

/* ====== INVOICE ANALYZER ====== */
.invoice-analyzer {
  max-width: 1100px;
  margin: 0 auto;
}

.invoice-form-section {
  background: rgba(12, 29, 53, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.invoice-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

.invoice-form-group label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.invoice-form-group input,
.invoice-form-group select {
  padding: 14px 16px;
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 12px;
  background: rgba(10, 22, 40, 0.8);
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.3s;
  outline: none;
}

.invoice-form-group input:focus,
.invoice-form-group select:focus {
  border-color: #FFD700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.invoice-form-group input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.invoice-form-group small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.invoice-form-group select option {
  background: #0a1628;
  color: #fff;
}

.invoice-analyze-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0a1628;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  margin-top: 8px;
  align-self: center;
}

.invoice-analyze-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

/* Results */
.invoice-results-section {
  margin-top: 48px;
}

.invoice-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.invoice-summary-card {
  background: rgba(12, 29, 53, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.invoice-summary-card.highlight-card {
  border-color: rgba(255, 215, 0, 0.3);
  background: rgba(255, 215, 0, 0.05);
}

.invoice-summary-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.summary-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.summary-value {
  font-size: 24px;
  font-weight: 700;
  color: #FFD700;
  line-height: 1.2;
  margin-bottom: 6px;
}

.summary-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Detail Cards */
.invoice-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.invoice-detail-card {
  background: rgba(12, 29, 53, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 16px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.invoice-detail-card.highlight-card {
  border-color: rgba(255, 215, 0, 0.3);
  background: rgba(255, 215, 0, 0.04);
}

.invoice-detail-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-row span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.detail-row strong {
  font-size: 14px;
  color: #fff;
  font-weight: 600;
}

/* CTA */
.invoice-cta {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 165, 0, 0.05));
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 20px;
}

.invoice-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.invoice-cta p span {
  color: #FFD700;
  font-weight: 700;
}

.invoice-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.invoice-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .invoice-form-section { padding: 24px 16px; }
  .invoice-form-row { grid-template-columns: 1fr; }
  .invoice-summary-grid { grid-template-columns: repeat(2, 1fr); }
  .invoice-details-grid { grid-template-columns: 1fr; }
  .summary-value { font-size: 18px; }
  .invoice-cta { padding: 24px 16px; }
  .invoice-cta p { font-size: 15px; }
}

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

/* ====== ARTICLE FEEDBACK ====== */
.article-feedback {
  max-width: 700px;
  margin: 48px auto 0;
  padding: 32px;
  background: rgba(12, 29, 53, 0.5);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 16px;
  text-align: center;
}

.article-feedback-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.article-feedback-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.feedback-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 50px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.feedback-btn:hover {
  border-color: rgba(255, 215, 0, 0.5);
  color: #FFD700;
  background: rgba(255, 215, 0, 0.05);
}

.feedback-btn.active-yes {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.4);
  color: #22c55e;
  pointer-events: none;
}

.feedback-btn.active-no {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.4);
  color: #ef4444;
  pointer-events: none;
}

.feedback-btn .emoji {
  font-size: 20px;
}

.article-feedback-message {
  display: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  animation: feedbackFadeIn 0.4s ease;
}

.article-feedback-message.show {
  display: block;
}

.feedback-message-success {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.15);
}

.feedback-message-improve {
  background: rgba(255, 215, 0, 0.06);
  border: 1px solid rgba(255, 215, 0, 0.12);
}

.feedback-textarea {
  width: 100%;
  min-height: 80px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 12px;
  background: rgba(10, 22, 40, 0.8);
  color: #fff;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  margin-top: 12px;
  outline: none;
  box-sizing: border-box;
}

.feedback-textarea:focus {
  border-color: #FFD700;
}

.feedback-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.feedback-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: #0a1628;
  font-size: 14px;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}

.feedback-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
}

.feedback-final {
  display: none;
  padding: 16px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  animation: feedbackFadeIn 0.4s ease;
}

.feedback-final.show {
  display: block;
}

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

@media (max-width: 768px) {
  .article-feedback { padding: 24px 16px; margin: 32px auto 0; }
  .feedback-btn { padding: 10px 20px; font-size: 14px; }
}

/* ====== SOCIAL SHARE BUTTONS ====== */
.social-share {
  max-width: 700px;
  margin: 32px auto 0;
  padding: 24px;
  background: rgba(12, 29, 53, 0.4);
  border: 1px solid rgba(255, 215, 0, 0.08);
  border-radius: 16px;
  text-align: center;
}

.social-share-title {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.social-share-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.share-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
}

.share-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.share-twitter {
  background: linear-gradient(135deg, #1DA1F2, #0c85d0);
  color: #fff;
}

.share-twitter:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(29, 161, 242, 0.3);
}

.share-facebook {
  background: linear-gradient(135deg, #1877F2, #165ed3);
  color: #fff;
}

.share-facebook:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(24, 119, 242, 0.3);
}

.share-linkedin {
  background: linear-gradient(135deg, #0077B5, #005f8f);
  color: #fff;
}

.share-linkedin:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 119, 181, 0.3);
}

/* ====== RELATED ARTICLES ====== */
.related-articles {
  max-width: 900px;
  margin: 48px auto 0;
  padding: 32px;
  background: rgba(12, 29, 53, 0.4);
  border: 1px solid rgba(255, 215, 0, 0.08);
  border-radius: 16px;
}

.related-articles-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
}

.related-articles-title::before {
  content: '📚 ';
}

.related-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.related-article-card {
  background: rgba(10, 22, 40, 0.6);
  border: 1px solid rgba(255, 215, 0, 0.1);
  border-radius: 12px;
  padding: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}

.related-article-card:hover {
  border-color: rgba(255, 215, 0, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.related-article-emoji {
  font-size: 24px;
  margin-bottom: 8px;
  display: block;
}

.related-article-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin-bottom: 8px;
}

.related-article-excerpt {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .social-share { padding: 20px 16px; margin: 24px auto 0; }
  .social-share-buttons { gap: 8px; }
  .share-btn { padding: 8px 16px; font-size: 13px; }
  .related-articles { padding: 24px 16px; margin: 32px auto 0; }
  .related-articles-grid { grid-template-columns: 1fr; gap: 12px; }
}
/* ============================
   İL SAYFASI - GÜNEŞ POTANSİYELİ
   ============================ */
.city-solar-potential {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a1628 0%, #0f2744 100%);
}

.city-solar-potential .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.city-solar-potential .section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-text-white);
  margin-bottom: 12px;
}

.city-solar-potential .section-subtitle {
  color: var(--clr-text-muted);
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.solar-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.solar-stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 184, 0, 0.15);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  transition: var(--transition);
}

.solar-stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 184, 0, 0.4);
  box-shadow: 0 10px 30px rgba(255, 184, 0, 0.15);
}

.solar-stat-icon {
  font-size: 40px;
  margin-bottom: 12px;
}

.solar-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--clr-gold);
  font-family: var(--font-heading);
  line-height: 1.2;
}

.solar-stat-unit {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-top: 4px;
}

.solar-stat-desc {
  font-size: 0.8rem;
  color: var(--clr-text-light);
  margin-top: 8px;
  opacity: 0.8;
}

.solar-potential-text {
  background: rgba(255, 184, 0, 0.08);
  border: 1px solid rgba(255, 184, 0, 0.15);
  border-radius: var(--radius-md);
  padding: 24px 32px;
  margin-top: 32px;
  color: var(--clr-text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

.solar-potential-text strong {
  color: var(--clr-gold);
}

/* ============================
   İL SAYFASI - PROJE REFERANSLARI
   ============================ */
.city-projects {
  padding: 80px 0;
  background: var(--clr-bg-white);
}

.city-projects .section-header {
  text-align: center;
  margin-bottom: 48px;
}

.city-projects .section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-text-dark);
  margin-bottom: 12px;
}

.city-projects .section-subtitle {
  color: var(--clr-text-body);
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.project-card {
  background: var(--clr-bg-white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid #e8ecf1;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.project-card:hover {
  border-color: var(--clr-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.project-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.project-badge {
  background: rgba(46, 204, 113, 0.12);
  color: #27ae60;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.project-year {
  color: var(--clr-text-muted);
  font-size: 0.85rem;
}

.project-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--clr-text-dark);
  margin-bottom: 16px;
}

.project-details {
  margin: 16px 0;
}

.project-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--clr-text-body);
  font-size: 0.9rem;
  border-bottom: 1px solid #f0f2f5;
}

.project-detail-item:last-child {
  border-bottom: none;
}

.project-detail-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.project-detail-item strong {
  color: var(--clr-text-dark);
}

.project-testimonial {
  background: linear-gradient(135deg, rgba(240, 165, 0, 0.06), rgba(255, 107, 53, 0.06));
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--clr-gold);
  font-style: italic;
  color: var(--clr-text-body);
  font-size: 0.88rem;
  margin-top: 16px;
  line-height: 1.6;
}

/* ============================
   İL SAYFASI - MOBİL UYUMLULUK
   ============================ */
@media (max-width: 992px) {
  .solar-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .city-solar-potential,
  .city-projects {
    padding: 48px 0;
  }

  .city-solar-potential .section-title,
  .city-projects .section-title {
    font-size: 1.5rem;
  }

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

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

  .solar-stat-value {
    font-size: 1.5rem;
  }

  .solar-stat-icon {
    font-size: 32px;
  }

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

  .project-card {
    padding: 20px;
  }

  .solar-potential-text {
    padding: 16px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .solar-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .solar-stat-card {
    padding: 16px 12px;
  }

  .solar-stat-value {
    font-size: 1.3rem;
  }

  .solar-stat-unit {
    font-size: 0.75rem;
  }

  .solar-stat-desc {
    font-size: 0.72rem;
  }
}

/* Failsafe for horizontal overflow */
body, html { overflow-x: hidden; width: 100%; }
