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

/* ==========================================================================
   CSS VARIABLES & DESIGN TOKENS
   ========================================================================== */
:root {
  --primary-color: #0b0f19;      /* Dark Navy background */
  --secondary-color: #121824;    /* Slate Gray background */
  --accent-color: #f59e0b;       /* Bright Gold/Yellow Accent */
  --accent-hover: #d97706;       /* Darker gold for hovers */
  --accent-rgb: 245, 158, 11;
  --text-light: #f3f4f6;         /* Off-white text */
  --text-dark: #0f172a;          /* Charcoal text for white bg */
  --text-muted-dark: #64748b;    /* Muted gray for white bg */
  --text-muted-light: #9ca3af;   /* Muted gray for dark bg */
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --border-light: rgba(255, 255, 255, 0.08);
  --border-dark: rgba(0, 0, 0, 0.08);
  
  --font-family: 'Poppins', sans-serif;
  --max-width: 1200px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  --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.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--primary-color);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

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

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

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

ul {
  list-style: none;
}

/* ==========================================================================
   UTILITY CLASSES & GRID SYSTEM
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

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

.section-bg-dark {
  background-color: var(--secondary-color);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-bg-light .section-header h2 {
  color: var(--text-dark);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted-light);
}

.section-bg-light .section-header p {
  color: var(--text-muted-dark);
}

.text-accent {
  color: var(--accent-color);
}

.font-bold {
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 30px;
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

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

.btn-dark:hover {
  background-color: #1a2336;
  color: var(--accent-color);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25d366;
  color: white;
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(11, 15, 25, 0.9);
  border-bottom: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.header-scrolled {
  background-color: rgba(11, 15, 25, 0.98);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
}

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

.header-scrolled .container {
  height: 70px;
}

/* Brand Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  fill: var(--accent-color);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 0.75rem;
  color: var(--accent-color);
  font-weight: 500;
  letter-spacing: 1px;
}

/* Nav Menu Desktop */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted-light);
  position: relative;
  padding: 8px 0;
}

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

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

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

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(245, 158, 11, 0.1);
  padding: 10px 18px;
  border-radius: 50px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition-normal);
}

.header-cta:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  border-color: var(--accent-color);
}

.header-cta svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--text-light);
  border-radius: 3px;
  transition: all var(--transition-normal);
}

@media (max-width: 1024px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background-color: var(--secondary-color);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 40px 30px;
    gap: 20px;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition-normal);
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    width: 100%;
    border-bottom: 1px solid var(--border-light);
    padding: 12px 0;
  }

  .nav-link::after {
    display: none;
  }

  .header-cta {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
  }

  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
    z-index: 999;
  }

  .nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }

  /* hamburger toggle active states */
  .nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  background-color: #030712;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 15, 25, 0.95) 0%, rgba(11, 15, 25, 0.75) 50%, rgba(11, 15, 25, 0.95) 100%);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(245, 158, 11, 0.15);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(245, 158, 11, 0.25);
  letter-spacing: 0.5px;
}

.hero-badge span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.5; }
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted-light);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.25rem;
  }
  .hero p {
    font-size: 1.05rem;
  }
  .hero-btns {
    flex-direction: column;
  }
}

/* ==========================================================================
   QUICK INFO CARDS (HERO BOTTOM)
   ========================================================================== */
.quick-info {
  margin-top: -60px;
  position: relative;
  z-index: 10;
  padding: 0 0 60px 0;
}

.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

@media (min-width: 640px) {
  .quick-info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .quick-info-grid { grid-template-columns: repeat(4, 1fr); }
}

.info-card {
  background-color: var(--secondary-color);
  border: 1px solid var(--border-light);
  padding: 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all var(--transition-normal);
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

.info-card-icon {
  background-color: rgba(245, 158, 11, 0.1);
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 20px;
  color: var(--accent-color);
}

.info-card-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.info-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.info-card p {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  line-height: 1.5;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */
.service-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-dark);
  transition: all var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.service-card-img {
  height: 200px;
  position: relative;
  overflow: hidden;
  background-color: #e2e8f0;
}

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

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

.service-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
}

.service-card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--primary-color);
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 4px;
  z-index: 2;
  text-transform: uppercase;
}

.service-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -48px;
  position: relative;
  z-index: 5;
  border: 4px solid var(--bg-white);
  margin-bottom: 16px;
}

.service-card-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

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

.service-card .btn-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
}

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

.service-card .btn-link svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  transition: transform var(--transition-fast);
}

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

/* ==========================================================================
   WHY CHOOSE US & COUNTERS
   ========================================================================== */
.why-us-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-us-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .why-us-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-us-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.why-us-item-icon {
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 4px;
}

.why-us-item-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.why-us-item h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.why-us-item p {
  font-size: 0.85rem;
  color: var(--text-muted-light);
}

/* Counter block */
.counter-section {
  background-color: var(--secondary-color);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 40px;
}

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

@media (min-width: 640px) {
  .counter-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.counter-item h3 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 6px;
  line-height: 1;
}

.counter-item p {
  font-size: 0.95rem;
  color: var(--text-muted-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   HOW IT WORKS (STEPS)
   ========================================================================== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  position: relative;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step-card {
  background-color: var(--secondary-color);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.step-card:hover {
  border-color: var(--accent-color);
}

.step-number {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  user-select: none;
  transition: color var(--transition-normal);
}

.step-card:hover .step-number {
  color: rgba(245, 158, 11, 0.05);
}

.step-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--accent-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.step-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  line-height: 1.6;
}

/* ==========================================================================
   LOCATIONS
   ========================================================================== */
.location-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .location-list { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .location-list { grid-template-columns: repeat(6, 1fr); }
}

.location-item {
  background-color: var(--bg-white);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 20px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.location-item:hover {
  background-color: var(--primary-color);
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   GALLERY & LIGHTBOX
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

@media (min-width: 640px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 250px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(11, 15, 25, 0.9) 0%, rgba(11, 15, 25, 0.2) 60%);
  opacity: 0;
  transition: opacity var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.gallery-overlay h3 {
  font-size: 1.15rem;
  font-weight: 700;
  transform: translateY(10px);
  transition: transform var(--transition-normal);
}

.gallery-overlay p {
  font-size: 0.8rem;
  color: var(--accent-color);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  transform: translateY(10px);
  transition: transform var(--transition-normal) 0.05s;
}

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

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

.gallery-item:hover .gallery-overlay h3,
.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

/* Lightbox Modal */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(3, 7, 18, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  z-index: 2000;
  transition: opacity var(--transition-normal);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.lightbox-caption {
  color: var(--text-light);
  margin-top: 15px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2.5rem;
  color: var(--text-light);
  cursor: pointer;
  transition: color var(--transition-fast);
}

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

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--text-light);
  padding: 16px;
  cursor: pointer;
  user-select: none;
  transition: color var(--transition-fast);
}

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

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

@media (max-width: 768px) {
  .lightbox-nav {
    padding: 8px;
    font-size: 1.5rem;
  }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}

/* ==========================================================================
   TESTIMONIALS (REVIEW SLIDER)
   ========================================================================== */
.testimonial-slider-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 0 40px;
}

.testimonial-slider {
  position: relative;
  min-height: 250px;
  overflow: hidden;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
  text-align: center;
  padding: 20px 0;
}

.testimonial-slide.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  position: relative; /* Take up height layout when active */
}

.testimonial-stars {
  color: var(--accent-color);
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 400;
}

.testimonial-author {
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-date {
  font-size: 0.8rem;
  color: var(--text-muted-light);
  margin-top: 4px;
  display: block;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.testimonial-dot.active {
  background-color: var(--accent-color);
  transform: scale(1.2);
}

.section-bg-light .testimonial-text {
  color: var(--text-dark);
}
.section-bg-light .testimonial-dot {
  background-color: rgba(0, 0, 0, 0.15);
}
.section-bg-light .testimonial-dot.active {
  background-color: var(--primary-color);
}
.section-bg-light .testimonial-date {
  color: var(--text-muted-dark);
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background-color: var(--secondary-color);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.accordion-item.active {
  border-color: var(--accent-color);
}

.accordion-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.accordion-header h3 {
  font-size: 1.05rem;
  font-weight: 600;
  padding-right: 16px;
  line-height: 1.5;
}

.accordion-icon {
  flex-shrink: 0;
  transition: transform var(--transition-normal);
  color: var(--accent-color);
}

.accordion-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

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

.accordion-content-inner {
  padding: 0 24px 24px 24px;
  font-size: 0.95rem;
  color: var(--text-muted-light);
  line-height: 1.6;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.section-bg-light .accordion-item {
  background-color: var(--bg-white);
  border-color: var(--border-dark);
  color: var(--text-dark);
}
.section-bg-light .accordion-item.active {
  border-color: var(--primary-color);
}
.section-bg-light .accordion-content-inner {
  color: var(--text-muted-dark);
  border-top: 1px solid var(--border-dark);
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 4fr 5fr;
  }
}

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

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

.contact-info-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(245, 158, 11, 0.1);
  color: var(--accent-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.contact-info-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-text p, .contact-info-text a {
  font-size: 0.95rem;
  color: var(--text-muted-light);
}

.section-bg-light .contact-info-text p, 
.section-bg-light .contact-info-text a {
  color: var(--text-muted-dark);
}

/* Maps Wrapper */
.map-wrapper {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  height: 250px;
  border: 1px solid var(--border-light);
  background-color: var(--secondary-color);
}

.section-bg-light .map-wrapper {
  border-color: var(--border-dark);
}

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

/* Contact Form */
.contact-form {
  background-color: var(--secondary-color);
  border: 1px solid var(--border-light);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.section-bg-light .contact-form {
  background-color: var(--bg-white);
  border-color: var(--border-dark);
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-bg-light .form-group label {
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  background-color: var(--primary-color);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 12px 16px;
  color: var(--text-light);
  transition: all var(--transition-fast);
}

.section-bg-light .form-control {
  background-color: var(--bg-light);
  border-color: var(--border-dark);
  color: var(--text-dark);
}

.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

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

/* KVKK checkbox */
.kvkk-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font-size: 0.85rem;
  color: var(--text-muted-light);
}

.section-bg-light .kvkk-check {
  color: var(--text-muted-dark);
}

.kvkk-check input {
  margin-top: 4px;
  flex-shrink: 0;
  accent-color: var(--accent-color);
  width: 16px;
  height: 16px;
}

.kvkk-check a {
  text-decoration: underline;
  color: var(--accent-color);
}

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

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--primary-color);
  border-top: 1px solid var(--border-light);
  padding: 80px 0 120px 0; /* extra bottom padding for mobile bar */
  font-size: 0.9rem;
  color: var(--text-muted-light);
}

@media (min-width: 768px) {
  .footer {
    padding-bottom: 40px; /* Reset on desktop */
  }
}

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

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-widget h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

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

.footer-about p {
  margin-top: 15px;
  line-height: 1.7;
}

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

.social-btn {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  border: 1px solid var(--border-light);
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.social-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

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

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

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

.footer-links a::before {
  content: '→';
  font-size: 0.8rem;
  color: var(--accent-color);
}

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

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

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-color);
  flex-shrink: 0;
  margin-top: 2px;
}

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

/* Bottom Copy */
.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-links a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* ==========================================================================
   PERSISTENT MOBILE ACTION BAR & FLOATING WHATSAPP
   ========================================================================== */
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xl);
  z-index: 998;
  color: white;
  transition: all var(--transition-normal);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

/* Mobile Action Bar */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
  border-top: 1px solid var(--border-light);
  z-index: 999;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
}

.mobile-action-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 64px;
}

.mobile-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  color: white;
  height: 100%;
}

.mobile-action-btn-call {
  background-color: var(--accent-color);
  color: var(--primary-color);
}

.mobile-action-btn-whatsapp {
  background-color: #25d366;
  color: white;
}

.mobile-action-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 768px) {
  .mobile-action-bar {
    display: block;
  }
  .whatsapp-float {
    bottom: 84px; /* offset to avoid covering the bottom action bar */
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.breadcrumb-section {
  padding: 120px 0 40px 0;
  background-color: var(--secondary-color);
  border-bottom: 1px solid var(--border-light);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted-light);
}

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

.breadcrumbs-separator {
  color: var(--text-muted-light);
}

.breadcrumbs-current {
  color: var(--text-light);
  font-weight: 600;
}

/* ==========================================================================
   TOAST NOTIFICATION MODAL
   ========================================================================== */
.toast-container {
  position: fixed;
  top: 90px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
  width: calc(100% - 48px);
}

.toast {
  background-color: var(--secondary-color);
  border-left: 4px solid var(--accent-color);
  padding: 16px 20px;
  border-radius: 6px;
  box-shadow: var(--shadow-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transform: translateX(120%);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55), opacity 0.3s ease;
}

.toast.active {
  transform: translateX(0);
  opacity: 1;
}

.toast-message {
  font-size: 0.9rem;
  font-weight: 500;
}

.toast-close {
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--text-muted-light);
  transition: color var(--transition-fast);
}

.toast-close:hover {
  color: var(--text-light);
}

.toast-success { border-left-color: #25d366; }
.toast-error { border-left-color: #ef4444; }
.toast-warning { border-left-color: #f59e0b; }

/* ==========================================================================
   SUBPAGE SPECIFICS
   ========================================================================== */
.page-title {
  font-size: 2.75rem;
  font-weight: 800;
  margin-top: 10px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.about-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}

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

.legal-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 32px 0 16px 0;
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--text-muted-dark);
}

.legal-content ul {
  margin-bottom: 24px;
  padding-left: 20px;
  list-style: disc;
  color: var(--text-muted-dark);
}

.legal-content li {
  margin-bottom: 8px;
}
