/* ============================================================
   Alanya Güneş Enerjisi - style.css
   Tasarım: Akdeniz Mavisi #0A6EBD + Güneş Sarısı #FFC107
   Font: Poppins / Inter
   ============================================================ */

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

/* ── CSS Custom Properties ── */
:root {
  --primary: #0A6EBD;
  --primary-dark: #084f8a;
  --primary-light: #2d8fd4;
  --accent: #FFC107;
  --accent-dark: #e5ac00;
  --accent-light: #FFD54F;
  --dark: #0d1f35;
  --dark-2: #1a3050;
  --gray-900: #1a1a2e;
  --gray-800: #2d3748;
  --gray-700: #4a5568;
  --gray-600: #718096;
  --gray-400: #a0aec0;
  --gray-200: #e2e8f0;
  --gray-100: #f7fafc;
  --white: #ffffff;
  --success: #38a169;
  --font-primary: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 16px rgba(10,110,189,0.15);
  --shadow-lg: 0 8px 32px rgba(10,110,189,0.2);
  --shadow-xl: 0 20px 60px rgba(10,110,189,0.25);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease;
  --container: 1280px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  line-height: 1.2;
  font-weight: 700;
  color: var(--dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { margin-bottom: 1rem; }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }
@media (min-width: 1280px) { .container { padding: 0 2.5rem; } }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
  box-shadow: 0 4px 15px rgba(255,193,7,0.4);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,193,7,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-secondary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-secondary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-lg { padding: 1.1rem 2.25rem; font-size: 1.05rem; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }

/* ── Section Headers ── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  background: rgba(10,110,189,0.1);
  color: var(--primary);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p {
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* ============================================================
   HEADER & NAV
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 1.25rem 0;
}
.header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(10,110,189,0.12);
  padding: 0.75rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.logo-svg {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.header.scrolled .logo-name { color: var(--primary); }
.logo-tagline {
  font-size: 0.65rem;
  color: var(--accent-dark);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav { display: none; }
@media (min-width: 1024px) {
  .nav { display: flex; align-items: center; gap: 0.25rem; }
}
.nav-link {
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font-primary);
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
}
.header.scrolled .nav-link { color: var(--gray-700); }
.nav-link:hover { color: var(--accent); }
.header.scrolled .nav-link:hover { color: var(--primary); }
.nav-link.active { color: var(--accent); font-weight: 600; }
.header.scrolled .nav-link.active { color: var(--primary); }

/* Dropdown */
.nav-item { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  min-width: 220px;
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--gray-700);
  transition: var(--transition-fast);
  font-weight: 500;
}
.dropdown a:hover { background: rgba(10,110,189,0.08); color: var(--primary); }

.header-cta {
  display: none;
  gap: 0.75rem;
}
@media (min-width: 1024px) { .header-cta { display: flex; align-items: center; } }

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}
.header.scrolled .header-phone { color: var(--gray-700); }
.header-phone:hover { color: var(--accent); }
.header.scrolled .header-phone:hover { color: var(--primary); }

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 8px;
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.header.scrolled .hamburger span { background: var(--dark); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 100vw);
  height: 100vh;
  background: var(--white);
  z-index: 1100;
  box-shadow: -4px 0 30px rgba(0,0,0,0.15);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  flex-direction: column;
}
.mobile-nav.open { transform: translateX(0); display: flex; }
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}
.mobile-nav-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--gray-100);
  font-size: 1.25rem;
  color: var(--gray-700);
  transition: var(--transition-fast);
}
.mobile-nav-close:hover { background: var(--gray-200); }
.mobile-nav-links { padding: 1rem; flex: 1; }
.mobile-nav-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition-fast);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-nav-links a:hover { background: rgba(10,110,189,0.06); color: var(--primary); }
.mobile-nav-links .submenu-toggle {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.75rem 1rem 0.4rem;
  display: block;
  border-bottom: none;
}
.mobile-nav-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-100);
}
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
  backdrop-filter: blur(2px);
}
.mobile-nav-overlay.show { display: block; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 40%, var(--primary-dark) 70%, var(--primary) 100%);
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,193,7,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(10,110,189,0.2) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-waves {
  position: absolute;
  bottom: 0; left: 0; right: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 0 5rem;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,193,7,0.15);
  border: 1px solid rgba(255,193,7,0.4);
  color: var(--accent-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-primary);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.1;
}
.hero h1 span { color: var(--accent); }
.hero-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2.25rem;
  max-width: 540px;
  line-height: 1.7;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.hero-stat { text-align: center; }
.hero-stat-number {
  display: block;
  font-family: var(--font-primary);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero-stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.3rem;
}

/* Hero Visual */
.hero-visual {
  display: none;
}
@media (min-width: 1024px) { .hero-visual { display: flex; justify-content: center; align-items: center; } }
.hero-sun-wrapper {
  position: relative;
  width: 380px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-sun-orbit {
  position: absolute;
  inset: 0;
  border: 2px dashed rgba(255,193,7,0.2);
  border-radius: 50%;
  animation: orbit-rotate 20s linear infinite;
}
.hero-sun-orbit-2 {
  inset: 30px;
  border-color: rgba(255,255,255,0.1);
  animation-direction: reverse;
  animation-duration: 15s;
}
@keyframes orbit-rotate { to { transform: rotate(360deg); } }
.hero-sun-dot {
  position: absolute;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--accent);
}

/* ============================================================
   TRUST BADGES STRIP
   ============================================================ */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.25rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gray-700);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-primary);
  white-space: nowrap;
}
.trust-badge-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services {
  padding: 6rem 0;
  background: var(--gray-100);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 480px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10,110,189,0.2);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, rgba(10,110,189,0.1), rgba(255,193,7,0.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  transform: scale(1.1);
}
.service-icon svg { width: 32px; height: 32px; transition: var(--transition); }
.service-card:hover .service-icon svg { filter: brightness(10); }
.service-card h3 { margin-bottom: 0.75rem; font-size: 1.1rem; color: var(--dark); }
.service-card p { color: var(--gray-600); font-size: 0.9rem; margin: 0 0 1.25rem; line-height: 1.6; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  font-family: var(--font-primary);
  transition: var(--transition-fast);
}
.service-link:hover { gap: 0.7rem; color: var(--primary-dark); }

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-us {
  padding: 6rem 0;
  background: var(--white);
}
.why-us-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .why-us-inner { grid-template-columns: 1fr 1fr; } }
.why-us-visual {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-us-visual::before {
  content: '';
  position: absolute;
  top: -50%; right: -50%;
  width: 100%; height: 100%;
  background: radial-gradient(circle, rgba(255,193,7,0.15) 0%, transparent 70%);
}
.why-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.why-stat {
  text-align: center;
  padding: 1.25rem 1rem;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
}
.why-stat-num {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.why-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.35rem;
  display: block;
}
.advantages-list { display: flex; flex-direction: column; gap: 1.25rem; }
.advantage-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.advantage-icon {
  width: 50px; height: 50px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(10,110,189,0.1), rgba(255,193,7,0.1));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.advantage-text h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--dark);
}
.advantage-text p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process {
  padding: 6rem 0;
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}
.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 2px;
}
@media (min-width: 768px) {
  .process-timeline::before { left: 50%; transform: translateX(-50%); }
}
.process-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}
@media (min-width: 768px) {
  .process-step:nth-child(even) { flex-direction: row-reverse; }
  .process-step:nth-child(even) .process-step-content { text-align: right; }
}
.process-step-num {
  width: 56px; height: 56px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
  box-shadow: 0 0 0 6px rgba(10,110,189,0.15);
  position: relative;
  z-index: 1;
}
.process-step-content {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
@media (min-width: 768px) {
  .process-step-content { max-width: calc(50% - 3rem); }
}
.process-step-content h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--primary); }
.process-step-content p { font-size: 0.875rem; color: var(--gray-600); margin: 0; }

/* ============================================================
   SOLAR CALCULATOR
   ============================================================ */
.calculator {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--primary-dark) 100%);
  position: relative;
  overflow: hidden;
}
.calculator::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.calculator .section-header h2 { color: var(--white); }
.calculator .section-header p { color: rgba(255,255,255,0.7); }
.calculator .section-tag { background: rgba(255,193,7,0.15); color: var(--accent-light); }
.calc-wrapper {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(10px);
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}
.calc-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 768px) { .calc-inner { grid-template-columns: 1fr 1fr; } }
.calc-input-side {
  padding: 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.calc-result-side {
  padding: 2.5rem;
  background: rgba(255,193,7,0.05);
}
.calc-field { margin-bottom: 1.5rem; }
.calc-field label {
  display: block;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-primary);
  margin-bottom: 0.5rem;
}
.calc-field input, .calc-field select {
  width: 100%;
  padding: 0.875rem 1.1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition-fast);
}
.calc-field input::placeholder { color: rgba(255,255,255,0.4); }
.calc-field input:focus, .calc-field select:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255,255,255,0.12);
}
.calc-field select option { background: var(--dark-2); color: var(--white); }
.calc-result-title {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.calc-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.calc-result-item {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.calc-result-value {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.calc-result-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
  margin-top: 0.35rem;
  display: block;
}
.calc-placeholder {
  text-align: center;
  padding: 3rem 1rem;
  color: rgba(255,255,255,0.4);
}
.calc-placeholder svg { width: 60px; height: 60px; margin: 0 auto 1rem; opacity: 0.3; }
.calc-placeholder p { font-size: 0.9rem; }

/* ============================================================
   COUNTER SECTION
   ============================================================ */
.counters {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.counters-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 768px) { .counters-grid { grid-template-columns: repeat(4, 1fr); } }
.counter-item { text-align: center; }
.counter-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}
.counter-number {
  font-family: var(--font-primary);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.counter-label {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: block;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 6rem 0;
  background: var(--gray-100);
  overflow: hidden;
}
.testimonials-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .testimonial-slide { min-width: 50%; }
}
@media (min-width: 1024px) {
  .testimonial-slide { min-width: 33.333%; }
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  height: 100%;
  position: relative;
}
.testimonial-quote {
  font-size: 3rem;
  color: var(--accent);
  line-height: 0.6;
  font-family: Georgia, serif;
  margin-bottom: 1rem;
  display: block;
}
.testimonial-text {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 700;
  font-family: var(--font-primary);
  font-size: 0.9rem;
  color: var(--dark);
}
.testimonial-location {
  font-size: 0.8rem;
  color: var(--gray-500);
}
.testimonial-stars { color: var(--accent); font-size: 0.9rem; margin-top: 0.2rem; }
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.slider-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  transition: var(--transition-fast);
  cursor: pointer;
}
.slider-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }
.slider-dots { display: flex; gap: 0.5rem; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gray-300);
  transition: var(--transition-fast);
  cursor: pointer;
}
.slider-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ============================================================
   PROJECTS SECTION
   ============================================================ */
.projects {
  padding: 6rem 0;
  background: var(--white);
}
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 480px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .projects-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .projects-grid { grid-template-columns: repeat(4, 1fr); } }
.project-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  background: var(--white);
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.project-image {
  height: 180px;
  position: relative;
  overflow: hidden;
}
.project-gradient-1 { background: linear-gradient(135deg, #0A6EBD 0%, #FFC107 100%); }
.project-gradient-2 { background: linear-gradient(135deg, #0d1f35 0%, #0A6EBD 100%); }
.project-gradient-3 { background: linear-gradient(135deg, #FFC107 0%, #ff8f00 100%); }
.project-gradient-4 { background: linear-gradient(135deg, #1a3050 0%, #2d8fd4 100%); }
.project-icon-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  opacity: 0.6;
}
.project-badge {
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-primary);
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
}
.project-info { padding: 1.25rem; }
.project-info h3 { font-size: 0.95rem; margin-bottom: 0.35rem; color: var(--dark); }
.project-meta { font-size: 0.8rem; color: var(--gray-500); }
.project-meta span { margin-right: 0.75rem; }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq {
  padding: 6rem 0;
  background: var(--gray-100);
}
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active { box-shadow: var(--shadow-md); border-color: rgba(10,110,189,0.3); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition-fast);
  background: none;
  border: none;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  width: 28px; height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(10,110,189,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 400;
  transition: var(--transition);
}
.faq-item.active .faq-icon { background: var(--primary); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 400px; }

/* ============================================================
   CONTACT / MAP SECTION
   ============================================================ */
.contact-cta {
  padding: 6rem 0;
  background: var(--white);
}
.contact-cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) { .contact-cta-inner { grid-template-columns: 1fr 1fr; } }
.contact-info-side h2 { margin-bottom: 1rem; }
.contact-info-side p { color: var(--gray-600); margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-detail-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, rgba(10,110,189,0.1), rgba(255,193,7,0.1));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-detail-text a { color: var(--gray-700); transition: var(--transition-fast); }
.contact-detail-text a:hover { color: var(--primary); }
.contact-detail-text strong { display: block; font-size: 0.8rem; color: var(--gray-500); margin-bottom: 0.15rem; font-family: var(--font-primary); }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
  border: 1px solid var(--gray-200);
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand .logo-name { font-size: 1.2rem; color: var(--white); }
.footer-brand .logo-tagline { color: var(--accent); }
.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin: 1rem 0 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.social-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}
.social-icon:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.social-icon.yt:hover { background: #ff0000; }
.social-icon.ig:hover { background: linear-gradient(135deg, #e1306c, #833ab4); }
.social-icon.fb:hover { background: #1877f2; }
.social-icon.li:hover { background: #0077b5; }
.social-icon.wa:hover { background: #25d366; }

.footer-heading {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-links a:hover { color: var(--accent); padding-left: 0.25rem; }
.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item .icon { color: var(--accent); flex-shrink: 0; margin-top: 0.15rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-legal {
  display: flex;
  gap: 1.25rem;
}
.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition-fast);
}
.footer-legal a:hover { color: var(--accent); }

/* ============================================================
   STICKY BUTTON
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}
.sticky-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.875rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  white-space: nowrap;
  text-decoration: none;
  border: none;
}
.sticky-teklif {
  background: var(--accent);
  color: var(--dark);
  animation: sticky-pulse 2.5s ease-in-out infinite;
}
.sticky-teklif:hover { transform: scale(1.05); box-shadow: 0 6px 25px rgba(255,193,7,0.5); }
.sticky-wp {
  background: #25d366;
  color: var(--white);
  padding: 0.875rem;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
@keyframes sticky-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255,193,7,0.3); }
  50% { box-shadow: 0 4px 30px rgba(255,193,7,0.6); }
}

/* ============================================================
   POPUP MODAL
   ============================================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
.popup-overlay.show { display: flex; }
.popup-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 80px rgba(0,0,0,0.35);
  animation: popup-in 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes popup-in {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.popup-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 2rem;
  color: var(--white);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  position: relative;
}
.popup-header h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.popup-header p { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 0; }
.popup-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
}
.popup-close:hover { background: rgba(255,255,255,0.35); }
.popup-body { padding: 2rem; }
.popup-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 480px) {
  .popup-form-grid { grid-template-columns: 1fr 1fr; }
  .popup-form-grid .full { grid-column: span 2; }
}
.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.4rem;
  font-family: var(--font-primary);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--gray-800);
  transition: var(--transition-fast);
  background: var(--white);
}
.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(10,110,189,0.1);
}
.form-field textarea { resize: vertical; min-height: 80px; }
.kvkk-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}
.kvkk-check input[type="checkbox"] { margin-top: 0.25rem; accent-color: var(--primary); }
.kvkk-check label {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.kvkk-check a { color: var(--primary); }
.popup-actions { display: flex; flex-direction: column; gap: 0.75rem; }
.popup-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.popup-success .success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  display: block;
}
.popup-success h3 { margin-bottom: 0.5rem; color: var(--success); }
.popup-success p { color: var(--gray-600); font-size: 0.9rem; }
.popup-honeypot { display: none !important; }

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark), var(--primary-dark));
  padding: 8rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { color: var(--white); position: relative; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 1rem auto 0; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: var(--accent); transition: var(--transition-fast); }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ============================================================
   BLOG CARDS
   ============================================================ */
.blog { padding: 6rem 0; background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  background: var(--white);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.blog-gradient-1 { background: linear-gradient(135deg, #0A6EBD 0%, #FFC107 100%); }
.blog-gradient-2 { background: linear-gradient(135deg, #0d1f35 0%, #0A6EBD 60%); }
.blog-gradient-3 { background: linear-gradient(135deg, #1a3050 0%, #FFC107 100%); }
.blog-icon-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  opacity: 0.5;
}
.blog-category {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  font-family: var(--font-primary);
}
.blog-card-body { padding: 1.5rem; }
.blog-meta {
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 0.75rem;
  display: flex;
  gap: 1rem;
}
.blog-card-body h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  color: var(--dark);
  line-height: 1.4;
}
.blog-card-body p { font-size: 0.875rem; color: var(--gray-600); margin-bottom: 1.25rem; }
.blog-read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition-fast);
}
.blog-read-more:hover { gap: 0.7rem; }

/* ============================================================
   INNER PAGE CONTENT
   ============================================================ */
.content-section { padding: 5rem 0; }
.content-section.bg-gray { background: var(--gray-100); }
.prose h2 { margin-bottom: 1rem; color: var(--primary); }
.prose h3 { margin-bottom: 0.75rem; }
.prose p { color: var(--gray-700); line-height: 1.8; margin-bottom: 1.25rem; }
.prose ul { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose ul li { color: var(--gray-700); margin-bottom: 0.5rem; line-height: 1.7; list-style: disc; }
.prose ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose ol li { color: var(--gray-700); margin-bottom: 0.5rem; line-height: 1.7; }
.steps-list { counter-reset: step; display: flex; flex-direction: column; gap: 1.5rem; margin: 2rem 0; }
.step-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.step-num {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.step-item h4 { margin-bottom: 0.4rem; color: var(--dark); }
.step-item p { margin: 0; color: var(--gray-600); font-size: 0.9rem; }

.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 5rem 0;
  text-align: center;
  color: var(--white);
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 2rem; }
.cta-section .btn-primary { box-shadow: 0 4px 20px rgba(255,193,7,0.4); }

/* ============================================================
   LOGO SVG ANIMATION
   ============================================================ */
@keyframes sun-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.logo-sun-rays {
  transform-origin: center;
  animation: sun-rotate 8s linear infinite;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.animate-fade-up { animation: fade-up 0.6s ease forwards; }
.animate-fade-in { animation: fade-in 0.6s ease forwards; }
[data-animate] { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate].visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   FORM SUCCESS / ERROR
   ============================================================ */
.form-msg {
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  margin-top: 0.75rem;
  display: none;
}
.form-msg.success { background: rgba(56,161,105,0.1); color: var(--success); border: 1px solid rgba(56,161,105,0.3); display: block; }
.form-msg.error { background: rgba(229,62,62,0.1); color: #e53e3e; border: 1px solid rgba(229,62,62,0.3); display: block; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.py-sm { padding: 3rem 0; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 5.5rem;
  right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 800;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: none;
}
.scroll-top.show { display: flex; }
.scroll-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 3rem;
  color: var(--white);
  text-align: center;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.about-visual svg { width: 100px; height: 100px; margin-bottom: 1.5rem; opacity: 0.9; }
.about-visual h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 0.5rem; }
.about-visual p { color: rgba(255,255,255,0.75); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.4rem;
  font-family: var(--font-primary);
  margin: 0 auto 1rem;
}
.team-name { font-weight: 700; font-family: var(--font-primary); margin-bottom: 0.25rem; font-size: 0.95rem; }
.team-role { font-size: 0.8rem; color: var(--gray-500); }

/* ============================================================
   PRIVACY / LEGAL
   ============================================================ */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.4rem; margin: 2rem 0 0.75rem; color: var(--primary); }
.legal-content p { color: var(--gray-700); line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { color: var(--gray-700); margin-bottom: 0.5rem; list-style: disc; line-height: 1.7; }

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--dark), var(--primary-dark));
  padding: 2rem;
}
.error-code {
  font-family: var(--font-primary);
  font-size: clamp(6rem, 20vw, 12rem);
  font-weight: 900;
  color: rgba(255,193,7,0.2);
  line-height: 1;
  display: block;
}
.error-page h1 { color: var(--white); font-size: 2rem; margin-bottom: 1rem; }
.error-page p { color: rgba(255,255,255,0.7); margin-bottom: 2rem; max-width: 400px; margin-left: auto; margin-right: auto; }


/* ============================================================
   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; }
