/* ==========================================================================
   Teknik Servis - Main Stylesheet (Fully Responsive & Production Ready)
   ========================================================================== */

:root {
  --font-main: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Outfit', var(--font-main);
  --font-handwritten: 'Caveat', 'Kalam', cursive;
  --color-green: #22c55e;
  --color-green-dark: #16a34a;
  --color-green-darker: #15803d;
  --color-green-text: #16a34a;
  --color-blue-hand: #0284c7;
  --color-blue-primary: #0052cc;
  --color-blue-dark: #073b8c;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;
  --header-height: 104px;
  --container-max-width: 1340px;
}

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

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

body {
  font-family: var(--font-main);
  background-color: #f1f5f9;
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button, input, textarea {
  font-family: inherit;
}

/* ==========================================================================
   Centered Main Container
   ========================================================================== */
.site-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px 60px 24px;
  background-color: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

/* ==========================================================================
   Top Photo Banner
   ========================================================================== */
.top-banner-wrapper {
  width: 100%;
  padding-top: 12px;
}

.top-photo-banner {
  width: 100%;
  height: 115px;
  background-image: url('https://images.pexels.com/photos/4489749/pexels-photo-4489749.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center 30%;
  position: relative;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}

/* ==========================================================================
   Main Header Navigation
   ========================================================================== */
.site-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  z-index: 1000;
}

.header-inner {
  width: 100%;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand & Logo */
.brand-container {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  height: 84px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  display: block;
  transition: transform 0.2s ease;
}

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

.brand-slogan {
  font-size: 1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--color-green-text);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* Nav Menu & Action */
.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.nav-item {
  font-size: 0.95rem;
  font-weight: 500;
  color: #334155;
  transition: color 0.2s ease;
  position: relative;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-item:hover,
.nav-item.active {
  color: var(--color-green-dark);
}

.nav-item .drop-icon {
  font-size: 0.75rem;
  transition: transform 0.2s ease;
}

.nav-item-dropdown:hover .drop-icon {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-item-dropdown {
  position: relative;
}

.dropdown-list {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 260px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1050;
}

.nav-item-dropdown:hover .dropdown-list {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  font-size: 0.885rem;
  font-weight: 500;
  color: #475569;
  border-radius: 6px;
  transition: background 0.15s ease, color 0.15s ease;
}

.dropdown-list a i {
  color: var(--color-green-dark);
  font-size: 0.9rem;
  width: 18px;
}

.dropdown-list a:hover {
  background-color: #f0fdf4;
  color: var(--color-green-dark);
}

/* Green CTA Button (İLETİŞİM) */
.btn-cta-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  font-size: 0.885rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.25);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-cta-green:hover {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
  transform: translateY(-1px);
}

/* Mobile Toggle */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1100;
}

.mobile-menu-btn span {
  width: 100%;
  height: 2.5px;
  background-color: #1e293b;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

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

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  background: #ffffff;
  border-top: 1px solid var(--color-border);
  padding: 18px 20px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.mobile-drawer.open {
  display: block;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
}

.mobile-nav-item {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: #334155;
  padding: 8px 0;
}

.mobile-nav-item.active {
  color: var(--color-green-dark);
  font-weight: 700;
}

.mobile-drop-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-sub-links {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 8px 0 8px 14px;
}

.mobile-dropdown-parent.open .mobile-sub-links {
  display: flex;
}

.mobile-sub-links a {
  font-size: 0.9rem;
  color: #64748b;
  padding: 4px 0;
}

.mobile-btn-cta {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   Hero Section: Pure Image 3-Slide Carousel
   ========================================================================== */
.hero-slider-section {
  width: 100%;
  margin-top: 16px;
  position: relative;
}

.hero-slider {
  width: 100%;
  height: 440px;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background-color: #0f172a;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: var(--slide-bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 1s cubic-bezier(0.16, 1, 0.3, 1),
              visibility 0.7s;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s ease;
  opacity: 0;
  border: none;
}

.hero-slider:hover .slider-btn {
  opacity: 1;
}

.prev-btn {
  left: 16px;
}

.next-btn {
  right: 16px;
}

.slider-btn:hover {
  background: #ffffff;
  color: var(--color-green-dark);
  transform: translateY(-50%) scale(1.06);
}

.slider-indicators {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 20px;
}

.indicator-bar {
  width: 28px;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.indicator-bar.active {
  width: 44px;
  background-color: var(--color-green);
}

/* ==========================================================================
   Features Section: Dynamic Rotating Brand & 4 Modern Benefit Cards
   ========================================================================== */
.features-section {
  width: 100%;
  padding-top: 48px;
  padding-bottom: 20px;
}

.features-header {
  text-align: center;
  margin-bottom: 38px;
}

.features-title {
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 500;
  color: #1e293b;
  letter-spacing: -0.01em;
  line-height: 1.35;
}

.brand-rotator {
  font-weight: 800;
  color: #0284c7;
  text-transform: uppercase;
  display: inline-block;
  min-width: 110px;
  text-align: center;
  letter-spacing: 0.02em;
}

.typing-cursor {
  font-weight: 300;
  color: #0284c7;
  display: inline-block;
  animation: blink 0.9s infinite;
  margin-left: 2px;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

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

.feature-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 34px 20px 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.06);
}

.feature-card.accent-blue { border-top: 3px solid #0284c7; }
.feature-card.accent-red { border-top: 3px solid #e11d48; }
.feature-card.accent-teal { border-top: 3px solid #0d9488; }
.feature-card.accent-dark { border-top: 3px solid #334155; }

.card-icon-wrap {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.95rem;
  margin-bottom: 20px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .card-icon-wrap {
  transform: scale(1.08);
}

.icon-blue { background-color: #0284c7; }
.icon-red { background-color: #e11d48; }
.icon-teal { background-color: #0d9488; }
.icon-dark { background-color: #334155; }

.card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.3;
}

.card-desc {
  font-size: 0.885rem;
  color: #64748b;
  line-height: 1.6;
  text-align: center;
}

/* ==========================================================================
   Services Grid Section (Hizmetlerimiz)
   ========================================================================== */
.services-section {
  width: 100%;
  padding-top: 48px;
  padding-bottom: 20px;
}

.services-header {
  text-align: center;
  margin-bottom: 38px;
}

.services-badge {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  color: #0284c7;
  background: #e0f2fe;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 10px;
}

.services-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.25;
}

.services-subtitle {
  font-size: 0.95rem;
  color: #64748b;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.service-card-img {
  width: 100%;
  height: 195px;
  position: relative;
  overflow: hidden;
  background: #0f172a;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.service-icon-floating {
  position: absolute;
  bottom: -18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.35);
  border: 3px solid #ffffff;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon-floating {
  transform: scale(1.1) rotate(6deg);
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
}

.service-card-body {
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-card-desc {
  font-size: 0.885rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.885rem;
  font-weight: 700;
  color: #0284c7;
  transition: all 0.2s ease;
}

.service-card-link:hover {
  color: #16a34a;
  gap: 12px;
}

/* ==========================================================================
   Service Workflow Process Section
   ========================================================================== */
.process-section {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-top: 48px;
  background-image: url('https://images.pexels.com/photos/2582937/pexels-photo-2582937.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  padding: 58px 28px 64px 28px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.process-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.9) 0%, rgba(10, 16, 30, 0.95) 100%);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.process-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.process-header {
  margin-bottom: 42px;
}

.process-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.process-subtitle {
  font-size: 1rem;
  color: #94a3b8;
  font-weight: 500;
}

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

.process-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.step-card-shape {
  width: 90px;
  height: 90px;
  background: #ffffff;
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step-item:hover .step-card-shape {
  transform: translateY(-5px) scale(1.04);
}

.step-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 26px;
  height: 26px;
  background-color: #0284c7;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.825rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
}

.step-icon-inner {
  font-size: 2.2rem;
  color: #16a34a;
}

.step-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.step-contact {
  font-size: 0.925rem;
  font-weight: 700;
  color: #38bdf8;
  line-height: 1.4;
  margin-bottom: 6px;
}

.step-desc {
  font-size: 0.85rem;
  color: #cbd5e1;
  line-height: 1.55;
}

/* ==========================================================================
   Visual Journey Roadmap Section
   ========================================================================== */
.journey-section {
  width: 100%;
  padding: 50px 0 20px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

.journey-inner {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 40px 16px;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-pin {
  position: absolute;
  z-index: 10;
  color: #0f172a;
  font-size: 1.8rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.journey-pin:hover {
  transform: scale(1.15);
  color: var(--color-green-dark);
}

.pin-start { top: 35px; left: 15px; }
.pin-end { bottom: 50px; right: 15px; }

.journey-doodle {
  position: absolute;
  color: #cbd5e1;
  pointer-events: none;
  z-index: 1;
}

.doodle-sun {
  top: 65px;
  left: 200px;
  font-size: 2rem;
  animation: spinSlow 30s linear infinite;
}

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

.doodle-clouds {
  top: 45px;
  left: 520px;
  font-size: 1.8rem;
  color: #e2e8f0;
}

.journey-path-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.journey-steps-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1080px;
  position: relative;
  z-index: 4;
  gap: 14px;
}

.journey-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.node-circle-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.node-circle {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px dashed #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 5;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 10px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.journey-node:hover .node-circle {
  transform: translateY(-5px) scale(1.05);
  border-color: #0284c7;
  border-style: solid;
}

.circle-shadow {
  width: 85px;
  height: 10px;
  background: radial-gradient(ellipse at center, rgba(15, 23, 42, 0.28) 0%, rgba(15, 23, 42, 0) 75%);
  border-radius: 50%;
  margin-top: 6px;
}

.device-repair-graphic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  font-size: 1.25rem;
  color: #64748b;
}

.toast-smoke { color: #ea580c; }
.phone-crack { color: #0284c7; }
.blender-broken { color: #e11d48; }
.laptop-glitch { color: #475569; }

.node-brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.repair-isometric-graphic {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0284c7;
}

.chip-center { font-size: 2.8rem; }
.tool-1 { position: absolute; top: 4px; left: 6px; font-size: 1.1rem; color: #ea580c; transform: rotate(-30deg); }
.tool-2 { position: absolute; bottom: 4px; right: 6px; font-size: 1.1rem; color: #16a34a; transform: rotate(45deg); }
.bolt-accent { position: absolute; top: 4px; right: 10px; font-size: 0.95rem; color: #f59e0b; }

.featured-node .node-circle {
  width: 180px;
  height: 180px;
  padding: 14px;
}

.satisfaction-survey-ui {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  position: relative;
}

.survey-faces-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 6px;
}

.face-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.face-icon {
  font-size: 1.75rem;
  color: #1e293b;
}

.survey-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #1e293b;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.survey-checkbox.checked { border-color: #16a34a; }
.green-check { color: #16a34a; font-size: 1.25rem; }

.marker-pen-hand {
  position: absolute;
  top: 8px;
  right: -6px;
  width: 55px;
  height: 90px;
  pointer-events: none;
}

.pen-cap {
  position: absolute;
  top: 12px;
  left: 0;
  width: 12px;
  height: 22px;
  background: #22c55e;
  border-radius: 4px 4px 2px 2px;
  transform: rotate(-35deg);
}

.pen-body {
  position: absolute;
  top: 24px;
  left: 10px;
  width: 14px;
  height: 44px;
  background: #0f172a;
  border-radius: 3px;
  transform: rotate(-35deg);
}

.hand-wrist-art {
  position: absolute;
  top: 32px;
  right: -4px;
  width: 40px;
  height: 44px;
  background: radial-gradient(circle at 30% 30%, #fbd5b5, #f5b991);
  border-radius: 50% 40% 40% 50%;
}

.handwritten-caption {
  font-family: var(--font-handwritten);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-blue-hand);
  line-height: 1.1;
  text-align: center;
  margin-top: 12px;
}

.caption-large {
  font-size: 2.05rem;
  color: var(--color-blue-hand);
  margin-top: 16px;
}

/* ==========================================================================
   FAQ Section (Merak Edilenler)
   ========================================================================== */
.faq-section {
  width: 100%;
  margin-top: 48px;
  margin-bottom: 20px;
  position: relative;
  background: transparent;
  padding: 20px 0 10px 0;
}

.faq-layout {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.faq-images-wrapper {
  position: absolute;
  left: 0;
  top: 0;
  width: 47%;
  height: 340px;
  z-index: 5;
}

.faq-img-main {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  background: #0f172a;
}

.faq-img-main > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 6px;
  display: block;
}

.faq-img-overlay {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 58%;
  height: 58%;
  border-radius: 10px;
  border: 6px solid #ffffff;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  background: #ffffff;
  z-index: 6;
}

.faq-img-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faq-dark-panel {
  width: 58%;
  min-height: 460px;
  background: #081426;
  border-radius: 6px;
  padding: 44px 32px 44px 72px;
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(8, 20, 38, 0.22);
  position: relative;
  z-index: 2;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq-section-title {
  font-family: var(--font-display);
  font-size: 2.15rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.03em;
  margin-bottom: 22px;
  text-transform: uppercase;
}

.faq-accordion-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-accordion-item {
  border-radius: 6px;
  overflow: hidden;
}

.faq-question-btn {
  width: 100%;
  background: #ffffff;
  color: #0f172a;
  border-radius: 6px;
  padding: 13px 18px;
  font-size: 0.925rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.faq-question-btn:hover {
  transform: translateX(4px);
  background: #f0fdf4;
  color: var(--color-green-dark);
}

.faq-q-icon {
  color: #64748b;
  font-size: 0.85rem;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-accordion-item.active .faq-question-btn {
  border-left: 4px solid var(--color-green);
  border-radius: 6px 6px 0 0;
  color: var(--color-green-darker);
}

.faq-accordion-item.active .faq-q-icon {
  transform: rotate(90deg);
  color: var(--color-green-dark);
}

.faq-answer-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  border-radius: 0 0 6px 6px;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s ease,
              padding 0.35s ease;
  padding: 0 18px;
}

.faq-accordion-item.active .faq-answer-panel {
  max-height: 220px;
  opacity: 1;
  padding: 14px 18px 16px 18px;
  border-left: 4px solid var(--color-green);
}

.faq-answer-panel p {
  color: #cbd5e1;
  font-size: 0.885rem;
  line-height: 1.6;
}

/* ==========================================================================
   Contact Section (İletişim & Bize Yazın)
   ========================================================================== */
.contact-section {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-top: 50px;
  background-image: url('https://images.pexels.com/photos/3182812/pexels-photo-3182812.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  min-height: 500px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.contact-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 36, 92, 0.88) 0%, rgba(8, 20, 52, 0.94) 100%);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.contact-inner-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  padding: 50px 40px;
  align-items: center;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.contact-badge-sub {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 800;
  color: #38bdf8;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.contact-main-heading {
  font-family: var(--font-display);
  font-size: 2.35rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.contact-lead-desc {
  color: #cbd5e1;
  font-size: 0.925rem;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 500px;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-mini-card {
  background: #ffffff;
  border-radius: 6px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.contact-mini-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.card-icon-box {
  width: 50px;
  background: var(--color-blue-primary);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.card-text-box {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.card-label {
  font-size: 0.7rem;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.card-value {
  font-size: 0.825rem;
  font-weight: 700;
  color: #0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Right Blue Form Card */
.contact-form-card {
  background: var(--color-blue-primary);
  border-radius: 8px;
  padding: 34px 28px;
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 82, 204, 0.35);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-card-title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: #ffffff;
  text-align: center;
  margin-bottom: 10px;
}

.form-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin-bottom: 18px;
}

.contact-form-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-input {
  width: 100%;
  height: 46px;
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid transparent;
  padding: 0 16px;
  font-size: 0.9rem;
  color: #0f172a;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input::placeholder {
  color: #94a3b8;
}

.form-input:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.35);
}

.form-textarea {
  height: 92px;
  padding: 12px 16px;
  resize: none;
}

/* Captcha Security Code */
.captcha-group {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 46px;
}

.captcha-box {
  display: flex;
  align-items: center;
  background: #000000;
  border-radius: 4px;
  overflow: hidden;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}

#captchaCanvas {
  display: block;
  cursor: pointer;
}

.captcha-refresh-btn {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #ffffff;
  width: 34px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.captcha-refresh-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #38bdf8;
}

.captcha-input {
  flex: 1;
  min-width: 0;
  height: 46px;
  letter-spacing: 0.04em;
}

.form-submit-btn {
  height: 48px;
  background: var(--color-blue-dark);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  margin-top: 2px;
}

.form-submit-btn:hover {
  background: #052c6b;
  transform: translateY(-1px);
}

.form-feedback-msg {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  min-height: 20px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.form-feedback-msg.success {
  background: rgba(34, 197, 94, 0.25);
  color: #86efac;
  padding: 8px 12px;
}

.form-feedback-msg.error {
  background: rgba(239, 68, 68, 0.25);
  color: #fca5a5;
  padding: 8px 12px;
}

/* ==========================================================================
   Site Footer
   ========================================================================== */
.site-footer {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-top: 50px;
  background-image: url('https://images.pexels.com/photos/2582937/pexels-photo-2582937.jpeg?auto=compress&cs=tinysrgb&w=1600');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(8, 20, 42, 0.94) 0%, rgba(4, 10, 22, 0.98) 100%);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.footer-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.15fr 1.25fr;
  gap: 34px;
  padding: 50px 40px 40px 40px;
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
}

.footer-brand-logo {
  height: 84px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  filter: contrast(1.05) brightness(1.02);
}

.footer-bio-text {
  font-size: 0.885rem;
  color: #94a3b8;
  line-height: 1.65;
  max-width: 320px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.footer-title-line {
  width: 36px;
  height: 2.5px;
  background: #38bdf8;
  margin: 8px 0 16px 0;
  border-radius: 2px;
}

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

.footer-links-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  font-size: 0.885rem;
  transition: all 0.2s ease;
}

.footer-links-list a i {
  font-size: 0.75rem;
  color: #38bdf8;
  transition: transform 0.2s ease;
}

.footer-links-list a:hover {
  color: #38bdf8;
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.885rem;
  color: #cbd5e1;
}

.footer-contact-icon {
  font-size: 1.05rem;
  color: #38bdf8;
  margin-top: 3px;
  width: 18px;
  flex-shrink: 0;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.45;
}

.footer-bottom-bar {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 40px;
  background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.825rem;
  color: #64748b;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-bottom-links a {
  color: #94a3b8;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: #38bdf8;
}

/* ==========================================================================
   Service & Legal Detail Page Styles
   ========================================================================== */
.detail-hero-section {
  width: 100%;
  margin-top: 16px;
  background: linear-gradient(135deg, #0b172a 0%, #081426 100%);
  border-radius: 8px;
  padding: 40px 34px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 14px;
}

.breadcrumb-nav a {
  color: #cbd5e1;
  transition: color 0.2s;
}

.breadcrumb-nav a:hover {
  color: #38bdf8;
}

.breadcrumb-nav .current {
  color: #38bdf8;
  font-weight: 600;
}

.detail-hero-badge {
  font-family: var(--font-display);
  font-size: 0.785rem;
  font-weight: 800;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}

.detail-hero-title {
  font-family: var(--font-display);
  font-size: 2.45rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.detail-hero-lead {
  font-size: 1rem;
  color: #cbd5e1;
  max-width: 780px;
  line-height: 1.6;
}

.detail-layout-grid {
  display: grid;
  grid-template-columns: 1.85fr 1.15fr;
  gap: 36px;
  margin-top: 36px;
}

.detail-main-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.detail-main-photo {
  width: 100%;
  height: 360px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.detail-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-text-block h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.detail-text-block p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.7;
  margin-bottom: 12px;
}

.detail-feature-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  background: #f8fafc;
  padding: 12px 14px;
  border-radius: 6px;
  border-left: 3px solid #16a34a;
}

.checklist-item i {
  color: #16a34a;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.detail-process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 10px;
}

.detail-step-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 18px 14px;
  text-align: center;
}

.detail-step-num {
  width: 34px;
  height: 34px;
  background: #0284c7;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-display);
  margin: 0 auto 10px auto;
}

.detail-step-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.detail-step-card p {
  font-size: 0.825rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 0;
}

.detail-guarantee-banner {
  background: linear-gradient(135deg, #052e16 0%, #14532d 100%);
  border-radius: 8px;
  padding: 22px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 10px 25px rgba(22, 163, 74, 0.15);
}

.guarantee-icon-large {
  font-size: 2.8rem;
  color: #4ade80;
  flex-shrink: 0;
}

.guarantee-content h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.guarantee-content p {
  font-size: 0.875rem;
  color: #bbf7d0;
  line-height: 1.55;
  margin-bottom: 0;
}

/* Detail Sidebar */
.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.sidebar-menu-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.sidebar-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e2e8f0;
}

.sidebar-services-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 14px;
  border-radius: 6px;
  font-size: 0.885rem;
  font-weight: 600;
  color: #334155;
  background: #f8fafc;
  transition: all 0.2s ease;
}

.sidebar-service-link:hover {
  background: #f0fdf4;
  color: var(--color-green-dark);
  transform: translateX(4px);
}

.sidebar-service-link.active {
  background: #0284c7;
  color: #ffffff;
}

.sidebar-service-link.active i {
  color: #ffffff;
}

.sidebar-cta-card {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  border-radius: 8px;
  padding: 26px 22px;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.3);
}

.sidebar-cta-icon {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 12px;
}

.sidebar-cta-card h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 6px;
}

.sidebar-cta-card p {
  font-size: 0.875rem;
  color: #e0f2fe;
  line-height: 1.5;
  margin-bottom: 18px;
}

.sidebar-phone-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  color: #0284c7;
  font-family: var(--font-display);
  font-size: 0.925rem;
  font-weight: 800;
  padding: 11px;
  border-radius: 6px;
  margin-bottom: 10px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.sidebar-phone-btn:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}

.sidebar-whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #22c55e;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.925rem;
  font-weight: 800;
  padding: 11px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.sidebar-whatsapp-btn:hover {
  background: #16a34a;
  transform: translateY(-2px);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

/* Tablet (Large) - 1180px */
@media (max-width: 1180px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

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

  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 18px;
  }

  .journey-path-svg,
  .journey-pin,
  .journey-doodle {
    display: none;
  }

  .journey-steps-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 18px;
    justify-items: center;
  }

  .featured-node .node-circle {
    width: 150px;
    height: 150px;
  }

  .faq-layout {
    flex-direction: column;
    justify-content: flex-start;
  }

  .faq-images-wrapper {
    position: relative;
    width: 100%;
    max-width: 540px;
    height: 300px;
    transform: none;
    top: auto;
    left: auto;
    margin-bottom: 20px;
  }

  .faq-dark-panel {
    width: 100%;
    padding: 34px 24px;
    margin-top: 0;
  }

  .contact-inner-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 24px;
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 20px;
    padding: 40px 24px 30px 24px;
  }

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

/* Tablet (Medium) - 1080px */
@media (max-width: 1080px) {
  .brand-slogan {
    display: none;
  }
}

/* Mobile & Small Tablets - 768px */
@media (max-width: 768px) {
  :root {
    --header-height: 90px;
  }

  .site-container {
    padding: 0 14px 40px 14px;
  }

  .top-photo-banner {
    height: 85px;
  }

  .brand-logo {
    height: 64px;
    max-width: 250px;
  }

  .footer-brand-logo {
    height: 68px;
    max-width: 250px;
  }

  .nav-menu,
  .btn-cta-green {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-slider {
    height: 240px;
  }

  .slider-btn {
    opacity: 0.85;
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .prev-btn { left: 10px; }
  .next-btn { right: 10px; }

  .features-section {
    padding-top: 36px;
  }

  .features-title {
    font-size: 1.35rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-card {
    padding: 24px 16px 20px 16px;
  }

  .card-icon-wrap {
    width: 68px;
    height: 68px;
    font-size: 1.7rem;
    margin-bottom: 16px;
  }

  .services-section {
    padding-top: 36px;
  }

  .services-title {
    font-size: 1.75rem;
  }

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

  .process-section {
    padding: 40px 16px 44px 16px;
    margin-top: 32px;
  }

  .process-title {
    font-size: 1.75rem;
  }

  .process-steps-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .journey-steps-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .node-circle {
    width: 115px;
    height: 115px;
  }

  .featured-node .node-circle {
    width: 140px;
    height: 140px;
  }

  .handwritten-caption {
    font-size: 1.45rem;
  }

  .caption-large {
    font-size: 1.75rem;
  }

  .faq-images-wrapper {
    height: 240px;
    max-width: 100%;
  }

  .faq-img-overlay {
    width: 58%;
    height: 58%;
    border-width: 4px;
  }

  .faq-dark-panel {
    padding: 26px 16px;
  }

  .faq-section-title {
    font-size: 1.7rem;
    text-align: center;
  }

  .faq-question-btn {
    font-size: 0.875rem;
    padding: 12px 14px;
  }

  .contact-main-heading {
    font-size: 1.8rem;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-form-card {
    padding: 26px 18px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 16px 24px 16px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
  }

  /* Detail Pages */
  .detail-hero-section {
    padding: 28px 18px;
  }

  .detail-hero-title {
    font-size: 1.75rem;
  }

  .detail-main-photo {
    height: 230px;
  }

  .detail-process-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .detail-feature-checklist {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Small Smartphone - 480px */
@media (max-width: 480px) {
  :root {
    --header-height: 84px;
  }

  .site-container {
    padding: 0 10px 32px 10px;
  }

  .brand-logo {
    height: 56px;
    max-width: 220px;
  }

  .footer-brand-logo {
    height: 60px;
    max-width: 220px;
  }

  .top-photo-banner {
    height: 70px;
  }

  .hero-slider {
    height: 200px;
  }

  .features-title {
    font-size: 1.18rem;
  }

  .brand-rotator {
    min-width: 90px;
  }

  .services-title {
    font-size: 1.45rem;
  }

  .process-title {
    font-size: 1.45rem;
  }

  .contact-main-heading {
    font-size: 1.5rem;
  }

  .contact-lead-desc {
    font-size: 0.85rem;
  }

  .form-card-title {
    font-size: 1.5rem;
  }

  .contact-inner-grid {
    padding: 28px 12px;
  }

  .contact-form-card {
    padding: 20px 12px;
  }

  .captcha-box {
    height: 42px;
  }

  #captchaCanvas {
    width: 100px;
    height: 42px;
  }

  .captcha-refresh-btn {
    height: 42px;
    width: 30px;
  }

  .captcha-input {
    height: 42px;
    font-size: 0.825rem;
  }

  .form-input {
    height: 42px;
    font-size: 0.85rem;
  }

  .detail-hero-title {
    font-size: 1.45rem;
  }

  .detail-guarantee-banner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding: 16px 12px;
  }

  .guarantee-icon-large {
    font-size: 2.2rem;
  }

  .checklist-item {
    font-size: 0.825rem;
    padding: 10px 12px;
  }
}
