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

/* Color Variables and Design Tokens */
:root {
  /* Color Palette */
  --primary: #D32F2F;
  --primary-dark: #B71C1C;
  --primary-light: #FFEBEE;
  --accent: #FFB300;
  --accent-dark: #FFA000;
  --accent-light: #FFF8E1;
  --neutral-dark: #0F172A;
  --neutral-muted: #475569;
  --neutral-light: #F8FAFC;
  --neutral-border: #E2E8F0;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
  
  /* Fonts */
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Transition and Border Radius */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Layout */
  --header-height: 80px;
  --container-width: 1200px;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--neutral-muted);
  background-color: var(--white);
  overflow-x: hidden;
}

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

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--neutral-light);
}
::-webkit-scrollbar-thumb {
  background: var(--neutral-border);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neutral-muted);
}

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

.section {
  padding: 100px 0;
  position: relative;
}

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

/* Header & Navigation */
.header {
  height: var(--header-height);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--neutral-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header.scrolled {
  height: 70px;
  box-shadow: var(--shadow-md);
}

.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 24px;
  color: var(--neutral-dark);
}

.logo span {
  color: var(--primary);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 22px;
  box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
}

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

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  color: var(--neutral-dark);
  font-size: 15px;
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Burger Menu button for mobile */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1010;
  background: none;
  border: none;
}

.burger-bar {
  width: 28px;
  height: 3px;
  background-color: var(--neutral-dark);
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.burger-menu.open .burger-bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.burger-menu.open .burger-bar:nth-child(2) {
  opacity: 0;
}

.burger-menu.open .burger-bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  border: 1px solid var(--primary);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--neutral-dark);
  border: 1px solid var(--accent);
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 179, 0, 0.4);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--neutral-dark);
  color: var(--white);
  border: 1px solid var(--neutral-dark);
}

.btn-secondary:hover {
  background-color: #1e293b;
  border-color: #1e293b;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 14px;
}

/* Page Header Banner */
.page-header {
  padding: 140px 0 80px 0;
  background: linear-gradient(135deg, var(--neutral-dark) 0%, #1e293b 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath d='M10 10L90 90M90 10L10 90' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E") repeat;
  opacity: 0.7;
}

.page-header-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  font-size: 42px;
  margin-bottom: 12px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.breadcrumbs span {
  color: rgba(255, 255, 255, 0.4);
}

/* Section Header styling */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-bottom: 10px;
  background-color: var(--primary-light);
  padding: 4px 14px;
  border-radius: var(--radius-full);
}

.section-title {
  font-size: 36px;
  color: var(--neutral-dark);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 16px;
  color: var(--neutral-muted);
}

/* Hero Section */
.hero {
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(211, 47, 47, 0.08);
  border: 1px solid rgba(211, 47, 47, 0.15);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(211, 47, 47, 0.05);
  letter-spacing: -0.1px;
}

.hero-title {
  font-size: 54px;
  font-weight: 800;
  color: var(--neutral-dark);
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--primary);
  position: relative;
}

.hero-desc {
  font-size: 18px;
  margin-bottom: 36px;
  color: var(--neutral-muted);
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  border-top: 1px solid var(--neutral-border);
  padding-top: 30px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(211, 47, 47, 0.12);
  padding: 10px 18px;
  border-radius: 100px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.hero-feature-item:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 20px rgba(211, 47, 47, 0.08);
}

.hero-feature-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.hero-feature-text {
  font-weight: 600;
  color: var(--neutral-dark);
  font-size: 14px;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-decor {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(rgba(211, 47, 47, 0.25) 2px, transparent 2px);
  background-size: 16px 16px;
  z-index: 1;
}

.hero-image-decor-border {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(211, 47, 47, 0.25);
  border-radius: var(--radius-lg);
  z-index: 1;
  pointer-events: none;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 8px solid var(--white);
  aspect-ratio: 16/10;
  background: var(--neutral-border);
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

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

.hero-floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background-color: var(--white);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 20;
  border: 1px solid var(--neutral-border);
}

.hero-floating-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background-color: var(--accent-light);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-floating-card-title {
  font-size: 14px;
  color: var(--neutral-muted);
}

.hero-floating-card-value {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 20px;
  color: var(--neutral-dark);
}

/* Feature Cards Section (under Hero) */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background-color: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border-bottom: 4px solid transparent;
  position: relative;
  z-index: 10;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-bottom-color: var(--primary);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
}

.feature-card:hover .feature-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: rotateY(180deg);
  transition: transform 0.6s;
}

.feature-title {
  font-size: 20px;
  margin-bottom: 14px;
}

.feature-desc {
  font-size: 15px;
  color: var(--neutral-muted);
}

/* About Us Home Section */
.about-home-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.about-home-images {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  height: 480px;
}

.about-img-1 {
  grid-column: 1 / 10;
  grid-row: 1 / 11;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--white);
  z-index: 5;
}

.about-img-2 {
  grid-column: 5 / 13;
  grid-row: 5 / 13;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 6px solid var(--white);
  z-index: 10;
}

.about-image-decor {
  grid-column: 1 / 5;
  grid-row: 1 / 5;
  background-image: radial-gradient(rgba(211, 47, 47, 0.25) 2px, transparent 2px);
  background-size: 16px 16px;
  z-index: 1;
  margin-top: -20px;
  margin-left: -20px;
}

.about-image-decor-border {
  grid-column: 5 / 13;
  grid-row: 5 / 13;
  border: 2px solid rgba(211, 47, 47, 0.25);
  border-radius: var(--radius-md);
  z-index: 8;
  pointer-events: none;
  margin-top: 15px;
  margin-left: 15px;
}

.about-img-1 img, .about-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-home-content {
  padding-left: 20px;
}

.about-bullets {
  margin-top: 30px;
  list-style: none;
}

.about-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.about-bullet-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  margin-top: 3px;
  flex-shrink: 0;
}

.about-bullet-title {
  font-weight: 700;
  color: var(--neutral-dark);
  margin-bottom: 4px;
}

.about-bullet-desc {
  font-size: 14px;
}

/* Services Grid Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--neutral-border);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-light);
}

.service-card-image {
  height: 200px;
  overflow: hidden;
  background-color: var(--neutral-border);
}

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

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

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

.service-card-title {
  font-size: 18px;
  margin-bottom: 12px;
}

.service-card-desc {
  font-size: 14px;
  color: var(--neutral-muted);
  margin-bottom: 20px;
  height: 66px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.service-card-link {
  font-weight: 700;
  color: var(--primary);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card-link:hover {
  color: var(--primary-dark);
}

.service-card-link svg {
  transition: transform 0.3s;
}

.service-card-link:hover svg {
  transform: translateX(4px);
}

/* Statistics Counters Section */
.stats {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 70px;
  background-color: rgba(255,255,255,0.15);
}

.stat-value {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 48px;
  margin-bottom: 8px;
  color: var(--white);
}

.stat-value span {
  color: var(--accent);
}

.stat-label {
  font-weight: 600;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

/* Process Timeline (Süreç Adımları) */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  height: 4px;
  background-color: var(--neutral-border);
  z-index: 1;
}

.timeline-step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.timeline-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background-color: var(--white);
  border: 4px solid var(--neutral-border);
  color: var(--neutral-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 24px;
  font-weight: 800;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.timeline-step:hover .timeline-icon {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
}

.timeline-step.active .timeline-icon {
  border-color: var(--primary);
  color: var(--primary);
}

.timeline-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.timeline-desc {
  font-size: 14px;
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--neutral-dark) 0%, #1e293b 100%);
  color: var(--white);
  padding: 80px 0;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  background-color: rgba(211, 47, 47, 0.1);
  border-radius: var(--radius-full);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 10;
}

.cta-content h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}

/* Testimonials / Müşteri Yorumları */
.testimonial-container {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  padding: 30px 60px;
  border-radius: var(--radius-lg);
}

.testimonial-slider {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  padding: 20px 20px 10px 20px;
  text-align: center;
}

.testimonial-quote {
  font-size: 19px;
  font-style: italic;
  color: var(--neutral-dark);
  margin-bottom: 24px;
  position: relative;
  line-height: 1.7;
}

.testimonial-quote::before {
  content: '“';
  font-size: 110px;
  color: rgba(211, 47, 47, 0.08);
  position: absolute;
  top: -55px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.testimonial-author-avatar {
  width: 65px;
  height: 65px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.08) 0%, rgba(211, 47, 47, 0.02) 100%);
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(211, 47, 47, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.testimonial-author-name {
  font-weight: 700;
  color: var(--neutral-dark);
}

.testimonial-author-role {
  font-size: 13px;
  color: var(--neutral-muted);
}

.testimonial-stars {
  color: var(--accent);
  display: flex;
  gap: 4px;
  font-size: 15px;
  margin-top: 4px;
}

.testimonial-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background-color: var(--white);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  color: var(--neutral-dark);
}

.testimonial-btn:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.testimonial-btn-prev {
  left: 0;
}

.testimonial-btn-next {
  right: 0;
}

/* FAQ / Sıkça Sorulan Sorular (Accordion) */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  border: 1px solid var(--neutral-border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(211, 47, 47, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: 24px;
  font-weight: 700;
  font-size: 18px;
  color: var(--neutral-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  user-select: none;
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background-color: var(--neutral-light);
  color: var(--neutral-dark);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background-color: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 24px;
}

.faq-answer-inner {
  padding-bottom: 24px;
  color: var(--neutral-muted);
  font-size: 15px;
  border-top: 1px solid var(--neutral-border);
  padding-top: 16px;
}

/* Multi-step Calculator (Teklif Al) */
.quote-container {
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--neutral-border);
  overflow: hidden;
}

.quote-progress {
  display: flex;
  justify-content: space-between;
  background-color: var(--neutral-light);
  padding: 30px;
  border-bottom: 1px solid var(--neutral-border);
  position: relative;
}

.quote-progress-bar {
  position: absolute;
  top: 48px;
  left: 60px;
  right: 60px;
  height: 4px;
  background-color: var(--neutral-border);
  z-index: 1;
}

.quote-progress-fill {
  position: absolute;
  top: 48px;
  left: 60px;
  width: 0%;
  height: 4px;
  background-color: var(--primary);
  z-index: 2;
  transition: width 0.4s ease;
}

.quote-step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 5;
  width: 60px;
}

.quote-step-num {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--white);
  border: 2px solid var(--neutral-border);
  color: var(--neutral-muted);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.quote-step-indicator.active .quote-step-num {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 0 10px rgba(211, 47, 47, 0.3);
}

.quote-step-indicator.completed .quote-step-num {
  background-color: var(--accent);
  border-color: var(--accent);
  color: var(--neutral-dark);
}

.quote-step-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--neutral-muted);
  text-align: center;
}

.quote-step-indicator.active .quote-step-label {
  color: var(--primary);
}

.quote-form-content {
  padding: 40px;
}

.quote-step-panel {
  display: none;
}

.quote-step-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.quote-step-title {
  font-size: 24px;
  margin-bottom: 24px;
  text-align: center;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.form-group-full {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--neutral-dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--neutral-border);
  background-color: var(--neutral-light);
  color: var(--neutral-dark);
  font-weight: 500;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  background-color: var(--white);
  box-shadow: 0 0 0 4px var(--primary-light);
}

/* Custom Select design */
select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 48px;
}

/* Radio Option Cards (For moving types / house types) */
.options-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.option-card {
  border: 2px solid var(--neutral-border);
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.02);
}

.option-card input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.option-card:hover {
  border-color: var(--primary);
  background-color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(211, 47, 47, 0.05);
}

.option-card.selected {
  border-color: var(--primary);
  background-color: var(--primary-light);
  color: var(--primary-dark);
  box-shadow: 0 10px 20px rgba(211, 47, 47, 0.1);
  transform: translateY(-4px) scale(1.02);
}

.option-card-icon {
  width: 44px;
  height: 44px;
  color: var(--neutral-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: var(--transition);
}

.option-card.selected .option-card-icon {
  color: var(--primary);
  transform: scale(1.1);
}

.option-card-label {
  font-weight: 700;
  font-size: 14px;
  color: var(--neutral-dark);
  transition: var(--transition);
}

.option-card.selected .option-card-label {
  color: var(--primary-dark);
}

/* Step panel actions */
.quote-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  border-top: 1px solid var(--neutral-border);
  padding-top: 24px;
}

/* Quote Calculator Result Panel */
.calculator-result-box {
  background: linear-gradient(135deg, var(--neutral-dark) 0%, #1e293b 100%);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  margin-bottom: 24px;
  text-align: center;
}

.calculator-result-title {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.calculator-result-val {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 40px;
  color: var(--accent);
}

.calculator-result-info {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 10px;
}

/* Custom Checkbox (Switch) */
.switch-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-md);
  background-color: var(--neutral-light);
  margin-bottom: 16px;
}

.switch-label {
  font-weight: 600;
  color: var(--neutral-dark);
}

.switch-desc {
  font-size: 12px;
  color: var(--neutral-muted);
}

.switch-btn {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
  flex-shrink: 0;
}

.switch-btn input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--neutral-border);
  transition: .4s;
  border-radius: 34px;
}

.switch-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

.switch-btn input:checked + .switch-slider {
  background-color: var(--primary);
}

.switch-btn input:checked + .switch-slider:before {
  transform: translateX(22px);
}

/* Contact Page Layout */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.45) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.06) !important;
  border-radius: var(--radius-lg);
  padding: 40px;
}

.contact-info-title {
  font-size: 20px;
  margin-bottom: 24px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(211, 47, 47, 0.1) 0%, rgba(211, 47, 47, 0.03) 100%);
  border: 1px solid rgba(211, 47, 47, 0.18);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(211, 47, 47, 0.05);
}

.contact-info-content h4 {
  font-size: 15px;
  color: var(--neutral-dark);
  margin-bottom: 4px;
}

.contact-info-content p {
  font-size: 14px;
}

.contact-form-box {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--neutral-border);
}

.map-wrapper {
  margin-top: 30px;
  height: 250px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--neutral-border);
  background-color: #e5e3df;
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Service Tabs Section (Hizmetlerimiz Page) */
.services-tabs-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

.services-tabs-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-tab-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background-color: var(--neutral-light);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-md);
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--neutral-dark);
  cursor: pointer;
  transition: var(--transition);
  text-align: left;
}

.service-tab-btn:hover {
  background-color: var(--white);
  border-color: var(--primary-light);
}

.service-tab-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(211, 47, 47, 0.2);
}

.service-tab-btn svg {
  transition: transform 0.3s;
}

.service-tab-btn:hover svg {
  transform: translateX(4px);
}

.services-tabs-content {
  background-color: var(--white);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.service-tab-panel {
  display: none;
  animation: fadeIn 0.5s ease;
}

.service-tab-panel.active {
  display: block;
}

.service-panel-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
  align-items: center;
}

.service-panel-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  background: var(--neutral-border);
}

.service-panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-panel-title {
  font-size: 32px;
  margin-bottom: 16px;
}

.service-panel-desc {
  font-size: 16px;
  margin-bottom: 24px;
}

.service-panel-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
  border-top: 1px solid var(--neutral-border);
  padding-top: 30px;
}

.service-panel-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--neutral-dark);
  font-size: 15px;
}

/* Gallery Section (galeri.html) */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  background-color: var(--neutral-light);
  border: 1px solid var(--neutral-border);
  border-radius: var(--radius-full);
  font-family: var(--font-title);
  font-weight: 600;
  color: var(--neutral-dark);
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 10px rgba(211, 47, 47, 0.2);
}

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

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  background-color: var(--neutral-border);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-item.hidden {
  display: none !important;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: var(--white);
  padding: 20px;
  text-align: center;
  z-index: 10;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-overlay-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  margin-bottom: 12px;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay-icon {
  transform: translateY(0);
}

.gallery-overlay-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.gallery-overlay-cat {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  position: relative;
  box-shadow: var(--shadow-xl);
  border: 4px solid var(--white);
  border-radius: var(--radius-sm);
  background: var(--neutral-dark);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox-caption {
  color: var(--white);
  text-align: center;
  padding: 16px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 16px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background-color: rgba(255,255,255,0.1);
  transition: var(--transition);
}

.lightbox-close:hover {
  background-color: var(--primary);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background-color: rgba(255,255,255,0.1);
  transition: var(--transition);
  border: none;
}

.lightbox-nav:hover {
  background-color: var(--primary);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

/* Floating Actions (WhatsApp & Call Widgets) */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
}

.floating-btn {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.1) translateY(-5px);
}

.floating-btn svg {
  width: 28px;
  height: 28px;
}

.floating-whatsapp {
  background-color: #25D366;
}

.floating-whatsapp::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  background-color: #25D366;
  opacity: 0.4;
  z-index: -1;
  animation: pulse 2s infinite;
}

.floating-call {
  background-color: var(--primary);
}

.floating-call::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  background-color: var(--primary);
  opacity: 0.4;
  z-index: -1;
  animation: pulse-call 2s infinite;
}

@keyframes pulse-call {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(211, 47, 47, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
}

.floating-btn-tooltip {
  position: absolute;
  right: 75px;
  background-color: var(--neutral-dark);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.floating-btn-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background-color: var(--neutral-dark);
}

.floating-btn:hover .floating-btn-tooltip {
  opacity: 1;
}

/* Footer Section */
.footer {
  background-color: var(--neutral-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px 0;
  border-top: 4px solid var(--primary);
}

.footer h3, .footer h4 {
  color: var(--white);
  margin-bottom: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background-color: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-social-link:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}

.footer-contact-icon {
  color: var(--primary);
  margin-top: 4px;
  flex-shrink: 0;
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleUp {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  :root {
    --header-height: 70px;
  }
  
  .hero-title {
    font-size: 42px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services-tabs-container {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-tag {
    justify-content: center;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
    align-items: center;
  }
  
  .hero-feature-item {
    justify-content: center;
  }
  
  .about-home-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-home-images {
    height: 350px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-item:nth-child(2)::after {
    display: none;
  }
  
  .timeline {
    grid-template-columns: 1fr;
  }
  
  .timeline::before {
    display: none;
  }
  
  .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .cta-btns {
    justify-content: center;
  }
  
  .quote-progress {
    padding: 20px 10px;
  }
  
  .quote-progress-bar, .quote-progress-fill {
    left: 40px;
    right: 40px;
  }
  
  .quote-form-content {
    padding: 24px;
  }
  
  .quote-grid {
    grid-template-columns: 1fr;
  }
  
  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  /* Mobile Menu navigation toggling */
  .burger-menu {
    display: flex;
  }
  
  .nav {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    gap: 40px;
    transition: var(--transition);
    border-top: 1px solid var(--neutral-border);
    z-index: 999;
  }
  
  .nav.open {
    left: 0;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .header-cta {
    display: none;
  }
  
  .nav-link {
    font-size: 20px;
  }
}

/* ==========================================================================
   Modernized Styles (Gradients, Blobs, Shimmer & Scroll Reveal)
   ========================================================================== */

/* Radial Blur Gradient Blobs for Hero Backgrounds */
.hero-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(130px);
  z-index: 1;
  pointer-events: none;
  opacity: 0.75;
}

.hero-blob-1 {
  background: radial-gradient(circle, rgba(211, 47, 47, 0.22) 0%, rgba(211, 47, 47, 0) 70%);
  bottom: -20%;
  left: -15%;
  animation: float-blob-1 18s infinite alternate ease-in-out;
}

.hero-blob-2 {
  background: radial-gradient(circle, rgba(255, 179, 0, 0.2) 0%, rgba(255, 179, 0, 0) 70%);
  top: -15%;
  right: -10%;
  animation: float-blob-2 22s infinite alternate ease-in-out;
}

@keyframes float-blob-1 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, 40px) scale(1.15); }
}

@keyframes float-blob-2 {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-50px, -60px) scale(0.9); }
}

/* Glassmorphism panels */
.glass-panel {
  background: rgba(255, 255, 255, 0.8) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04) !important;
}

/* Shimmer (Glow) Effect for Buttons */
.btn-primary::after, .btn-accent::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 25%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: 0.75s;
}

.btn-primary:hover::after, .btn-accent:hover::after {
  left: 125%;
  transition: 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scroll Reveal System */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

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

.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }

/* Custom Shimmer animation for card headers/borders */
.feature-card, .service-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s;
}
.feature-card:hover, .service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(211, 47, 47, 0.07);
}

/* FAQ Accordion Styles */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--neutral-border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item[open] {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--neutral-dark);
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px 20px;
  color: var(--neutral-muted);
  line-height: 1.6;
  border-top: 1px solid var(--neutral-border);
  margin-top: 10px;
  padding-top: 15px;
}
