/* Solar Panel Türkiye - Main Stylesheet */
/* Colors: Steel Gray #374B5C | Bright Yellow #FFD23F */
/* Fonts: Chivo / Figtree */

@import url('https://fonts.googleapis.com/css2?family=Chivo:wght@400;700;900&family=Figtree:wght@400;600&display=swap');

:root {
  --primary: #374B5C;
  --primary-dark: #26333d;
  --primary-light: #4e6a80;
  --accent: #FFD23F;
  --accent-dark: #e6b800;
  --accent-light: #ffe066;
  --bg: #f8f9fa;
  --bg-white: #ffffff;
  --bg-dark: #1a2530;
  --text: #2d3748;
  --text-light: #718096;
  --text-muted: #a0aec0;
  --border: #e2e8f0;
  --border-light: #f0f4f8;
  --white: #ffffff;
  --shadow: 0 2px 16px rgba(55,75,92,0.08);
  --shadow-hover: 0 8px 32px rgba(55,75,92,0.16);
  --shadow-yellow: 0 6px 24px rgba(255,210,63,0.35);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: all 0.25s ease;
  --font-heading: 'Chivo', sans-serif;
  --font-body: 'Figtree', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.6; overflow-x: hidden; }

h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p { margin-bottom: 1rem; color: var(--text-light); }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-dark); }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--radius);
  font-family: var(--font-heading); font-weight: 700; font-size: 0.875rem;
  cursor: pointer; border: 2px solid transparent;
  transition: var(--transition); text-decoration: none; white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.btn-accent { background: var(--accent); color: var(--primary); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); color: var(--primary); transform: translateY(-2px); box-shadow: var(--shadow-yellow); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-outline-accent { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline-accent:hover { background: var(--accent); color: var(--primary); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.8rem; }
.btn-xs { padding: 6px 14px; font-size: 0.75rem; }

/* HEADER */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--primary);
  transition: var(--transition);
}
#header.scrolled { box-shadow: 0 4px 16px rgba(55,75,92,0.3); }

.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-svg { width: 48px; height: 48px; }
.logo-text { font-family: var(--font-heading); font-weight: 900; font-size: 1.05rem; color: var(--white); line-height: 1.1; }
.logo-text span { color: var(--accent); display: block; font-size: 0.7rem; font-weight: 700; }

.nav-menu { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 8px 12px; border-radius: var(--radius);
  font-family: var(--font-heading); font-weight: 700; font-size: 0.8rem;
  color: rgba(255,255,255,0.8); transition: var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--accent); background: rgba(255,210,63,0.1); }

.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: var(--primary-dark);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 2px solid var(--accent);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 6px; min-width: 220px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: var(--transition); z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a { display: block; padding: 8px 12px; border-radius: 4px; font-size: 0.8rem; color: rgba(255,255,255,0.75); font-family: var(--font-heading); font-weight: 700; }
.nav-dropdown-menu a:hover { background: rgba(255,210,63,0.1); color: var(--accent); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.nav-phone { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.85); font-family: var(--font-heading); font-weight: 700; font-size: 0.825rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: none; }
.hamburger span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* HERO */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #4e6a80 100%);
  padding-top: 70px; position: relative; overflow: hidden;
}
.hero-bg-dots {
  position: absolute; inset: 0; z-index: 0;
  background-image: radial-gradient(rgba(255,210,63,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-content { position: relative; z-index: 2; max-width: 640px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: var(--primary);
  padding: 6px 16px; border-radius: 4px;
  font-size: 0.75rem; font-weight: 700; font-family: var(--font-heading);
  margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.06em;
}
.hero h1 { color: var(--white); margin-bottom: 16px; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero p { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.12); flex-wrap: wrap; }
.hero-stat { }
.hero-stat-num { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 900; color: var(--accent); display: block; line-height: 1; }
.hero-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 4px; }

/* SECTIONS */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-white); }
.section-dark { background: var(--primary); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-header .badge {
  display: inline-block; background: rgba(55,75,92,0.08); color: var(--primary);
  padding: 4px 14px; border-radius: 4px; font-size: 0.72rem; font-weight: 700;
  font-family: var(--font-heading); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.07em;
}
.section-header .badge.accent { background: rgba(255,210,63,0.15); color: var(--accent-dark); }
.section-header .badge.white { background: rgba(255,255,255,0.1); color: var(--white); }
.section-header h2 { margin-bottom: 12px; }
.section-header h2.white { color: var(--white); }
.section-header p { font-size: 1rem; }
.section-header p.white { color: rgba(255,255,255,0.7); }

/* TRUST BAR */
.trust-bar { background: var(--accent); padding: 14px 0; }
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; color: var(--primary); font-family: var(--font-heading); font-weight: 700; font-size: 0.8rem; white-space: nowrap; }

/* PRODUCT CATALOG */
.catalog-nav {
  display: flex; gap: 8px; margin-bottom: 32px; flex-wrap: wrap;
}
.catalog-tab {
  padding: 10px 24px; border-radius: 4px; border: 2px solid var(--border);
  font-family: var(--font-heading); font-weight: 700; font-size: 0.8rem;
  color: var(--text-light); cursor: pointer; transition: var(--transition); background: var(--bg-white);
}
.catalog-tab.active { border-color: var(--primary); background: var(--primary); color: var(--white); }
.catalog-tab:hover:not(.active) { border-color: var(--primary); color: var(--primary); }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-grid.small { grid-template-columns: repeat(3, 1fr); }

.product-card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: var(--primary); }

.product-thumb {
  height: 180px; background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative;
}
.product-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--accent); color: var(--primary);
  font-family: var(--font-heading); font-weight: 900; font-size: 0.72rem;
  padding: 4px 10px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.05em;
}

.product-body { padding: 20px; }
.product-brand { font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; font-family: var(--font-heading); font-weight: 700; margin-bottom: 6px; }
.product-name { font-family: var(--font-heading); font-weight: 900; font-size: 1.05rem; color: var(--text); margin-bottom: 12px; }

.product-specs { }
.spec-row { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; border-bottom: 1px solid var(--border-light); font-size: 0.8rem; }
.spec-row:last-child { border: none; }
.spec-label { color: var(--text-muted); font-weight: 600; }
.spec-value { color: var(--text); font-weight: 700; font-family: var(--font-heading); }

.product-footer { padding: 16px 20px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.product-price { font-family: var(--font-heading); font-weight: 900; font-size: 1.1rem; color: var(--primary); }
.product-price span { font-size: 0.72rem; font-weight: 600; color: var(--text-muted); }

/* COMPARISON TABLE */
.comparison-section { }
.comparison-table-wrapper { overflow-x: auto; }
.comparison-table {
  width: 100%; border-collapse: collapse; min-width: 700px;
  background: var(--bg-white); border-radius: var(--radius-lg); overflow: hidden;
}
.comparison-table thead tr { background: var(--primary); }
.comparison-table thead th {
  padding: 16px 20px; text-align: left;
  color: var(--white); font-family: var(--font-heading); font-size: 0.825rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.comparison-table thead th:first-child { color: var(--accent); }
.comparison-table tbody tr { border-bottom: 1px solid var(--border); transition: var(--transition); }
.comparison-table tbody tr:last-child { border: none; }
.comparison-table tbody tr:hover { background: rgba(55,75,92,0.03); }
.comparison-table tbody td { padding: 14px 20px; font-size: 0.875rem; color: var(--text); }
.comparison-table tbody td:first-child { font-family: var(--font-heading); font-weight: 700; }
.best-value { background: rgba(255,210,63,0.08); }
.rating-star { color: var(--accent); font-size: 0.7rem; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px 24px; transition: var(--transition);
}
.service-card:hover { border-color: var(--accent); box-shadow: var(--shadow-hover); }
.service-icon { width: 52px; height: 52px; background: var(--bg); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-icon svg { width: 26px; height: 26px; color: var(--primary); }
.service-card h3 { font-size: 1rem; margin-bottom: 8px; }
.service-card p { font-size: 0.85rem; margin-bottom: 16px; }
.card-link { font-family: var(--font-heading); font-weight: 700; font-size: 0.78rem; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; text-transform: uppercase; letter-spacing: 0.04em; }

/* WHY US */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.why-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; transition: var(--transition); }
.why-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.why-icon { width: 60px; height: 60px; background: rgba(255,210,63,0.12); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.why-icon svg { width: 28px; height: 28px; color: var(--primary); }
.why-card h3 { font-size: 0.95rem; margin-bottom: 8px; }
.why-card p { font-size: 0.825rem; }

/* PROCESS */
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.process-step { padding: 28px 16px; text-align: center; position: relative; }
.process-step::after { content: '▶'; position: absolute; right: -6px; top: 36px; color: var(--accent); font-size: 0.7rem; }
.process-step:last-child::after { display: none; }
.process-num {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--accent); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 900;
  box-shadow: var(--shadow-yellow); transition: var(--transition);
}
.process-step:hover .process-num { background: var(--primary); color: var(--accent); }
.process-step h4 { font-size: 0.85rem; margin-bottom: 6px; }
.process-step p { font-size: 0.78rem; }

/* CALCULATOR */
.calculator-section { background: var(--primary); }
.calculator-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.calc-panel { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 36px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; color: rgba(255,255,255,0.75); font-family: var(--font-heading); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: var(--white); font-family: var(--font-body); font-size: 0.9rem; border-radius: var(--radius); transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.form-group select option { background: var(--primary-dark); }
.range-group { margin-bottom: 20px; }
.range-group label { display: flex; justify-content: space-between; color: rgba(255,255,255,0.75); font-family: var(--font-heading); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 7px; }
.range-group label span { color: var(--accent); font-size: 1.05rem; }
.range-slider { width: 100%; -webkit-appearance: none; height: 4px; background: rgba(255,255,255,0.15); cursor: pointer; border-radius: 2px; }
.range-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: var(--accent); cursor: pointer; }
.result-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
.result-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 16px; text-align: center; }
.result-number { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 900; color: var(--accent); display: block; }
.result-label { font-size: 0.7rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.04em; margin-top: 3px; }

/* COUNTERS */
.counters-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.counter-item { text-align: center; padding: 40px 20px; border-right: 1px solid var(--border); }
.counter-item:last-child { border-right: none; }
.counter-number { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 900; color: var(--primary); display: block; margin-bottom: 6px; }
.counter-label { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* TESTIMONIALS */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track { display: flex; gap: 20px; transition: transform 0.5s ease; }
.testimonial-card { flex: 0 0 calc(33.333% - 14px); background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; transition: var(--transition); }
.testimonial-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.testimonial-stars { color: var(--accent); font-size: 1rem; margin-bottom: 12px; }
.testimonial-text { font-size: 0.875rem; font-style: italic; color: var(--text-light); margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 900; color: white; font-size: 0.9rem; flex-shrink: 0; }
.author-name { font-family: var(--font-heading); font-weight: 700; color: var(--text); font-size: 0.85rem; }
.author-location { font-size: 0.75rem; color: var(--text-muted); }

.slider-controls { display: flex; justify-content: center; gap: 10px; margin-top: 28px; }
.slider-btn { width: 40px; height: 40px; border-radius: var(--radius); border: 2px solid var(--primary); background: transparent; color: var(--primary); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); font-size: 1rem; }
.slider-btn:hover { background: var(--primary); color: white; }
.slider-dots { display: flex; align-items: center; gap: 6px; }
.slider-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: var(--transition); border: none; }
.slider-dot.active { background: var(--accent); width: 20px; border-radius: 4px; }

/* PROJECTS */
.projects-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.project-card { border-radius: var(--radius); overflow: hidden; position: relative; aspect-ratio: 4/3; cursor: pointer; }
.project-card.featured { grid-column: span 2; grid-row: span 2; }
.project-thumb { width: 100%; height: 100%; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; transition: transform 0.4s ease; }
.project-card:nth-child(2) .project-thumb { background: linear-gradient(135deg, #26333d, var(--primary)); }
.project-card:nth-child(3) .project-thumb { background: linear-gradient(135deg, var(--accent-dark), var(--accent)); }
.project-card:nth-child(4) .project-thumb { background: linear-gradient(135deg, #2d6a4f, #52b788); }
.project-card:nth-child(5) .project-thumb { background: linear-gradient(135deg, #4a0f14, #E30A17); }
.project-card:nth-child(6) .project-thumb { background: linear-gradient(135deg, #0a1628, #1a2d50); }
.project-card:nth-child(7) .project-thumb { background: linear-gradient(135deg, #3a1a0a, #8b4513); }
.project-thumb-icon { font-size: 2.5rem; opacity: 0.4; }
.project-overlay { position: absolute; inset: 0; background: rgba(55,75,92,0.85); display: flex; align-items: flex-end; padding: 16px; opacity: 0; transition: var(--transition); }
.project-card:hover .project-overlay { opacity: 1; }
.project-card:hover .project-thumb { transform: scale(1.05); }
.project-info h4 { font-size: 0.875rem; color: var(--white); margin-bottom: 2px; }
.project-info span { font-size: 0.72rem; color: var(--accent); font-weight: 700; text-transform: uppercase; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 2px solid var(--border); margin-bottom: 0; transition: var(--transition); }
.faq-item.active { border-bottom-color: var(--accent); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; cursor: pointer; gap: 16px; background: transparent; }
.faq-question h4 { font-size: 0.95rem; font-weight: 700; flex: 1; margin: 0; transition: var(--transition); }
.faq-item.active .faq-question h4 { color: var(--primary); }
.faq-icon { width: 28px; height: 28px; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: var(--transition); }
.faq-item.active .faq-icon { background: var(--accent); border-color: var(--accent); transform: rotate(45deg); }
.faq-icon svg { width: 14px; height: 14px; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer.open { max-height: 500px; }
.faq-answer-inner { padding: 0 0 20px; }
.faq-answer-inner p { margin: 0; font-size: 0.9rem; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info p { margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.contact-icon { width: 42px; height: 42px; background: rgba(55,75,92,0.08); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 20px; height: 20px; color: var(--primary); }
.contact-item h4 { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-item a, .contact-item p { color: var(--text); font-weight: 600; font-size: 0.9rem; margin: 0; }
.map-embed-wrapper { overflow: hidden; height: 220px; margin-top: 20px; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.map-embed-wrapper iframe { width: 100%; height: 100%; border: none; }

.contact-form-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.contact-form-card h3 { margin-bottom: 24px; }
.form-field { margin-bottom: 14px; }
.form-field label { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 0.78rem; color: var(--text); margin-bottom: 5px; text-transform: uppercase; letter-spacing: 0.04em; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 10px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.9rem; color: var(--text); background: var(--bg); transition: var(--transition); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(55,75,92,0.08); }
.form-field textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.checkbox-field { display: flex; align-items: flex-start; gap: 8px; margin-bottom: 16px; }
.checkbox-field input[type="checkbox"] { width: 16px; height: 16px; margin-top: 2px; cursor: pointer; flex-shrink: 0; accent-color: var(--primary); }
.checkbox-field label { font-size: 0.8rem; color: var(--text-light); cursor: pointer; line-height: 1.4; }
.checkbox-field a { color: var(--primary); font-weight: 600; }
.form-message { padding: 10px 14px; font-weight: 600; font-size: 0.85rem; margin-top: 10px; display: none; border-radius: var(--radius); }
.form-message.success { background: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.form-message.error { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
.form-message.show { display: block; }

/* FOOTER */
#footer { background: var(--bg-dark); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.footer-logo-text { font-family: var(--font-heading); font-weight: 900; color: var(--white); font-size: 1rem; }
.footer-logo-text span { color: var(--accent); }
.footer-desc { color: rgba(255,255,255,0.45); font-size: 0.825rem; line-height: 1.6; margin-bottom: 18px; }
.social-links { display: flex; gap: 8px; }
.social-link { width: 34px; height: 34px; border-radius: var(--radius); background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: var(--transition); }
.social-link:hover { background: var(--accent); border-color: var(--accent); color: var(--primary); }
.footer-col h5 { font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700; color: var(--white); margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-links li { margin-bottom: 7px; }
.footer-links a { color: rgba(255,255,255,0.45); font-size: 0.8rem; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.78rem; margin: 0; }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { color: rgba(255,255,255,0.3); font-size: 0.78rem; }
.footer-bottom-links a:hover { color: var(--white); }

/* STICKY */
.sticky-quote { position: fixed; bottom: 28px; right: 28px; z-index: 999; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.sticky-quote-btn { display: flex; align-items: center; gap: 8px; padding: 12px 20px; background: var(--accent); color: var(--primary); font-family: var(--font-heading); font-weight: 900; font-size: 0.825rem; border: none; cursor: pointer; border-radius: var(--radius); box-shadow: var(--shadow-yellow); transition: var(--transition); text-decoration: none; }
.sticky-quote-btn:hover { background: var(--accent-dark); transform: translateY(-2px); color: var(--primary); }
.sticky-whatsapp { display: flex; align-items: center; justify-content: center; width: 46px; height: 46px; background: #25d366; color: white; text-decoration: none; border-radius: 50%; box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: var(--transition); }
.sticky-whatsapp:hover { transform: translateY(-2px) scale(1.05); color: white; }

/* POPUP */
.popup-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.65); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: var(--transition); }
.popup-overlay.active { opacity: 1; visibility: visible; }
.popup-modal { background: var(--bg-white); border-radius: var(--radius-lg); max-width: 540px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; transform: scale(0.9) translateY(20px); transition: var(--transition); box-shadow: 0 24px 64px rgba(0,0,0,0.25); border-top: 4px solid var(--accent); }
.popup-overlay.active .popup-modal { transform: scale(1) translateY(0); }
.popup-header { background: var(--primary); padding: 24px 28px; position: relative; }
.popup-header h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 4px; }
.popup-header p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin: 0; }
.popup-close { position: absolute; top: 14px; right: 16px; width: 30px; height: 30px; background: rgba(255,255,255,0.12); border: none; color: white; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem; border-radius: var(--radius); transition: var(--transition); }
.popup-close:hover { background: rgba(255,255,255,0.22); }
.popup-body { padding: 28px; }
.popup-wa-alt { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); text-align: center; }
.popup-wa-alt p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 8px; }
.popup-wa-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; background: #25d366; color: white; font-family: var(--font-heading); font-weight: 700; font-size: 0.8rem; text-decoration: none; border-radius: var(--radius); }
.popup-wa-btn:hover { background: #1ebe5d; color: white; }

/* BREADCRUMB */
.breadcrumb-bar { background: var(--bg-white); padding: 10px 0; border-bottom: 1px solid var(--border); margin-top: 70px; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; flex-wrap: wrap; }
.breadcrumb a { color: var(--primary); font-weight: 600; }
.breadcrumb .sep { color: var(--text-muted); }
.breadcrumb .current { color: var(--text-muted); }

/* PAGE HERO */
.page-hero { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 72px 0; text-align: center; margin-top: 70px; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; font-size: 1rem; }

/* SERVICE DETAIL */
.service-detail .content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; align-items: start; }
.service-detail .sidebar { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; position: sticky; top: 84px; }
.service-detail .sidebar h4 { margin-bottom: 14px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; }
.service-nav li { border-bottom: 1px solid var(--border); }
.service-nav a { display: block; padding: 9px 0; font-size: 0.8rem; color: var(--text-light); font-weight: 600; transition: var(--transition); }
.service-nav a.active, .service-nav a:hover { color: var(--primary); }
.specs-table { width: 100%; border-collapse: collapse; margin: 16px 0; border-radius: var(--radius); overflow: hidden; }
.specs-table th { background: var(--primary); color: white; padding: 10px 14px; text-align: left; font-size: 0.78rem; font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.04em; }
.specs-table td { padding: 9px 14px; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.specs-table tr:nth-child(even) td { background: var(--bg); }
.advantages-list { list-style: none; margin: 14px 0; }
.advantages-list li { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--text-light); }
.advantages-list li::before { content: ''; width: 6px; height: 6px; background: var(--accent); flex-shrink: 0; margin-top: 6px; border-radius: 1px; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.blog-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.blog-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: var(--primary); }
.blog-thumb { height: 180px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.blog-card:nth-child(2) .blog-thumb { background: linear-gradient(135deg, var(--accent-dark), var(--accent)); }
.blog-card:nth-child(3) .blog-thumb { background: linear-gradient(135deg, #2d6a4f, #52b788); }
.blog-content { padding: 20px; }
.blog-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.blog-tag { background: rgba(55,75,92,0.08); color: var(--primary); padding: 3px 9px; font-size: 0.7rem; font-weight: 700; font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.05em; border-radius: 3px; }
.blog-date { font-size: 0.75rem; color: var(--text-muted); }
.blog-card h3 { font-size: 1rem; margin-bottom: 8px; }
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card p { font-size: 0.85rem; margin-bottom: 12px; }
.blog-read-more { font-family: var(--font-heading); font-weight: 700; font-size: 0.78rem; color: var(--primary); text-transform: uppercase; letter-spacing: 0.04em; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.team-card { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px 16px; text-align: center; transition: var(--transition); }
.team-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.team-avatar { width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 14px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 900; font-size: 1.3rem; color: white; }
.team-card h4 { font-size: 0.9rem; margin-bottom: 3px; }
.team-card .role { font-size: 0.75rem; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }

/* LOGO ANIMATION */
@keyframes panelGlow {
  0%, 100% { filter: drop-shadow(0 0 3px rgba(255,210,63,0.5)); }
  50% { filter: drop-shadow(0 0 10px rgba(255,210,63,0.9)); }
}
.logo-panel-glow { animation: panelGlow 2.5s ease-in-out infinite; }

/* CATALOG DOWNLOAD CTA */
.catalog-cta { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: var(--radius-lg); padding: 48px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.catalog-cta h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 8px; }
.catalog-cta p { color: rgba(255,255,255,0.7); margin: 0; font-size: 0.9rem; }

/* UTILITIES */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .project-card.featured { grid-column: span 2; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-menu, .header-cta .btn { display: none; }
  .hamburger { display: flex; }
  .calculator-wrapper { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-detail .content-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step::after { display: none; }
  .comparison-table-wrapper { overflow-x: auto; }
  .catalog-cta { flex-direction: column; text-align: center; }

  .mobile-menu { position: fixed; top: 70px; left: 0; right: 0; background: var(--primary); border-bottom: 2px solid var(--accent); padding: 16px; transform: translateY(-100%); opacity: 0; visibility: hidden; transition: var(--transition); z-index: 999; max-height: calc(100vh - 70px); overflow-y: auto; }
  .mobile-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .mobile-menu .nav-link { display: block; padding: 11px 0; font-size: 0.9rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .product-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-card.featured { grid-column: span 1; }
  .testimonial-card { flex: 0 0 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-quote { bottom: 14px; right: 14px; }
  .form-row { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 20px; }
}


/* ============================================================
   RESPONSIVE & NAV FIX PACK  (appended 2026-05-30, rev2)
   Fixes: mobile horizontal scroll/zoom, dropdown menus not
   opening, header menu overflow, service section misalignment.
   This block is intentionally last so it overrides earlier rules.
   ============================================================ */

/* --- Global horizontal-overflow guard (no more sideways drag on mobile) --- */
html { overflow-x: hidden; }
body { overflow-x: hidden; max-width: 100%; }
img, svg, video, iframe { max-width: 100%; }
*, *::before, *::after { box-sizing: border-box; }

/* --- Responsive tables: wide service/spec tables scroll inside instead of
       breaking the whole page width on phones --- */
.service-body table,
.extended-content table,
.extended-supplement table,
.post-body table,
.privacy-content table,
.service-content table {
  display: block;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* --- Align BOTH appended sections to the SAME width/padding as the page body
       (were 1280px / 2rem vs body 1200px / 24px -> caused the "shift") --- */
.extended-content,
.extended-supplement {
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  box-sizing: border-box;
}

/* --- Desktop dropdown: guaranteed on EVERY site (some were missing it) --- */
.nav-dropdown { position: relative; }
.nav-dropdown > .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: rgba(15,15,26,0.97);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .2s ease, transform .2s ease;
  z-index: 1001;
}
.nav-dropdown:hover > .dropdown-menu,
.nav-dropdown.open > .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* --- Raise the mobile breakpoint to 992px so the full horizontal menu only
       shows when it actually fits; otherwise use the hamburger --- */
@media (max-width: 992px) {
  .nav-menu { display: none; }
  .nav-menu.open {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    gap: 2px;
    background: rgba(15,15,26,0.98);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 14px 20px 22px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    max-height: calc(100vh - 56px);
    overflow-y: auto;
  }
  .hamburger { display: flex !important; }
  .nav-cta { display: none; }

  /* Mobile dropdown turns into an inline collapsible list */
  .nav-dropdown > .dropdown-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
    min-width: 0;
    width: 100%;
    margin: 2px 0 6px 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: none;
  }
  .nav-dropdown.open > .dropdown-menu { display: block; }
  .nav-menu a { padding: 12px 14px; font-size: 1rem; }
}

/* --- Small phones: tighten paddings, prevent edge clipping --- */
@media (max-width: 600px) {
  .container, .container-wide { padding-left: 16px; padding-right: 16px; }
  .extended-content,
  .extended-supplement { padding-left: 16px !important; padding-right: 16px !important; }
  .section { padding: 56px 0; }
  .hero { padding: 110px 0 60px; }
  .popup-box { padding: 32px 20px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
}

/* --- Animate hamburger into an X when open --- */
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Professional SVG icons (replaced the old emoji). Default scales with the
       container font-size so it matches whatever the emoji used to be. --- */
.svg-icon { width: 1em; height: 1em; display: inline-block; vertical-align: -0.14em; flex-shrink: 0; }
/* fixed-size flex icon boxes: fill ~55% of the box regardless of per-site px size */
.contact-detail-icon .svg-icon,
.advantage-icon .svg-icon,
.trust-badge-icon .svg-icon,
.pricing-icon .svg-icon,
.investment-icon .svg-icon,
.feature-icon .svg-icon,
.benefit-icon .svg-icon,
.value-icon .svg-icon,
.step-icon .svg-icon,
.process-icon .svg-icon,
.why-icon .svg-icon,
.card-icon .svg-icon { width: 55%; height: 55%; }
/* inline label icons a touch larger than text */
.icon .svg-icon,
.nav-cta .svg-icon,
.btn .svg-icon { width: 1.2em; height: 1.2em; }
/* decorative blog thumbnails: centered, subtle */
.blog-thumb .svg-icon,
.blog-icon-overlay .svg-icon { width: 38%; height: 38%; opacity: .55; }
.icon-badge .svg-icon { width: 32px; height: 32px; }

/* ============================================================
   HEADER FIX (2026-05-30): the separate .mobile-menu element had
   its hide/position rules only inside @media(max-width:900px), so
   on desktop (and 900-992px) it rendered as a static block under
   the header (the "kayık ikinci nav satırı"). Hide it everywhere
   by default and reveal it only under the navfix 992px breakpoint.
   This block is last so it overrides the earlier media query.
   ============================================================ */
.mobile-menu { display: none; }
@media (max-width: 992px) {
  .mobile-menu {
    display: block;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--primary);
    border-bottom: 2px solid var(--accent);
    padding: 16px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition, all .3s ease);
    z-index: 999;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .mobile-menu.open { transform: translateY(0); opacity: 1; visibility: visible; }
}
