/* 
  =========================================
  New Palette: Black, White, & Yellow (#FFD700)
  High Contrast, Professional & Grounded
  =========================================
*/

:root {
  --yellow: #facc15;
  --yellow-dark: #eab308;
  --black: #111827;
  --dark: #1f2937;
  --white: #ffffff;
  --light: #f9fafb;
  --gray: #6b7280;
  --border: #e5e7eb;

  /* High-performance font fallback stack */
  --font-main: 'Assistant', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji';
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 20px;
  --section-padding: 100px 0;
  --section-padding-mobile: 60px 0;
  --container-width: 1200px;
}

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

body {
  font-family: var(--font-main);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
}

/* Promo Banner */
.promo-banner {
  background: var(--yellow);
  color: var(--black);
  padding: 12px 20px;
  text-align: center;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1000;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.promo-banner strong {
  font-weight: 900;
  color: var(--black);
}

.footer-link {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  margin: 0 5px;
}

.footer-link:hover {
  color: var(--yellow);
  text-decoration: underline;
}

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

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 25px;
}

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

.bg-dark {
  background: var(--black);
}

.bg-yellow {
  background: var(--yellow);
}

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

.text-dark {
  color: var(--black);
}

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

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.align-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

.card-shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.rounded-img {
  border-radius: var(--radius);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 800;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 4px 15px rgba(250, 204, 21, 0.3);
}

.btn-primary:hover {
  background: var(--black);
  color: var(--yellow);
  transform: translateY(-3px);
}

.btn-dark:hover {
  background: var(--dark);
  transform: scale(1.05);
}

.btn-call {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 8px 25px rgba(250, 204, 21, 0.4);
}

.btn-call:hover {
  background: var(--white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

.btn-whatsapp-large {
  background: #25D366;
  color: white;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-large:hover {
  background: #1EBE5D;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  z-index: 1001;
  /* Bump over promo banner */
  border-bottom: 2px solid var(--yellow);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
}

/* Hero */
.hero-section {
  position: relative;
  padding: 90px 0 0 0;
  /* Remove bottom padding so image hits bottom, reduce top padding for balance */
  background: url('photos/3.webp') center/cover no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero-overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}

.hero-container-split {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  /* RTL layout */
  align-items: center;
  justify-content: flex-start;
  /* Push text to the right side of container */
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.hero-text {
  flex: 0 0 55%;
  /* Restricts text to 55% width */
  max-width: 55%;
  text-align: right;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 80px;
}

.hero-person-wrapper {
  position: absolute;
  bottom: 0px;
  left: -30px;
  /* Small break out to the left for standard container margins */
  height: 68vh;
  /* Respect standard layout width without overlapping text */
  max-width: 45%;
  z-index: 2;
  pointer-events: none;
}

.hero-person-abs {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom left;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.6));
  animation: fadeInLeft 1.2s ease-out forwards;
}

.hero-person-badge {
  position: absolute;
  bottom: 20%;
  right: -20px;
  /* Overlap the image slightly */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-right: 4px solid var(--yellow);
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  text-align: right;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.8s forwards;
  pointer-events: auto;
}

.badge-name {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--yellow);
  margin-bottom: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.badge-subtitle {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-cta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
}

.micro-copy {
  flex: 0 0 100%;
  /* Ensure it stays on a new line below buttons */
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
}

.micro-copy i {
  color: var(--yellow);
}

.hero-h1 {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
  color: var(--white);
  line-height: 1.1;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  text-align: right;
}

.hero-title-small {
  font-size: 2.4rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  order: 1;
}

.hero-title-main {
  font-size: 4.8rem;
  color: var(--yellow);
  font-weight: 900;
  line-height: 1;
  border-bottom: 8px solid var(--yellow);
  display: inline-block;
  width: fit-content;
  padding-bottom: 5px;
  margin: 10px 0;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  order: 2;
}

.hero-title-medium {
  font-size: 3.4rem;
  color: var(--white);
  font-weight: 700;
  order: 3;
}


.hero-h2,
.hero-p {
  font-size: 1.65rem;
  color: #fff;
  margin-bottom: 25px;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  max-width: 800px;
  margin-right: 0;
  line-height: 1.6;
}

.availability-status {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #25D366;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
  animation: blink 1.5s infinite;
}

.status-dot {
  width: 12px;
  height: 12px;
  background-color: #25D366;
  border-radius: 50%;
  margin-left: 10px;
  box-shadow: 0 0 10px #25D366;
}

@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
    box-shadow: 0 0 2px #25D366;
  }

  100% {
    opacity: 1;
  }
}

.hero-cta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-cta .micro-copy {
  width: 100%;
  text-align: right;
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 1.05rem;
  margin-top: 5px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.hero-bullets {
  list-style: none;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
}

.hero-bullets li {
  position: relative;
  padding-right: 35px;
  font-weight: 600;
  font-size: 1.2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-bullets li i {
  position: absolute;
  right: 0;
  color: var(--yellow);
  font-size: 1.4rem;
}

/* Gallery */
.gallery-section {
  padding: var(--section-padding);
  background: var(--light);
}

/* Benefits Icons */
.benefits-icons-section {
  padding: 60px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.benefits-grid-new-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.benefit-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: var(--black);
  color: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: var(--transition);
}

.benefit-icon-item:hover .icon-circle {
  background: var(--yellow);
  color: var(--black);
  transform: scale(1.1);
}

.benefit-icon-item p {
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .benefits-grid-new-icons {
    grid-template-columns: 1fr 1fr;
    gap: 30px 15px;
  }
}

/* Specialties Carousel - Infinite Luxury Loop */
.specialties-section {
  padding: var(--section-padding);
  background: var(--white);
  overflow: hidden;
}

.carousel-container {
  width: 100%;
  position: relative;
  margin-top: 40px;
}

.carousel-wrapper {
  position: relative;
  display: block;
}

.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 30px;
  padding: 10px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
  width: 100%;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-slide {
  flex: 0 0 400px;
  scroll-snap-align: center;
  border-radius: var(--radius);
  overflow: hidden;
  height: 400px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  background: var(--white);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0.8;
  transform: scale(0.95);
}

.carousel-slide.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
}

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

.carousel-slide:hover img {
  transform: scale(1.08);
  /* slightly more pronounced hover */
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px 30px 30px;
  /* More padding at top of gradient */
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.95));
  color: var(--white);
  z-index: 2;
  text-align: right;
}

.slide-overlay h3 {
  font-size: 1.6rem;
  margin: 0;
  color: var(--yellow);
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: var(--black);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.carousel-btn:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  right: -25px;
}

.next-btn {
  left: -25px;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 15px;
}

.nav-dot {
  width: 10px;
  height: 10px;
  background: var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.nav-dot.active {
  background: var(--yellow);
  width: 25px;
  border-radius: 10px;
}

@media (max-width: 1300px) {
  .prev-btn {
    right: 10px;
  }

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

@media (max-width: 991px) {
  .carousel-slide {
    flex: 0 0 85%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .carousel-btn {
    display: none;
  }
}

@media (max-width: 768px) {
  .carousel-track {
    gap: 15px;
    padding: 0 10%;
  }

  .carousel-slide {
    flex: 0 0 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 60px;
  font-weight: 800;
  color: var(--black);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  right: 0;
  width: 60px;
  height: 4px;
  background: var(--yellow);
  border-radius: 2px;
}

.text-center.section-title::after {
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
}

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

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

.gallery-label {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: var(--yellow);
  color: var(--black);
  padding: 5px 15px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Steps */
/* New 4-Step Process Section */
.how-it-works-new {
  padding: 100px 0;
  background: var(--white);
}

.how-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 60px;
}

.how-step-card {
  position: relative;
  background: var(--white);
  padding: 60px 25px 40px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.04);
  /* Very subtle card border */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.how-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

.step-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  z-index: 5;
}

.step-icon-inner {
  font-size: 2.2rem;
  color: var(--black);
  margin-bottom: 25px;
  background: var(--white);
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 3px solid var(--yellow);
  box-shadow: 0 8px 20px rgba(250, 204, 21, 0.15);
  transition: var(--transition);
}

.how-step-card:hover .step-icon-inner {
  transform: scale(1.1);
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 10px 25px rgba(250, 204, 21, 0.3);
}

.how-step-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.35;
  color: #1a202c;
  max-width: 180px;
}

@media (max-width: 992px) {
  .how-steps-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .how-steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .how-step-card {
    padding: 40px 25px 35px;
  }
}

/* Middle CTA Strip */
.middle-cta-strip {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--black) 0%, #1a1e26 100%);
  color: var(--white);
  text-align: center;
  border-top: 4px solid var(--yellow);
  border-bottom: 4px solid var(--yellow);
  position: relative;
  overflow: hidden;
  margin: 60px 0;
}

.middle-cta-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(250, 204, 21, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.middle-cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.middle-cta-content h2 {
  font-size: 3rem;
  margin-bottom: 30px;
  line-height: 1.2;
}

.middle-cta-content p {
  font-size: 1.3rem;
  margin-bottom: 35px;
  color: #d1d5db;
}

.middle-cta-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* Services New */
.services-section {
  padding: 100px 0;
  background: var(--light);
}

.services-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.service-box {
  background: var(--white);
  padding: 40px 20px;
  text-align: center;
  border-radius: var(--radius);
  transition: var(--transition);
}

.service-box i {
  font-size: 3rem;
  color: var(--yellow);
  margin-bottom: 20px;
  display: block;
}

.service-box h4 {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--black);
}

.service-box:hover {
  transform: translateY(-10px);
}

.section-cta-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.section-cta-btns.cta-right {
  justify-content: flex-start;
}

@media (min-width: 768px) {
  .section-cta-btns.cta-right {
    flex-wrap: nowrap;
  }
}

@media (max-width: 600px) {
  .section-cta-btns {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .section-cta-btns .btn {
    font-size: 1.3rem;
    padding: 15px 30px;
  }
}

/* Base Styles */
.value-bullets {
  list-style: none;
}

.value-bullets li {
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  gap: 15px;
  align-items: center;
}

/* Stats Row - Updated for 2 items */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 150px;
  /* Wider gap for 2 items */
  padding: 80px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.stat-box {
  text-align: center;
  transition: var(--transition);
}

.stat-box:hover {
  transform: scale(1.05);
}

.stat-box .number {
  font-size: 5rem;
  font-weight: 900;
  display: block;
  color: var(--yellow);
  text-shadow: 0 0 30px rgba(250, 204, 21, 0.4);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-box .label {
  font-size: 1.3rem;
  opacity: 0.9;
  letter-spacing: 1px;
}

.trust-section {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .trust-section {
    padding: 60px 0;
  }

  .stats-row {
    padding: 40px 0;
    gap: 40px;
    /* Much tighter for mobile */
  }

  .stat-box .number {
    font-size: 3.5rem;
    /* Smaller for mobile */
  }
}

/* Testimonials - Premium Redesign */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 100px;
}

.testi-card {
  background: #1c222d;
  /* Slightly lighter than bg-dark */
  padding: 50px 40px;
  border-radius: 20px;
  border-right: 5px solid var(--yellow);
  /* RTL sidebar accent */
  position: relative;
  transition: var(--transition);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testi-card:hover {
  transform: translateY(-10px);
  background: #242b38;
}

.quote-icon {
  position: absolute;
  top: 30px;
  left: 30px;
  /* Opposite of border */
  font-size: 2.5rem;
  color: var(--yellow);
  opacity: 0.15;
}

.testi-card p {
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e2e8f0;
  position: relative;
  z-index: 2;
}

.testi-card cite {
  font-weight: 800;
  color: var(--yellow);
  font-size: 1.1rem;
  display: block;
}

/* Emotional */
.emotional-section {
  padding: 100px 0;
}

.mission-text {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 1.3rem;
}

.mission-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
}

/* FAQ */
.faq-section {
  padding: var(--section-padding);
  background: var(--light);
}

.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 800;
  font-size: 1.2rem;
}

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

.faq-item.active .faq-answer {
  padding-bottom: 20px;
  max-height: 200px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
  color: var(--yellow-dark);
}

/* Footer */
.footer {
  padding: var(--section-padding) 0 40px;
}

.footer p {
  margin-top: 20px;
}

.social-icons {
  margin-top: 20px;
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Animations */
.scroll-anim {
  opacity: 0;
  transform: translateY(30px);
  transition: 1s ease-out;
}

.scroll-anim.in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-right {
  animation: fadeInRight 1s forwards;
}

.fade-in-left {
  animation: fadeInLeft 1s forwards;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ==================================================
   Benefits Icons Section
   ================================================== */
.benefits-icons-section {
  padding: 60px 0;
  background: var(--white);
  position: relative;
  z-index: 2;
}

.benefits-grid-new-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  text-align: center;
}

.benefit-icon-item {
  flex: 1 1 200px;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  background: transparent;
  transition: var(--transition);
}

.benefit-icon-item:hover {
  transform: translateY(-8px);
}

.benefit-icon-item .icon-circle {
  width: 90px;
  height: 90px;
  background: var(--white);
  color: var(--black);
  border: 4px solid var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 25px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(234, 179, 8, 0.15);
}

.benefit-icon-item:hover .icon-circle {
  background: var(--yellow);
  color: var(--black);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(234, 179, 8, 0.3);
}

.benefit-icon-item p {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--black);
  margin: 0;
  line-height: 1.5;
}

/* Visual Separation for Desktop */
@media (min-width: 992px) {
  .benefit-icon-item:not(:last-child) {
    position: relative;
  }

  .benefit-icon-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -25px;
    /* exactly midway in the 50px gap */
    width: 2px;
    height: 70%;
    transform: translateY(-50%);
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.08), transparent);
  }
}

/* ==================================================
   Redesigned CTA & Footer & Promo Banner
   ================================================== */

/* Promo Banner */
.promo-banner {
  background: var(--yellow);
  color: var(--black);
  text-align: center;
  padding: 10px 15px;
  font-size: 1.15rem;
  font-weight: 600;
  position: relative;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.promo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--yellow);
  padding: 4px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
}

.promo-link:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

/* Empathy / Problem-Solution Section */
.empathy-section {
  padding: 100px 0;
  background-color: var(--light);
}

.empathy-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  border-right: 6px solid var(--yellow);
}

.empathy-content .section-title {
  text-align: right;
  margin-bottom: 25px;
  font-size: 2.4rem;
  color: var(--black);
}

.empathy-content .section-title::after {
  display: none;
  /* No center underline */
}

.lead-text {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 30px;
  line-height: 1.8;
}

.solution-highlight {
  font-size: 1.35rem;
  color: var(--black);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(250, 204, 21, 0.15);
  padding: 12px 25px;
  border-radius: 12px;
  border-right: 4px solid var(--yellow);
  display: inline-flex;
}

.solution-text {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.7;
  color: #333;
}

.empathy-checklist {
  background: #fdfdfd;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.02);
  border: 1px solid #f1f1f1;
}

.custom-check-list {
  list-style: none;
  /* explicitly remove default bullets */
  padding: 0;
  margin: 0;
}

.custom-check-list li {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 25px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  line-height: 1.4;
}

.custom-check-list li:last-child {
  margin-bottom: 0;
}

.custom-check-list li i {
  color: var(--yellow);
  font-size: 1.5rem;
  margin-top: 2px;
  filter: drop-shadow(0 2px 4px rgba(250, 204, 21, 0.4));
}

/* Base list reset */
ul.custom-check-list li::before {
  content: none !important;
}

/* Final CTA - UX Expert Redesign */
.final-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--yellow) 0%, #eab308 100%);
  position: relative;
  overflow: hidden;
}

.final-cta .section-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 25px;
  color: var(--black);
  display: block;
  text-align: center;
}

.final-cta .section-title::after {
  display: none;
}

.cta-subtitle {
  font-size: 1.6rem;
  line-height: 1.6;
  max-width: 850px;
  margin: 0 auto 50px;
  color: var(--black);
  font-weight: 600;
  opacity: 0.9;
  text-align: center;
}

.cta-buttons-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.btn-cta-whatsapp,
.btn-cta-phone {
  padding: 22px 50px;
  border-radius: 60px;
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.btn-cta-whatsapp {
  background: #25D366;
  color: var(--white);
  border: none;
}

.btn-cta-whatsapp:hover {
  background: #1EBE5D;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
}

.btn-cta-phone {
  background: var(--black);
  color: var(--white);
  border: none;
}

.btn-cta-phone:hover {
  background: #111;
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.final-cta .micro-copy {
  margin-top: 40px;
  font-size: 1.2rem;
  color: var(--black);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0.8;
}

.sticky-mobile-call {
  position: fixed;
  bottom: 25px;
  right: 25px;
  left: 25px;
  background: var(--yellow);
  color: var(--black);
  padding: 18px;
  border-radius: 50px;
  display: flex; /* Always display but hidden via opacity */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  font-size: 1.5rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  border: 4px solid var(--white);
}

.sticky-mobile-call.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-mobile-call i {
  font-size: 1.6rem;
}

@media (max-width: 768px) {
  .sticky-mobile-call.visible {
    animation: stickyPulse 2.5s infinite;
  }

  .middle-cta-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .middle-cta-btns .btn {
    font-size: 1.5rem;
    padding: 18px 30px;
  }
}

@keyframes stickyPulse {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }

  50% {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  }

  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }
}

/* Footer Redesign */
.footer {
  background: var(--black);
  color: #a1a1aa;
  padding: 80px 0 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
  text-align: right;
}

.footer-logo {
  height: 60px;
  filter: grayscale(1) brightness(10);
  margin-bottom: 20px;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 30px;
  height: 3px;
  background: var(--yellow);
}

.footer-contact p {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--yellow);
  width: 20px;
  text-align: center;
}

.footer-social .social-icons {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  margin-top: 0;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.2rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  font-size: 0.9rem;
}

/* Mobile responsive for Final CTA & Footer */
@media (max-width: 768px) {

  .empathy-section {
    padding: 50px 0;
  }

  .empathy-card {
    grid-template-columns: 1fr;
    padding: 25px 20px;
    gap: 20px;
    border-right: none;
    border-top: 5px solid var(--yellow);
  }

  .empathy-content .section-title {
    font-size: 1.6rem;
    text-align: right;
    margin-bottom: 15px;
  }

  .lead-text {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .solution-highlight {
    width: 100%;
    margin-right: 0;
    font-size: 1.15rem;
    padding: 10px 15px;
    margin-bottom: 15px;
  }

  .solution-text {
    font-size: 1.05rem;
  }

  .empathy-checklist {
    padding: 20px 15px;
  }

  .custom-check-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
  }

  .hero-grid,
  .grid-2,
  .steps-grid,
  .testimonials {
    grid-template-columns: 1fr;
  }

  .navbar {
    position: static;
    /* Prevent overlap with banner */
  }

  .nav-container {
    justify-content: center;
    /* Center the logo */
  }

  .hero-section {
    padding: 20px 0 0;
    /* Radically reduce top padding, zero bottom padding */
    min-height: 70vh;
  }

  .hero-h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    text-align: center;
  }

  .hero-title-small { font-size: 1rem; }
  .hero-title-main { font-size: 2.1rem; border-bottom-width: 4px; padding-bottom: 3px; white-space: nowrap; margin-right: auto; margin-left: auto; }
  .hero-title-medium { font-size: 1.6rem; }

  .hero-p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    text-align: center;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .highlight {
    margin-top: 5px;
    border-bottom: 4px solid var(--yellow);
    padding-bottom: 2px;
  }

  .hero-container-split {
    flex-direction: column;
    align-items: stretch;
    /* Forces children to take full width */
    gap: 0;
    padding: 0 15px;
  }

  .hero-text {
    display: block;
    /* Overrides desktop flex to ensure standard block filling behavior */
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding-bottom: 60px;
  }

  .hero-h1,
  .hero-h2 {
    margin-right: auto;
    margin-left: auto;
  }

  .availability-status {
    justify-content: center;
  }

  .hero-image-wrapper {
    flex: none;
    max-width: 100%;
    justify-content: center;
  }

  .hero-person-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    max-width: 100%;
  }

  .hero-person-abs {
    position: relative;
    max-height: 400px;
  }

  .hero-person-badge {
    bottom: 20px;
    right: 50%;
    transform: translateX(50%);
    background: rgba(0, 0, 0, 0.7);
    /* Darker for mobile contrast */
    text-align: center;
    width: max-content;
    white-space: nowrap;
  }

  .hero-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    /* Center all items inside the CTA block */
  }

  .micro-copy {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    background: rgba(0, 0, 0, 0.4);
    padding: 8px 12px;
    border-radius: 8px;
    width: 100%;
  }

  .btn {
    width: 100%;
    justify-content: center;
    font-size: 1.05rem;
    padding: 14px 20px;
  }

  .image-badge {
    right: 0;
  }

  .navbar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 2000;
  }

  .navbar .btn-nav {
    display: none;
  }

  .promo-banner {
    font-size: 1.05rem;
    padding: 12px 15px;
    display: block;
    text-align: center;
    line-height: 1.5;
  }

  .benefits-grid-new-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .benefit-icon-item {
    max-width: none;
    padding: 15px 5px;
  }

  .benefit-icon-item .icon-circle {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .benefit-icon-item p {
    font-size: 1.05rem;
  }

  .cta-buttons-wrapper {
    flex-direction: column;
  }

  .btn-cta-whatsapp,
  .btn-cta-phone {
    width: 100%;
    justify-content: center;
    padding: 20px 30px;
    font-size: 1.3rem;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer {
    padding-bottom: 150px !important;
  }

  .footer-logo {
    margin: 0 auto 20px !important;
    display: block !important;
  }

  .footer-col h3::after {
    right: 50%;
    transform: translateX(50%);
  }

  .footer-contact p {
    justify-content: center;
  }

  .footer-social .social-icons {
    justify-content: center;
  }
}

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: -100px;
  /* Hidden start */
  left: 20px;
  right: 20px;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  padding: 15px 25px;
  border-radius: 15px;
  z-index: 10000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 600px;
  margin: 0 auto;
}

.cookie-banner.active {
  bottom: 120px;
  /* Above the sticky call button (which is at 25px + padding) */
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-content p {
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

.cookie-content a {
  color: var(--yellow);
  text-decoration: underline;
}

.btn-cookie-accept {
  background: var(--yellow);
  color: var(--black);
  border: none;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.btn-cookie-accept:hover {
  background: var(--white);
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .cookie-banner {
    left: 15px;
    right: 15px;
    padding: 12px 20px;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .cookie-banner.active {
    bottom: 110px;
  }
}