:root {
  --primary: #d35400;
  --primary-dark: #ba4a00;
  --secondary: #2c3e50;
  --light: #f8f9fa;
  --dark: #212529;
  --gray: #6c757d;
  --accent: #e67e22;
  --success: #27ae60;
  --warning: #f39c12;
  /* layout helpers */
  --topbar-height: 55px;
  --header-height: 72px;
  --offer-height: 50px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Body padding to account ONLY for topbar + fixed header */
body {
  padding-top: calc(var(--topbar-height) + var(--header-height));
}

body.offer-banner-closed {
  padding-top: calc(var(--topbar-height) + var(--header-height));
}

/* ===== TOPBAR ===== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0f172a;
  color: #fff;
  font-size: 14px;
  z-index: 2000;
  padding: 6px 16px;
  height: var(--topbar-height);
}

.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.topbar-left a {
  color: #fff;
  text-decoration: none;
  margin-right: 12px;
  white-space: nowrap;
}

.topbar .sep {
  margin: 0 6px;
  opacity: .5;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.btn.cta {
  background: #fb8500;
  color: #111;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.lang-switch select {
  padding: 4px 6px;
  border-radius: 4px;
  border: none;
  font-size: 14px;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topbar a {
  text-decoration: none !important;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.topbar a:hover {
  color: var(--primary);
}

/* Offer banner now sits IN THE FLOW under the header (not fixed) */
.offer-banner {
  position: relative;
  width: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: white;
  text-align: center;
  padding: 10px 40px;
  font-size: 0.9rem;
  z-index: 1;           /* normal stacking */
  min-height: var(--offer-height);
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

/* When user closes banner via JS: just hide it (hero will move up smoothly) */
body.offer-banner-closed .offer-banner {
  display: none;
}

.offer-banner .close-offer {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: var(--topbar-height); /* just under topbar */
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, .1);
  z-index: 1800;
  transition: all 0.3s ease;
  padding: 12px 0;
  height: var(--header-height);
}


#header.scrolled {
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 55px;
  width: auto;
  object-fit: contain;
  display: block;
}

#header.scrolled .logo img {
  height: 48px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-menu a {
  text-decoration: none;
  color: var(--dark);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;               /* still hidden on desktop */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;     /* ❌ no orange box */
  border-radius: 0;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 2001;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;            /* black lines */
  margin: 3px 0;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* ===== MOBILE NAVIGATION - DROPDOWN ===== */
@media (max-width: 768px) {
  .header-container {
    position: relative;
    padding: 0 20px;
  }

  #header {
    padding: 10px 0;
  }

  .logo img {
    height: 40px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    right: 12px;
    left: 12px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    flex-direction: column;
    align-items: stretch;
    padding: 4px 0;
    margin-top: 8px;
    list-style: none;
    overflow: hidden;

    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: max-height 0.25s ease, opacity 0.25s ease;
    z-index: 1900;
  }

  .nav-menu.mobile-active {
    max-height: 70vh;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu li {
    margin: 0;
    width: 100%;
  }

  .nav-menu a {
    display: block;
    padding: 6px 12px;
    font-size: 0.9rem;
    text-align: left;
  }

  /* Topbar simplification on mobile */
  .topbar-left a {
    font-size: 0;
  }
  .topbar-left a i {
    font-size: 18px;
    margin-right: 0;
  }

  .topbar .btn.cta {
    display: none !important;
  }

  .topbar-container {
    justify-content: space-between;
    align-items: center;
  }

  .topbar-left,
  .topbar-right {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .socials a {
    font-size: 16px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Mobile offer banner */
  .offer-banner {
    padding: 12px 40px 12px 15px;
    font-size: 0.85rem;
    line-height: 1.3;
  }

  .offer-banner .close-offer {
    right: 10px;
  }
}



body.menu-open {
  overflow: hidden;
}

/* ===== HERO SECTION - FIXED ===== */
.hero {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
              url('https://images.unsplash.com/photo-1541888946425-d81bb19240f5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8OXx8Y29uc3RydWN0aW9ufGVufDB8fDB8fHww&auto=format&fit=crop&w=1600&q=80')
              center/cover no-repeat;
  color: #fff;
  padding: 80px 40px 60px;
  position: relative;
  display: flex;
  align-items: center;
  min-height: calc(100vh - var(--topbar-height) - var(--header-height)); /* no offer-height */
}


body.offer-banner-closed .hero {
  min-height: calc(100vh - var(--topbar-height) - var(--header-height));
  padding-top: 60px;
}

.hero .container {
  width: 100%;
}

.hero-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
  flex-wrap: nowrap;
}

.hero-text {
  flex: 1;
  min-width: 280px;
  text-align: left;
  max-width: 600px;
}

.appointment-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 30px;
  border-radius: 12px;
  color: var(--dark);
  width: 400px;
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-top: 0;
}

.hero h1 {
  font-size: 3.5em;
  margin-bottom: 15px;
  color: #fff;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-tagline {
  font-size: 1.8em;
  margin-bottom: 25px;
  font-weight: 300;
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  line-height: 1.6;
}

.urgency-badge {
  background: linear-gradient(90deg, var(--warning), var(--accent));
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(243, 156, 18, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin: 25px 0;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.hero-buttons .btn {
  min-width: 180px;
}

.trust-badges {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 0.9rem;
}

.trust-badge i {
  font-size: 1.5rem;
  color: var(--accent);
}

.form-header {
  text-align: center;
  margin-bottom: 20px;
}

.form-header h3 {
  color: var(--secondary);
  margin-bottom: 5px;
}

.form-badge {
  display: inline-block;
  background: var(--success);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-top: 5px;
}

.appointment-form form {
  display: grid;
  gap: 15px;
  width: 100%;
}

input, textarea, select {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1em;
  font-family: 'Open Sans', sans-serif;
  width: 100%;
  transition: border 0.3s;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  outline: none;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

/* Mobile Hero Fixes */
@media (max-width: 768px) {
  .hero {
    padding: 60px 20px 40px;
    min-height: auto;
    text-align: center;
  }
  
  body.offer-banner-closed .hero {
    padding-top: 50px;
  }
  
  .hero-content {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  
  .hero-text {
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
  
  .appointment-form {
    width: 100%;
    max-width: 100%;
    margin-top: 20px;
  }
  
  .hero h1 {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  
  .hero-tagline {
    font-size: 1.3em;
    margin-bottom: 20px;
  }
  
  .hero-subtitle {
    font-size: 1em;
    margin-bottom: 25px;
  }
  
  .trust-badges {
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
  }
  
  .trust-badge {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .urgency-badge {
    margin-top: 10px;
    margin-bottom: 25px;
  }
}

/* ===== BUTTON STYLES ===== */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background: var(--primary);
  color: white;
  text-decoration: none;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(211, 84, 0, 0.3);
}

.btn:active {
  transform: translateY(0);
}

.btn-large {
  padding: 14px 32px;
  font-size: 1.1rem;
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
}

.btn-success {
  background: var(--success);
}

.btn-success:hover {
  background: #219653;
}

.btn-warning {
  background: transparent;           /* no fill initially */
  color: #ffffff;                    /* white text */
  border: 2px solid #ffffff;         /* white outline */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-warning:hover {
  background: #ffffff;
  color: var(--primary);             /* or #d35400 */
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.slider {
  width: 100%;
}

section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 80px 40px 60px;
  position: relative;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  width: 100%;
}

h2 {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: var(--secondary);
  position: relative;
  display: inline-block;
}

h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2em;
  color: var(--gray);
  max-width: 800px;
  margin: 0 auto;
}

/* ===== STATS SECTION ===== */
.stats {
  background: var(--secondary);
  color: white;
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item {
  padding: 20px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 10px;
}

/* ===== SPECIALIZATION SECTION ===== */
.specialization {
  background: #fff;
  padding: 60px 0;
}

.specialization-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.specialization-card {
  background: var(--light);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.specialization-card:hover {
  transform: translateY(-5px);
}

.specialization-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.specialization-info {
  padding: 25px;
}

.specialization-info h3 {
  color: var(--secondary);
  margin-bottom: 15px;
}

/* ===== PROJECTS SECTION ===== */
.projects {
  background: var(--light);
  padding: 80px 20px;
  text-align: center;
}

.project-filters {
  text-align: center;
  margin-bottom: 40px;
}

.filter-btn {
  background: transparent;
  border: 1px solid #ccc;
  padding: 8px 18px;
  margin: 4px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: #d65a00;
  color: #fff;
  border-color: #d65a00;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  align-items: stretch;
  margin-bottom: 40px;
}

.project-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  flex-shrink: 0;
}

.project-info {
  padding: 20px;
  color: #1e293b;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.project-info h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 10px;
}

.more-projects {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 25px;
  width: 100%;
}

.more-projects.show {
  display: grid;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== DESIGN SERVICES ===== */
.design-services {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}

.design-tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 35px;
  flex-wrap: wrap;
  gap: 10px;
}

.design-tab {
  padding: 12px 28px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.design-tab.active,
.design-tab:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.design-content {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}

.design-content.active {
  display: block;
}

.design-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.design-feature {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

.design-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* ===== PROCESS SECTION ===== */
.process {
  background: #fff;
  padding: 60px 0;
}

.process-steps {
  max-width: 1200px;
  margin: 60px auto 0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.process-step {
  background: #fff;
  padding: 30px 22px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transform: translateY(50px);
  transition: 0.8s ease;
  position: relative;
}

.process-step.animate {
  opacity: 1;
  transform: translateY(0);
}

.process-step .step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 18px;
}

.process-steps::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary), rgba(0, 0, 0, 0));
  transform: translateX(-50%);
  opacity: 0.35;
  border-radius: 10px;
}

.process-step::after {
  content: "";
  width: 14px;
  height: 14px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: -38px;
  transform: translateX(-50%);
  box-shadow: 0 0 14px var(--primary);
}

.process-step:last-child::after {
  display: none;
}

@media (min-width: 900px) {
  .process-steps {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }

  .process-step {
    width: 200px;
    margin: 0;
  }

  .process-steps::before {
    display: none;
  }

  .process-step::after {
    display: none;
  }

  .process-step:not(:last-child)::before {
    content: "";
    position: absolute;
    top: calc(30px + 30px);
    right: -70px;
    width: 140px;
    height: 4px;
    background: var(--primary);
    border-radius: 10px;
    opacity: 0.45;
  }

  .process-step:last-child::before {
    content: none;
  }
}

/* ===== GUARANTEE SECTION ===== */
.guarantee {
  background: #fff;
  padding: 60px 0;
  text-align: center;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.guarantee-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.guarantee-card:hover {
  transform: translateY(-5px);
}

.guarantee-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

/* ===== CLIENT CAROUSEL ===== */
.clients {
  background: #fff;
  padding: 60px 0;
}

.client-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 60px;
}

.client-carousel {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 20px 10px;
  cursor: grab;
}

.client-carousel:active {
  cursor: grabbing;
}

.client-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: calc(33.333% - 14px);
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #f0f0f0;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}

.client-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.client-card:hover::before {
  transform: scaleX(1);
}

.client-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  border-color: var(--primary);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  z-index: 10;
}

.carousel-btn:hover:not(:disabled) {
  background: var(--primary);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(211, 84, 0, 0.3);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: translateY(-50%);
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.carousel-indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.carousel-indicator::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transition: left 0.3s ease;
}

.carousel-indicator.active::after {
  left: 0;
}

.carousel-indicator.active {
  transform: scale(1.2);
  box-shadow: 0 0 0 2px rgba(211, 84, 0, 0.2);
}

.carousel-indicator:hover:not(.active) {
  background: #ccc;
  transform: scale(1.1);
}

.client-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
  position: relative;
  padding-bottom: 8px;
}

.client-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

.client-card .contact {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.client-card .contact::before {
  content: '📧';
  font-size: 0.8rem;
}

.client-card .feedback {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  font-style: italic;
  position: relative;
  padding-left: 24px;
  margin: 0;
}

.client-card .feedback::before {
  content: "“";
  font-size: 3rem;
  color: var(--primary);
  position: absolute;
  left: 0;
  top: -8px;
  opacity: 0.3;
  font-family: serif;
  line-height: 1;
}

@media (max-width: 1024px) {
  .client-card {
    flex: 0 0 calc(50% - 10px);
    min-width: calc(50% - 10px);
  }
  
  .client-carousel-container {
    padding: 0 50px;
  }
}

@media (max-width: 768px) {
  .client-carousel-container {
    padding: 0 20px;
  }
  
  .client-card {
    flex: 0 0 calc(100% - 10px);
    min-width: calc(100% - 10px);
    padding: 25px;
  }
  
  .carousel-btn {
    display: none;
  }
  
  .client-card h3 {
    font-size: 1.2rem;
  }
  
  .client-card .feedback {
    font-size: 0.9rem;
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .client-carousel-container {
    padding: 0 15px;
  }
  
  .client-card {
    padding: 20px;
  }
  
  .carousel-indicators {
    margin-top: 30px;
  }
  
  .carousel-indicator {
    width: 12px;
    height: 12px;
  }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: #fff;
  padding: 60px 0;
}

.testimonials-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-video {
  background: var(--light);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-video i {
  font-size: 4rem;
  color: var(--primary);
  cursor: pointer;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-slide {
  background: var(--light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  margin-bottom: 20px;
  display: none;
}

.testimonial-slide.active {
  display: block;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  padding: 0 30px;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 3rem;
  color: var(--primary);
  position: absolute;
  opacity: 0.3;
}

.testimonial-text::before {
  top: -20px;
  left: 0;
}

.testimonial-text::after {
  bottom: -40px;
  right: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h4 {
  color: var(--secondary);
  margin-bottom: 5px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: white;
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner .btn {
  display: inline-block;
  margin: 5px 10px;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 20px;
}

.cta-banner h2:after {
  background: #fff;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0 30px;
}

.countdown-item {
  background: rgba(255,255,255,0.2);
  padding: 10px 15px;
  border-radius: 5px;
  min-width: 70px;
}

.countdown-number {
  font-size: 1.8rem;
  font-weight: 700;
}

.countdown-label {
  font-size: 0.8rem;
  opacity: 0.8;
}

/* ===== FAQ SECTION ===== */
.faq {
  background: var(--light);
  padding: 60px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
}

.faq-answer {
  padding: 0 20px 20px;
  display: none;
}

.faq-active .faq-answer {
  display: block;
}

/* ===== CONTACT SECTION ===== */
.contact {
  background: #ffffff;
  padding: 80px 0;
}

.contact-layout {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.contact-logo {
  flex: 0 0 34%;
  text-align: center;
}

.contact-logo img {
  max-width: 380px;
  width: 100%;
  height: auto;
  margin-bottom: 18px;
}

.contact-logo h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

.contact-card {
  flex: 1;
  position: relative;
}

.contact-card-inner {
  background: #ffffff;
  border-radius: 32px;
  padding: 40px 45px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  border: 1px solid #e5e7eb;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  position: relative;
}

.contact-card-inner::before {
  content: "";
  position: absolute;
  inset: -12px -14px;
  border-radius: 40px;
  border: 2px solid rgba(148, 163, 184, 0.3);
  z-index: -1;
}

.contact-info {
  flex: 1.1;
}

.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.contact-info p {
  font-size: 0.95rem;
  color: #555;
}

.contact-details {
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  color: #fff;
  flex-shrink: 0;
}

.contact-item p {
  margin: 2px 0;
}

.contact-form {
  flex: 0.9;
  padding-left: 30px;
  border-left: 1px solid #e5e7eb;
}

.contact-form .form-header {
  text-align: left;
  margin-bottom: 15px;
}

.contact-form h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.contact-form p {
  font-size: 0.85rem;
  color: #555;
}

.contact-form .form-badge {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.08);
  color: #059669;
}

.contact-form form input,
.contact-form form select,
.contact-form form textarea {
  width: 100%;
  padding: 9px 11px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid #d1d5db;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form form input:focus,
.contact-form form select:focus,
.contact-form form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn.btn-large {
  width: 100%;
  margin-top: 5px;
}

.contact-note {
  text-align: center;
  font-size: 0.75rem;
  margin-top: 8px;
  color: #6b7280;
}

@media (max-width: 992px) {
  .contact-layout {
    flex-direction: column;
    align-items: center;
  }

  .contact-logo {
    flex: 0 0 auto;
  }

  .contact-card-inner {
    flex-direction: column;
    padding: 30px 24px;
  }

  .contact-form {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #e5e7eb;
    padding-top: 20px;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .contact-logo img {
    max-width: 260px;
  }

  .contact-card-inner {
    padding: 24px 18px;
  }
}

/* ===== FLOATING ELEMENTS ===== */
.floating-cta {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: var(--success);
  color: white;
  padding: 15px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 998;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.floating-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  background: #219653;
}

.live-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 3000;
}

#chat-toggle {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #f97316;
  color: #fff;
  border: none;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-options {
  position: absolute;
  bottom: 65px;
  right: 5px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.chat-options a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #0f172a;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

.chat-options a:hover {
  background: #f97316;
  transform: translateY(-3px);
}

.live-chat.active .chat-options {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.download-buttons {
  position: fixed;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 769px) {
  .download-buttons {
    bottom: 100px;
    left: 20px;
  }

  .download-btn {
    background: var(--primary);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    transition: background 0.3s ease, transform 0.3s ease;
    max-width: 140px;
  }

  .download-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
  }
}

@media (max-width: 768px) {
  .download-buttons {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    gap: 8px;
  }

  .download-btn {
    position: fixed;
    left: 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    border-radius: 0;
    width: 40px;
    height: auto;
    padding: 10px 5px;
    justify-content: center;
    font-size: 12px;
    gap: 4px;
    background: var(--primary);
    color: #fff;
  }

  .download-btn .custom-download-icon {
    margin-bottom: 8px;
  }

  .download-btn.brochure {
    top: 40%;
  }

  .download-btn.packages {
    top: 60%;
  }

  .floating-cta {
    display: none;
  }
}

/* ===== PROGRESS BAR ===== */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--primary);
  width: 0;
  z-index: 1500;
  transition: width 0.2s;
}

/* ===== EXIT POPUP ===== */
.exit-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.exit-popup .popup-content {
  background: #fff;
  width: 90%;
  max-width: 400px;
  padding: 25px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: popupFade 0.3s ease;
}

.exit-popup .close-popup {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #333;
}

@keyframes popupFade {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.8em;
  }

  .hero-tagline {
    font-size: 1.5em;
  }

  .testimonials-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8em;
  }

  .btn {
    display: block;
    margin: 10px 0;
    text-align: center;
  }

  .appointment-form {
    padding: 20px;
  }

  .countdown {
    gap: 5px;
  }

  .countdown-item {
    min-width: 60px;
    padding: 8px 10px;
  }

  .countdown-number {
    font-size: 1.5rem;
  }
}

