/* ============================================================
   ASHA ENERJİ - Stylesheet
   ============================================================ */

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

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

:root {
  --primary:       #1e3a5f;
  --primary-dark:  #0d2139;
  --primary-light: #2c5282;
  --accent:        #f59e0b;
  --accent-hover:  #d97706;
  --text:          #374151;
  --text-light:    #6b7280;
  --heading:       #111827;
  --white:         #ffffff;
  --bg:            #ffffff;
  --bg-alt:        #f0f4f8;
  --bg-dark:       #0d1b2a;
  --border:        #e5e7eb;
  --font-h:        'Lexend', sans-serif;
  --font-b:        'Lato', sans-serif;
  --max-w:         1200px;
  --t:             0.3s ease;
  --shadow:        0 4px 20px rgba(0,0,0,.08);
  --shadow-md:     0 8px 32px rgba(0,0,0,.14);
  --radius:        8px;
}

html { scroll-behavior: smooth; background: var(--primary-dark); }

body {
  font-family: var(--font-b);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; transition: color var(--t); }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

/* ---- Utilities ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-pad { padding: 90px 0; }

.section-title { margin-bottom: 50px; }
.section-title .sub  { display: block; font-family: var(--font-h); font-size: .85rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: .5rem; }
.section-title h2    { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.section-title h2 span { color: var(--accent); }
.section-title p     { margin-top: .75rem; color: var(--text-light); max-width: 640px; }
.section-title.center { text-align: center; }
.section-title.center p { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 4px;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .03em;
  transition: background var(--t), transform var(--t), box-shadow var(--t);
}
.btn-primary   { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,158,11,.35); }
.btn-outline   { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--primary); }
.btn-dark      { background: var(--primary); color: var(--white); }
.btn-dark:hover{ background: var(--primary-light); transform: translateY(-2px); }

/* ---- Top Bar ---- */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  padding: .5rem 0;
}
.topbar .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.topbar a {
  color: rgba(255,255,255,.8);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.topbar a:hover { color: var(--accent); }
.topbar i { font-size: .95rem; }

/* ---- Header ---- */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 2rem;
}
.logo img { height: 52px; width: auto; }
.logo:hover { opacity: .9; }

/* Desktop nav */
.main-nav { display: flex; align-items: center; gap: 1.75rem; }
.main-nav a {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: .9rem;
  color: var(--heading);
  padding: .35rem 0;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--t);
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; padding: .25rem 0; }
.hamburger span { display: block; height: 2px; background: var(--heading); border-radius: 2px; transition: var(--t); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.25rem 1.5rem;
  gap: .25rem;
}
.mobile-nav a {
  font-family: var(--font-h);
  font-weight: 600;
  font-size: .95rem;
  color: var(--heading);
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
  display: block;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .btn { margin-top: .75rem; justify-content: center; }
.mobile-nav.open { display: flex; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--primary-dark) url('../images/asha-anasayfa-1024x683.webp') center/cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13,33,57,.88) 0%, rgba(13,33,57,.55) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 680px;
  padding: 80px 0;
}
.hero-content .badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
}
.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.hero-content h1 span { color: var(--accent); }
.hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 2rem;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---- About ---- */
.about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.about-img img { width: 100%; object-fit: cover; }
.check-list { display: flex; flex-direction: column; gap: .45rem; margin: 1.25rem 0 1.75rem; padding: 0; list-style: none; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-weight: 400;
  font-size: .9375rem;
  color: var(--text);
  line-height: 1.55;
  padding: .5rem .75rem;
  background: var(--bg-alt);
  border-radius: 6px;
}
.check-list li i { color: var(--accent); margin-top: .2rem; flex-shrink: 0; font-size: .82rem; }

/* ---- References ---- */
.refs { background: var(--bg-alt); padding: 70px 0; }
.refs-track-wrap { overflow: hidden; position: relative; display: flex; }
.refs-track-wrap::before,
.refs-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.refs-track-wrap::before { left: 0; background: linear-gradient(to right, var(--bg-alt), transparent); }
.refs-track-wrap::after  { right: 0; background: linear-gradient(to left, var(--bg-alt), transparent); }

.refs-track {
  display: flex;
  gap: 40px;
  align-items: center;
  animation: ticker 35s linear infinite;
  width: max-content;
}
.refs-track:hover { animation-play-state: paused; }
.refs-track img {
  height: 54px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(1) opacity(.65);
  transition: filter var(--t);
}
.refs-track img:hover { filter: grayscale(0) opacity(1); }

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

/* ---- Services ---- */
.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.service-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--t), box-shadow var(--t);
  background: var(--white);
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card .read-more::after { content: ''; position: absolute; inset: 0; }
.service-card-thumb {
  height: 220px;
  background: center/cover no-repeat;
  position: relative;
}
.service-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,33,57,.6) 0%, transparent 60%);
}
.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.service-card-body p  { font-size: .9rem; color: var(--text-light); flex: 1; }
.service-card-body .read-more {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--accent);
  font-weight: 700;
  font-family: var(--font-h);
  font-size: .85rem;
  margin-top: 1rem;
  transition: gap var(--t), color var(--t);
}
.service-card-body .read-more:hover { gap: .65rem; color: var(--accent-hover); }

/* ---- Why Choose ---- */
.why { background: var(--primary-dark); color: var(--white); }
.why .section-title h2 { color: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.feature-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  transition: background var(--t), transform var(--t);
}
.feature-item:hover { background: rgba(245,158,11,.12); transform: translateY(-4px); }
.feature-item .icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(245,158,11,.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
  color: var(--accent);
}
.feature-item h4 { color: var(--white); font-size: 1rem; }

/* ---- Process ---- */
.process { background: var(--bg-alt); }
.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}
.process-steps { display: flex; flex-direction: column; gap: 1.75rem; }
.process-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.process-step .step-icon {
  width: 54px; height: 54px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.process-step .step-content h5 { font-size: 1rem; color: var(--heading); margin-bottom: .3rem; }
.process-step .step-content p  { font-size: .88rem; color: var(--text-light); }
.process-img img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.cta-banner .tag { font-family: var(--font-h); font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: .75rem; }
.cta-banner h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--white); margin-bottom: 1rem; }
.cta-banner p  { color: rgba(255,255,255,.82); margin-bottom: 2rem; }
.cta-banner .phone { font-size: 2rem; font-family: var(--font-h); font-weight: 700; color: var(--accent); }
.cta-banner .phone a { color: inherit; }
.cta-banner .phone a:hover { color: var(--white); }

/* ---- Testimonials ---- */
.testimonials { background: var(--bg-alt); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--t), box-shadow var(--t);
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testi-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: center/cover no-repeat;
  border: 3px solid var(--accent);
}
.testi-card .name  { font-size: 1.05rem; font-weight: 700; color: var(--heading); }
.testi-card .role  { font-size: .82rem; color: var(--text-light); margin-bottom: 1rem; }
.testi-card p      { font-size: .9rem; color: var(--text); font-style: italic; line-height: 1.65; }
.stars { color: var(--accent); margin-top: .75rem; font-size: .95rem; letter-spacing: .1rem; }

/* ---- Stats ---- */
.stats { background: var(--primary); color: var(--white); padding: 70px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-item .num {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  display: block;
}
.stat-item .label {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  margin-top: .5rem;
  display: block;
}

/* ---- Skills Section ---- */
.skills-section { background: var(--white); }
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.skills-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.skills-images img { border-radius: var(--radius); width: 100%; object-fit: cover; height: 200px; }
.skill-bars { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.skill-bar { }
.skill-bar-header { display: flex; justify-content: space-between; margin-bottom: .4rem; }
.skill-bar-header span { font-weight: 600; font-size: .9rem; color: var(--heading); }
.skill-bar-track {
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.skill-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  border-radius: 4px;
  width: 0;
  transition: width 1.4s ease;
}

/* ---- Contact Form Section ---- */
.contact-cta {
  background: url('https://ashaenerji.com/wp-content/uploads/2025/07/asha-banner.webp') center/cover no-repeat;
  position: relative;
}
.contact-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,33,57,.82);
}
.contact-cta .container { position: relative; z-index: 1; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { color: var(--white); margin-bottom: 1rem; }
.contact-info p  { color: rgba(255,255,255,.8); margin-bottom: 2rem; }
.contact-info-items { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item { display: flex; align-items: center; gap: 1rem; }
.contact-info-item .icon {
  width: 48px; height: 48px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--white);
  flex-shrink: 0;
}
.contact-info-item .text .label { font-size: .78rem; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .08em; }
.contact-info-item .text a, .contact-info-item .text span { color: var(--white); font-weight: 600; }
.contact-info-item .text a:hover { color: var(--accent); }

/* Quote Form */
.quote-form {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.quote-form h4 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--heading);
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--accent);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; margin-bottom: 1rem; }
.form-group label { font-size: .82rem; font-weight: 700; color: var(--heading); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: .65rem .9rem;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-b);
  font-size: .9rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--t), box-shadow var(--t);
  width: 100%;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,158,11,.12);
}
.form-group select { cursor: pointer; }
.form-submit { width: 100%; margin-top: .5rem; justify-content: center; font-size: 1rem; padding: .85rem; }
.form-success { display: none; text-align: center; padding: 2rem; color: #16a34a; font-weight: 600; font-size: 1rem; }

/* ---- Footer ---- */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,.75);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.5fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-logo img { height: 50px; margin-bottom: 1.25rem; filter: brightness(1.1); }
.footer-logo p { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.7; }
.footer-col h5 {
  font-family: var(--font-h);
  font-size: .95rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  padding-bottom: .65rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .87rem;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: color var(--t), gap var(--t);
}
.footer-links a i { font-size: .65rem; color: var(--accent); }
.footer-links a:hover { color: var(--accent); gap: .75rem; }
.footer-contact-list { display: flex; flex-direction: column; gap: .85rem; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: .75rem; font-size: .87rem; }
.footer-contact-list li i { color: var(--accent); margin-top: .2rem; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,.65); }
.footer-contact-list a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .83rem;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--accent); }
.footer-bottom b { color: rgba(255,255,255,.7); }

/* ---- Page Banner (inner pages) ---- */
.page-banner {
  background: var(--primary-dark) url('../images/asha-anasayfa-1024x683.webp') center/cover no-repeat;
  position: relative;
  padding: 80px 0 60px;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,33,57,.78);
}
.page-banner .inner {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.page-banner h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); margin-bottom: .5rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: rgba(255,255,255,.7);
  margin-top: .5rem;
}
.breadcrumb a { color: var(--accent); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ---- Category / Service Page Layout ---- */
.cat-page { padding: 50px 0 70px; }
.cat-intro {
  font-size: 1.05rem;
  color: var(--text-light);
  margin: 0 0 2.5rem;
  text-align: center;
}
.cat-section-title {
  font-size: 1.2rem;
  font-family: var(--font-h);
  color: var(--heading);
  margin-bottom: 1rem;
  text-align: center;
}

/* ── Alt Bölüm Başlığı (içerik bölümleri arası) ── */
.sub-section-heading {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--primary);
  padding: 1.1rem 1.5rem;
  border-radius: var(--radius);
  margin: 3rem 0 1.5rem;
}
.sub-section-heading .ssh-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent);
}
.sub-section-heading h2 {
  color: var(--white);
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.3;
}

/* ---- Service Detail ---- */
.service-detail { padding: 90px 0; }
.service-detail-grid {
  display: block;
}
.service-detail-grid article {
  max-width: 960px;
  margin: 0 auto;
}
.service-detail-content h2 { font-size: 1.9rem; margin-bottom: 1.25rem; }
.service-detail-content p  { margin-bottom: 1rem; }
.service-detail-content h3 { font-size: 1.2rem; margin: 2rem 0 .75rem; color: var(--primary); }
.service-detail-sidebar { position: sticky; top: 100px; }
.service-nav {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.service-nav h5 { font-size: .95rem; margin-bottom: 1rem; color: var(--heading); }
.service-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .65rem .85rem;
  border-radius: 4px;
  font-size: .88rem;
  color: var(--text);
  transition: background var(--t), color var(--t);
  margin-bottom: .35rem;
}
.service-nav a:hover, .service-nav a.active { background: var(--primary); color: var(--white); }
.contact-card {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  margin-top: 1.5rem;
  text-align: center;
}
.contact-card p { color: rgba(255,255,255,.8); font-size: .88rem; margin-bottom: 1.25rem; }
.contact-card .phone { font-size: 1.3rem; font-weight: 700; color: var(--accent); font-family: var(--font-h); }
.contact-card .phone a { color: inherit; }

/* ---- Page Intro Split (görsel + metin + CTA) ---- */
.page-intro-split {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2.75rem;
}
.page-intro-split img {
  border-radius: var(--radius);
  width: 100%;
  height: 350px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.cta-group {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.75rem;
}
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: 2px solid #25D366;
}
.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}

/* ---- Service Overview Cards (3-col, hizmet detayları) ---- */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.25rem 0 2.5rem;
}
.svc-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  border-bottom: 3px solid var(--accent);
  text-align: center;
}
.svc-card > i { font-size: 1.75rem; color: var(--accent); display: block; margin-bottom: .75rem; }
.svc-card > strong { display: block; color: var(--heading); font-size: .9375rem; margin-bottom: .4rem; font-family: var(--font-h); }
.svc-card > p { font-size: .84rem; color: var(--text); margin: 0; line-height: 1.5; }

/* ---- Reasons Grid (Neden ASHA Enerji) ---- */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.25rem 0 2rem;
}
.reason-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 4px solid var(--accent);
}
.reason-card > strong { display: block; color: var(--heading); font-size: .9375rem; margin-bottom: .5rem; font-family: var(--font-h); }
.reason-card > p { font-size: .875rem; color: var(--text); line-height: 1.6; margin: 0; }

/* ---- Service CTA (bottom dark panel) ---- */
.service-cta {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 3rem;
}
.service-cta h2 { color: #fff; margin-bottom: .75rem; font-size: 1.45rem; }
.service-cta p { color: rgba(255,255,255,.8); margin-bottom: 1.5rem; font-size: .9375rem; max-width: 520px; margin-left: auto; margin-right: auto; }
.service-cta .cta-group { justify-content: center; }

/* ---- Related Services Links ---- */
.related-links { display: flex; flex-direction: column; gap: .5rem; margin-top: 1rem; }
.related-links a { display: inline-flex; align-items: center; gap: .5rem; font-size: .9rem; color: var(--primary); font-weight: 500; }
.related-links a i { color: var(--accent); font-size: .8rem; }
.related-links a:hover { color: var(--accent); }

/* ---- Project Cards (Referans / Case Study) ---- */
.project-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin: 1.25rem 0 3rem;
}
.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
}
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.project-card-img {
  height: 210px;
  background: center/cover no-repeat;
  position: relative;
  flex-shrink: 0;
}
.project-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,33,57,.65) 0%, transparent 55%);
}
.project-card-badge {
  position: absolute;
  top: .9rem;
  left: .9rem;
  background: var(--accent);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 3px;
  z-index: 1;
  font-family: var(--font-h);
}
.project-card-body {
  padding: 1.4rem 1.5rem 1.6rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.project-card-title {
  font-size: 1rem;
  font-family: var(--font-h);
  color: var(--heading);
  font-weight: 700;
  margin-bottom: .25rem;
  line-height: 1.3;
}
.project-card-meta {
  font-size: .78rem;
  color: var(--accent);
  font-weight: 700;
  font-family: var(--font-h);
  letter-spacing: .04em;
  margin-bottom: .85rem;
  display: block;
}
.project-card-body p {
  font-size: .875rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: .9rem;
}
.project-card-body .check-list { margin: 0; }
.project-card-body .check-list li {
  font-size: .84rem;
  padding: .35rem .6rem;
}

/* Single wide card (tek referans için) */
.project-card-wide {
  display: grid;
  grid-template-columns: min(340px, 42%) 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  border: 1px solid rgba(0,0,0,.06);
  margin: 1.25rem 0 3rem;
  transition: transform var(--t), box-shadow var(--t);
}
.project-card-wide:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.project-card-wide .project-card-img { height: 100%; min-height: 240px; }
.project-card-wide .project-card-body { padding: 2rem; }
.project-card-wide .project-card-title { font-size: 1.1rem; }

@media (max-width: 700px) {
  .project-card-wide { grid-template-columns: 1fr; }
  .project-card-wide .project-card-img { height: 200px; }
  .project-cards { grid-template-columns: 1fr; }
}

/* ---- Service Feature Row ---- */
.service-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.07);
  margin-top: 2.5rem;
  box-shadow: var(--shadow);
}
.service-feature-row > img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
}
.service-feature-body {
  padding: 2.25rem 2rem;
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.service-feature-body strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  display: block;
  margin-bottom: .85rem;
  font-family: var(--font-h);
  letter-spacing: -.01em;
}
.service-feature-body p {
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 0;
  flex: 1;
}

/* ---- Iletisim page ---- */
.contact-page { padding: 90px 0; }
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
}
.contact-page-info h2 { margin-bottom: 1rem; }
.contact-page-info p  { color: var(--text-light); margin-bottom: 2rem; }
.contact-page-map iframe { width: 100%; border-radius: var(--radius); border: 0; }

/* ---- Projects page ---- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ---- Blog page ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ---- Floating Contact Widget ---- */
.float-contact {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  z-index: 890;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .6rem 1.1rem;
  border-radius: 50px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: .82rem;
  color: var(--white);
  box-shadow: 0 4px 18px rgba(0,0,0,.22);
  transition: transform var(--t), box-shadow var(--t);
  white-space: nowrap;
  text-decoration: none;
}
.float-btn i { font-size: 1rem; flex-shrink: 0; }
.float-btn:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 26px rgba(0,0,0,.28); color: var(--white); }
.float-btn.float-phone { background: var(--primary); }
.float-btn.float-wa    { background: #25D366; }

@media (max-width: 768px) {
  .float-contact { bottom: 5rem; right: 1rem; }
  .float-btn span { display: none; }
  .float-btn { padding: .8rem; border-radius: 50%; width: 48px; height: 48px; justify-content: center; }
  .float-btn i { font-size: 1.15rem; }
}

/* ---- Back to Top ---- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px; height: 46px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(245,158,11,.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t), transform var(--t);
  z-index: 900;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); background: var(--accent-hover); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .svc-cards      { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-grid   { grid-template-columns: 1fr; }
  .process-img    { display: none; }
  .stats-grid     { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .testi-grid     { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section-pad { padding: 60px 0; }
  .topbar       { display: none; }
  .hamburger    { display: flex; }
  .main-nav     { display: none; }
  .header-btn   { display: none; }

  .about-grid     { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .skills-grid    { grid-template-columns: 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-sidebar { position: static; }
  .service-feature-row { grid-template-columns: 1fr; }
  .service-feature-row > img { min-height: 220px; }
  .page-intro-split { grid-template-columns: 1fr; }
  .page-intro-split img { height: 230px; }
  .form-row       { grid-template-columns: 1fr; }
  .testi-grid     { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .footer-bottom  { flex-direction: column; text-align: center; }
  .services-grid  { grid-template-columns: 1fr; }
  .features-grid  { grid-template-columns: 1fr; }
  .svc-cards      { grid-template-columns: 1fr; }
  .reasons-grid   { grid-template-columns: 1fr; }
  .stats-grid     { grid-template-columns: 1fr 1fr; }
  .hero           { min-height: 480px; }
  .hero-content   { padding: 60px 0; }
  .skills-images  { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   FAQ Section
   ============================================================ */
.faq-section { background: var(--bg-alt); }

.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: .75rem; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  font-family: var(--font-h);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  text-align: left;
  background: var(--white);
  transition: background var(--t), color var(--t);
}

.faq-question:hover { background: #f0f4f8; }

.faq-question.open { background: var(--primary); color: var(--white); }

.faq-question .faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  transition: transform var(--t);
}

.faq-question.open .faq-icon { transform: rotate(45deg); }

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

.faq-answer.open {
  max-height: 600px;
  padding: 1rem 1.4rem 1.25rem;
}

.faq-answer p { font-size: .95rem; color: var(--text); line-height: 1.8; }
.faq-answer p + p { margin-top: .6rem; }

@media (max-width: 768px) {
  .faq-question { font-size: .9rem; padding: 1rem 1.1rem; }
}

/* ============================================================
   End of FAQ styles
   ============================================================ */

@media (max-width: 480px) {
  .stats-grid  { grid-template-columns: 1fr; }
  .hero-btns   { flex-direction: column; }
  .btn         { width: 100%; justify-content: center; }
  .skills-images { grid-template-columns: 1fr; }
  .skills-images img:nth-child(n+3) { display: none; }
}
