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

/* --- CUSTOM PROPERTIES --- */
:root {
  /* Colors */
  --primary: #0c2340;          /* Deep Corporate Navy */
  --primary-rgb: 12, 35, 64;
  --secondary: #ff6b00;        /* Active Repair Orange */
  --secondary-rgb: 255, 107, 0;
  --accent: #00a4e4;           /* Cooling Blue */
  --accent-rgb: 0, 164, 228;
  
  --dark: #061122;             /* Deepest Navy for backgrounds */
  --dark-light: #0d1e36;       /* Slightly lighter navy for cards */
  --light: #f8fafc;            /* Clean light grey/white */
  --light-card: #ffffff;
  --text-dark: #1e293b;
  --text-light: #f8fafc;
  --text-muted: #64748b;
  --border-light: #e2e8f0;
  --border-dark: #1e293b;

  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;

  /* Typography */
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout & Spacing */
  --header-height: 118px; /* 38px top bar + 80px nav bar */
  --container-max-width: 1280px;
  
  /* Shadows & Glassmorphism */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --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-primary: 0 10px 25px -5px rgba(12, 35, 64, 0.2);
  --shadow-accent: 0 10px 25px -5px rgba(255, 107, 0, 0.3);
  --glass-bg: rgba(255, 255, 255, 0.9);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.06);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  /* Border Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-height); /* Starts content below fixed header */
}

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

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

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

ul {
  list-style: none;
}

/* --- UTILITY CLASSES --- */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }

.bg-dark { background-color: var(--dark); color: var(--text-light); }
.bg-light { background-color: var(--light); }
.bg-white { background-color: #ffffff; }

.section-padding {
  padding: 6rem 0;
}

.flex { display: flex; }
.grid { display: grid; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-normal);
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  background-color: #16365f;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-light);
  box-shadow: var(--shadow-accent);
}

.btn-secondary:hover {
  background-color: #e05e00;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -5px rgba(255, 107, 0, 0.45);
}

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

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--text-light);
}

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

.btn-outline-white:hover {
  background-color: var(--text-light);
  color: var(--primary);
}

/* Badge */
.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  background-color: rgba(255, 107, 0, 0.08);
  color: var(--secondary);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

/* Section Header */
.section-header {
  margin-bottom: 4rem;
  max-width: 700px;
}
.section-header.center {
  margin-left: auto;
  margin-right: auto;
}
.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.bg-dark .section-title {
  color: var(--text-light);
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}
.bg-dark .section-subtitle {
  color: #94a3b8;
}

/* --- HEADER / NAVIGATION (Official Corporate Style) --- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
}

/* Scrolled header wrapper translation */
header.scrolled {
  transform: translateY(-38px); /* Shifts the top-bar out of view */
}

/* Top Info Bar */
.top-bar {
  background-color: var(--primary);
  color: #e2e8f0;
  font-size: 0.8rem;
  height: 38px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 500;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.top-bar-left {
  display: flex;
  gap: 1.5rem;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-item svg {
  color: var(--secondary);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-badge {
  background-color: rgba(255, 107, 0, 0.15);
  color: #ffa466;
  border: 1px solid rgba(255, 107, 0, 0.3);
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Navigation Bar */
.nav-bar {
  height: 80px;
  background-color: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  display: flex;
  align-items: center;
  transition: var(--transition-normal);
}

header.scrolled .nav-bar {
  height: 70px;
  background-color: rgba(255, 255, 255, 0.98);
}

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

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(12, 35, 64, 0.3);
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}

.logo-sub {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--secondary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  gap: 2.25rem;
}

.nav-link {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link:hover {
  color: var(--secondary);
}

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

.nav-link.active {
  color: var(--secondary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact-phone-header {
  display: flex;
  flex-direction: column;
  text-align: right;
}

.contact-phone-header span {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.contact-phone-header a {
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 700;
}

.contact-phone-header a:hover {
  color: var(--secondary);
}

/* Burger menu */
.burger-menu {
  display: none;
  cursor: pointer;
  background: none;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

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

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 80% 20%, rgba(12, 35, 64, 0.04) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(255, 107, 0, 0.02) 0%, transparent 40%);
  overflow: hidden;
  padding: 4rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary);
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-title span {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(12, 35, 64, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.hero-badge-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

.hero-badge-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Hero Visual Graphic */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-bg-circle {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(12, 35, 64, 0.05), rgba(0, 164, 228, 0.05));
  z-index: 1;
  animation: pulse-slow 8s infinite alternate;
}

.visual-main {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 460px;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* Floating badge info on hero */
.floating-badge {
  position: absolute;
  background-color: #ffffff;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3;
}

.floating-badge.fb-1 {
  bottom: 30px;
  left: -20px;
  animation: float 4s ease-in-out infinite;
}

.floating-badge.fb-2 {
  top: 40px;
  right: -10px;
  animation: float 4s ease-in-out infinite;
  animation-delay: 2s;
}

.fb-icon {
  width: 35px;
  height: 35px;
  background-color: rgba(255, 107, 0, 0.1);
  color: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.fb-text h5 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}

.fb-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- SERVICES OVERVIEW SECTION --- */
.services-section {
  background-color: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(12, 35, 64, 0.1);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background-color: rgba(12, 35, 64, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-normal);
}

.service-card:hover .service-card-icon {
  background-color: var(--primary);
  color: white;
  transform: scale(1.1);
}

.service-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-card-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features-list {
  margin-bottom: 2rem;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.service-feature-item svg {
  color: var(--success);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.service-card-link {
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card-link svg {
  transition: var(--transition-fast);
}

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

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

/* --- TRUST FACTORS (Neden Biz?) --- */
.trust-section {
  background-color: var(--light);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.trust-benefits-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.benefit-card {
  background: white;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.25rem;
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

.benefit-card:hover {
  transform: translateX(10px);
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
}

.benefit-icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 107, 0, 0.1);
  color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.benefit-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.benefit-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.stat-box {
  background: linear-gradient(135deg, var(--primary), var(--dark-light));
  color: white;
  padding: 3rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.stat-box::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255, 107, 0, 0.05);
  border-radius: 50%;
  bottom: -30px;
  right: -30px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--secondary);
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- CERTIFICATION & STANDARDS SECTION (Official Look) --- */
.cert-section {
  background-color: #ffffff;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.cert-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition-normal);
  background-color: var(--light);
  position: relative;
}

.cert-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  background-color: #ffffff;
  box-shadow: var(--shadow-md);
}

.cert-badge-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 1.5rem;
  background-color: white;
  border: 3px double var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.cert-card:hover .cert-badge-icon {
  background-color: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: rotate(360deg);
}

.cert-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.cert-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --- BRANDS SUPPORTED (Markalar) --- */
.brands-section {
  background-color: #ffffff;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-light);
}

.brands-slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.brands-track {
  display: flex;
  width: calc(200px * 16);
  animation: scroll-brands 30s linear infinite;
  gap: 3rem;
  align-items: center;
}

.brand-item {
  width: 150px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
  filter: grayscale(100%);
  opacity: 0.6;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.brand-item:hover {
  filter: grayscale(0%);
  opacity: 1;
  border-color: var(--primary);
  transform: scale(1.05);
}

/* --- CLIENT TESTIMONIALS --- */
.testimonials-section {
  background-color: var(--light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.testimonial-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-quote {
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(255, 107, 0, 0.2);
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  pointer-events: none;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  flex-grow: 1;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.user-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

.user-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.rating-stars {
  color: #fbbf24;
  margin-top: 0.25rem;
  font-size: 0.8rem;
}

/* --- QUICK BOOKING FORM --- */
.booking-section {
  background: linear-gradient(135deg, var(--primary), var(--dark-light));
  color: white;
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(0, 164, 228, 0.04);
  filter: blur(60px);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

.booking-info h2 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.booking-info p {
  color: #cbd5e1;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.booking-features-vertical {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.bf-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.bf-icon {
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.bf-text h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
}

.bf-text p {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 0;
}

.booking-form-card {
  background-color: white;
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--text-dark);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.form-control {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  background-color: var(--light);
  font-family: inherit;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(12, 35, 64, 0.08);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  width: 100%;
  background-color: var(--secondary);
  color: white;
  border-radius: var(--radius-sm);
  padding: 1rem;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-accent);
  cursor: pointer;
  transition: var(--transition-normal);
}

.submit-btn:hover {
  background-color: #e05e00;
  transform: translateY(-2px);
}

/* --- FOOTER --- */
footer {
  background-color: var(--dark);
  color: #94a3b8;
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-col-about .logo-wrapper {
  margin-bottom: 1.5rem;
}

.footer-col-about .logo-text {
  color: white;
}

.footer-col-about p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--dark-light);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  border: 1px solid var(--border-dark);
}

.social-icon:hover {
  background-color: var(--secondary);
  color: white;
  transform: translateY(-3px);
  border-color: var(--secondary);
}

.footer-title {
  color: white;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.75rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--secondary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.footer-link-item {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}

.footer-link-item::before {
  content: '›';
  font-size: 1.2rem;
  color: var(--secondary);
}

.footer-link-item:hover {
  color: white;
  transform: translateX(4px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item-footer {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
}

.contact-item-footer svg {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.contact-item-footer div h5 {
  color: white;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.contact-item-footer a {
  transition: var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: 2rem;
  font-size: 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a:hover {
  color: white;
}

/* --- MOBILE FLOATING BUTTONS --- */
.mobile-sticky-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

.floating-action-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  color: white;
  font-size: 1.6rem;
  transition: var(--transition-normal);
  cursor: pointer;
}

.floating-action-btn:hover {
  transform: scale(1.1) rotate(5deg);
}

.fab-whatsapp {
  background-color: #25d366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.fab-phone {
  background-color: var(--primary);
  box-shadow: 0 8px 24px rgba(12, 35, 64, 0.35);
}

/* --- SUB-PAGES SPECIFIC STYLING --- */

/* Hero Mini */
.hero-mini {
  background: linear-gradient(135deg, var(--primary), var(--dark-light));
  color: white;
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-mini::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.05));
  pointer-events: none;
}

.hero-mini-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.breadcrumb {
  display: flex;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.breadcrumb a:hover {
  color: var(--secondary);
}

.breadcrumb-separator {
  color: #64748b;
}

.breadcrumb-active {
  color: var(--secondary);
  font-weight: 500;
}

/* Hakkımızda Content */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-img-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--secondary);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-experience-badge h3 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1;
}

.about-experience-badge p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 0.25rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}

.value-card {
  background: white;
  border: 1px solid var(--border-light);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: rgba(12, 35, 64, 0.05);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
  transition: var(--transition-fast);
}

.value-card:hover .value-icon {
  background-color: var(--primary);
  color: white;
}

.value-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.value-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Service Details Page */
.service-details-grid {
  display: grid;
  grid-template-columns: 2.2fr 0.8fr;
  gap: 4rem;
}

.service-main-content h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  margin: 2.5rem 0 1.25rem;
}

.service-main-content p {
  color: var(--text-dark);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.details-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.details-feature-card {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  background-color: white;
  display: flex;
  gap: 1rem;
}

.details-feature-card svg {
  color: var(--secondary);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.details-feature-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.details-feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.service-sub-types {
  margin: 3rem 0;
}

.sub-type-item {
  background-color: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-fast);
}

.sub-type-header {
  padding: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--light);
}

.sub-type-header::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.sub-type-item.active {
  border-color: var(--primary);
}

.sub-type-item.active .sub-type-header {
  background-color: rgba(12, 35, 64, 0.03);
  border-bottom: 1px solid var(--border-light);
}

.sub-type-item.active .sub-type-header::after {
  content: '-';
  transform: rotate(180deg);
}

.sub-type-content {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

.sub-type-item.active .sub-type-content {
  padding: 1.5rem;
  max-height: 500px;
}

/* Sidebar Styling */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.sidebar-widget {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.widget-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--secondary);
}

.widget-menu {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.widget-menu-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
  background-color: var(--light);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  border-left: 3px solid transparent;
}

.widget-menu-link:hover,
.widget-menu-link.active {
  background-color: rgba(12, 35, 64, 0.05);
  color: var(--primary);
  border-left-color: var(--secondary);
}

.sidebar-contact-card {
  background: linear-gradient(135deg, var(--primary), var(--dark-light));
  color: white;
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sidebar-contact-card::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.08);
}

.sidebar-contact-card h4 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.sidebar-contact-card p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.sidebar-contact-card .phone-number {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--secondary);
  display: block;
  margin-bottom: 2rem;
}

/* Contact Page Styling */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 5rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  background-color: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
}

.contact-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(12, 35, 64, 0.05);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-card-details h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-card-details p,
.contact-card-details a {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-card-details a:hover {
  color: var(--secondary);
}

.map-container {
  margin-top: 5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse-slow {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.08); opacity: 1; }
}

@keyframes scroll-brands {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-200px * 8)); }
}

/* --- SCROLL ANIMATION EFFECTS --- */
.reveal {
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

/* --- MEDIA QUERIES --- */
@media (max-width: 1024px) {
  :root {
    --header-height: 108px;
  }
  .hero-title {
    font-size: 2.75rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual {
    order: -1;
  }
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .service-details-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  .section-padding {
    padding: 4rem 0;
  }
  .section-title {
    font-size: 2rem;
  }
  
  header.scrolled {
    transform: none; /* Disables scrolled shift on mobile */
  }
  
  .top-bar {
    display: none; /* Hides top bar on smaller mobile devices */
  }
  
  .nav-bar {
    height: 70px;
  }
  
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: white;
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
    z-index: 999;
  }
  .nav-menu.active {
    left: 0;
  }
  .burger-menu {
    display: flex;
  }
  .nav-actions {
    display: none;
  }
  
  .burger-menu.active .burger-bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .burger-menu.active .burger-bar:nth-child(2) {
    opacity: 0;
  }
  .burger-menu.active .burger-bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  
  .form-group-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .details-features-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-stats {
    grid-template-columns: 1fr;
  }
  .floating-badge.fb-1 {
    left: 10px;
  }
  .floating-badge.fb-2 {
    right: 10px;
  }
}

/* --- MOBILE STICKY BOTTOM BAR (Official Call Actions) --- */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  display: none;
  grid-template-columns: 1fr;
  z-index: 1002;
  border-top: 1px solid var(--border-light);
}

.msb-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: white;
  transition: var(--transition-fast);
}

.msb-phone {
  background-color: var(--primary);
}

.msb-phone:hover {
  background-color: #12335c;
}

.msb-online {
  background-color: var(--secondary);
}

.msb-online:hover {
  background-color: #e05e00;
}

@media (max-width: 768px) {
  .mobile-sticky-bar {
    display: grid;
  }
  .mobile-sticky-actions {
    display: none !important; /* Hide floating circles when bottom bar is active */
  }
  body {
    padding-bottom: 60px; /* Offset for bottom bar */
  }
}
