/*
Theme Name: Makadi Heights Theme
Theme URI: https://makadi-heights.com
Author: Makadi Team
Author URI: https://makadi-heights.com
Description: Premium theme for Makadi Heights Real Estate - Red Sea Luxury
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: makadi-theme
*/

/* ========================================
   BASE & RESET
   ======================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family:  "IBM Plex Sans Arabic", sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #1e293b;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* ========================================
   CONTAINER
   ======================================== */

.container {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 5vw, 2rem);
}

/* ========================================
   SECTION: Hero
   ======================================== */

.hero {
  --hero-amber: #f59e0b;
  --hero-amber-hover: #fbbf24;
  --hero-teal: rgba(19, 78, 74, 0.4);
  --hero-teal-border: rgba(20, 184, 166, 0.3);
  --hero-radius: 1rem;
  --hero-radius-full: 9999px;

  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}

/* Background */
.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.6) 0%,
    rgba(15, 23, 42, 0.4) 50%,
    rgba(15, 23, 42, 0.7) 100%
  );
}

/* Content */
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.25rem, 3vw, 1.5rem);
  animation: heroFadeUp 0.8s ease-out both;
  padding: 1.25rem 0 ;
}

/* Logo */
.hero__logo {
  margin-bottom: 1rem;
  animation: fadeIn 1s ease-out both;
}

.hero__logo-image {
  height: clamp(40px, 10vw, 100px);
  width: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
      object-fit: contain;
}

/* Title */
.hero__title {
  font-size: clamp(2rem, 8vw, 4.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}

.hero__title-break {
  display: none;
}

/* Subtitle */
.hero__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    font-weight: 600;
    color: rgb(226 232 240);
    line-height: 1.7;
    max-width: 40rem;
    margin: 0;
}

/* CTA Pill */
.hero__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 28rem;
  margin-top: clamp(0.75rem, 2vw, 1.5rem);
  padding: 0.5rem;
  background: var(--hero-amber);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--hero-radius-full);
  box-shadow: 0 10px 30px -10px rgba(120, 53, 15, 0.3);
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.hero__cta:hover {
  background: var(--hero-amber-hover);
  transform: translateY(-3px);
  box-shadow: 0 14px 35px -10px rgba(120, 53, 15, 0.4);
}

.hero__cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.hero__cta-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-left: 0.75rem;
}

.hero__cta-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
}

.hero__cta-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.01em;
}

.hero__cta-badge {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--hero-amber);
  background: #fff;
  padding: 0.4rem 0.85rem;
  border-radius: var(--hero-radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Features Bar */
.hero__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  width: 100%;
  max-width: 56rem;
  margin-top: clamp(1.5rem, 4vw, 2rem);
  padding: clamp(0.75rem, 2vw, 1.5rem);
  background: var(--hero-teal);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--hero-teal-border);
  border-radius: var(--hero-radius);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero__feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0.5rem;
  border-left: 1px solid var(--hero-teal-border);
  text-align: center;
}

.hero__feature:first-child {
  border-left: none;
  padding-top: 0;
}

.hero__feature-image {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.hero__feature-text {
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  text-align: center;
}

/* Book Now Button */
.hero__book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: .75rem 2rem;
  background: linear-gradient(135deg, #075985 0%, #0e7490 100%);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  border-radius: var(--hero-radius-full);
  box-shadow: 0 10px 35px rgba(7, 89, 133, 0.45), 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__book-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.hero__book-btn:hover {
  background: linear-gradient(135deg, #0369a1 0%, #075985 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 45px rgba(7, 89, 133, 0.55), 0 6px 16px rgba(0, 0, 0, 0.35);
}

.hero__book-btn:hover::before {
  opacity: 1;
}

.hero__book-btn:active {
  transform: translateY(-1px) scale(1);
}

.hero__book-btn svg {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Animation */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ----------------------------------------
   Responsive: Tablet+
   ---------------------------------------- */
@media (min-width: 768px) {
  .hero__title-break {
    display: block;
  }

  .hero__features {
    gap: 0;
  }

  .hero__feature {
    flex-direction: row;
    gap: 1rem;
    padding: 0 1.5rem;
  }

  .hero__feature-image {
    width: 3rem;
    height: 3rem;
  }

  .hero__feature-text {
    font-size: 0.875rem;
    line-height: 1.4;
    text-align: left;
  }
}

/* ----------------------------------------
   Reduced Motion
   ---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .hero__content {
    animation: none;
  }

  .hero__cta {
    transition: none;
  }
}

/* ========================================
   SECTION: About
   ======================================== */

.about {
  --about-amber: #f59e0b;
  --about-teal: #14b8a6;
  --about-slate-900: #0f172a;
  --about-slate-700: #334155;
  --about-slate-500: #64748b;
  --about-slate-200: #e2e8f0;
  --about-slate-100: #f1f5f9;
  --about-radius: 1rem;
  --about-radius-full: 9999px;

  padding-block: clamp(5rem, 10vw, 8rem);
  background: #fff;
  border-bottom: 1px solid var(--about-slate-100);
}

/* Grid Layout */
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

/* Content Column */
.about__content {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  order: 2;
}

/* Header */
.about__header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--about-amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about__title {
  font-size: clamp(1.875rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--about-slate-900);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
}

/* Description */
.about__description {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about__description p {
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--about-slate-500);
  line-height: 1.75;
  margin: 0;
}

/* Features List */
.about__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}

.about__list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--about-slate-700);
}

.about__check-icon {
  flex-shrink: 0;
  color: var(--about-teal);
}

/* Quote */
.about__quote {
  border-right: 4px solid var(--about-amber);
  padding-right: 1.5rem;
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 400;
  color: var(--about-slate-700);
  line-height: 1.6;
  margin: 0;
}

/* CTA Row */
.about__cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
}

.about__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: var(--about-radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about__btn--primary {
  background: var(--about-slate-900);
  color: #fff;
}

.about__btn--primary:hover {
  background: var(--about-slate-700);
  transform: translateY(-2px);
}

.about__btn--primary:focus-visible {
  outline: 2px solid var(--about-amber);
  outline-offset: 2px;
}

.about__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  color: #fff;
  background: #0f172a;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.about__btn-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.about__btn-icon--whatsapp {
  background: #25d366;
}

.about__btn-icon--whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.about__btn-icon:focus-visible {
  outline: 2px solid var(--about-amber);
  outline-offset: 2px;
}

/* Video Column */
.about__video-wrapper {
  position: relative;
  order: 1;
}

.about__video-glow {
  position: absolute;
  inset: -1rem;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.3), rgba(20, 184, 166, 0.3));
  border-radius: 2rem;
  opacity: 0.5;
  filter: blur(24px);
  transition: opacity 0.5s ease;
  z-index: 0;
}

.about__video-wrapper:hover .about__video-glow {
  opacity: 0.75;
}

.about__video-container {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--about-radius);
  overflow: hidden;
  background: var(--about-slate-100);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

/* Video Element */
.about__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

/* Video Overlay */
.about__video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.about__video-overlay--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.about__video-thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

/* Canvas thumbnail styling */
.about__video-canvas {
  background: linear-gradient(135deg, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.about__video-wrapper:hover .about__video-thumbnail {
  transform: scale(1.05);
}

.about__video-overlay-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.3s ease;
}

.about__video-wrapper:hover .about__video-overlay-bg {
  background: rgba(0, 0, 0, 0.35);
}

/* Play Button */
.about__play-btn {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(4rem, 8vw, 5rem);
  height: clamp(4rem, 8vw, 5rem);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  color: var(--about-slate-900);
  cursor: pointer;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about__play-btn svg {
  margin-left: 3px;
}

.about__play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.about__play-btn:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

/* Video Caption */
.about__video-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--about-radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  z-index: 3;
}

/* YouTube Video Wrapper */
.about__youtube-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.about__youtube-thumbnail {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.about__youtube-wrapper:hover .about__youtube-thumbnail {
  transform: scale(1.05);
}

.about__youtube-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2;
  padding: 0;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.about__youtube-play:hover {
  transform: translate(-50%, -50%) scale(1.1);
  filter: brightness(1.1);
}

.about__youtube-play-bg {
  transition: fill 0.3s ease;
}

.about__youtube-play:hover .about__youtube-play-bg {
  fill: #ff0000;
}

.about__youtube-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.about__no-video {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e293b, #334155);
  color: #94a3b8;
  font-size: 1rem;
}

/* ----------------------------------------
   About: Responsive - Tablet+
   ---------------------------------------- */
@media (min-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 5rem);
  }

  .about__content {
    order: 1;
  }

  .about__video-wrapper {
    order: 2;
  }
}

/* ----------------------------------------
   About: Reduced Motion
   ---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .about__video-thumbnail,
  .about__play-btn,
  .about__btn,
  .about__btn-icon,
  .about__video-glow {
    transition: none;
  }

  .about__video-wrapper:hover .about__video-thumbnail {
    transform: none;
  }
}

/* ========================================
   SECTION: Gallery
   ======================================== */

.gallery {
  --gallery-amber: #f59e0b;
  --gallery-slate-900: #0f172a;
  --gallery-slate-700: #334155;
  --gallery-slate-500: #64748b;
  --gallery-slate-200: #e2e8f0;
  --gallery-slate-100: #f1f5f9;
  --gallery-slate-50: #f8fafc;
  --gallery-radius: 1rem;
  --gallery-radius-lg: 1.5rem;

  padding-block: clamp(5rem, 10vw, 8rem);
  background: var(--gallery-slate-50);
  overflow: hidden;
}

.gallery .container {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
}

/* Header */
.gallery__header {
  max-width: 48rem;
}

.gallery__title {
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--gallery-slate-900);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

.gallery__title-highlight {
  color: var(--gallery-amber);
}

.gallery__subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 300;
  color: var(--gallery-slate-500);
  line-height: 1.75;
  margin: 0;
}

/* Slider Wrapper */
.gallery__slider-wrapper {
  position: relative;
}

/* Swiper Overrides */
.gallery__swiper {
  overflow: hidden;
  border-radius: var(--gallery-radius-lg);
}

.gallery__swiper .swiper-slide {
  width: 100%;
}

/* Slide */
.gallery__slide {
  position: relative;
  aspect-ratio: 8 / 9;
  overflow: hidden;
  background: var(--gallery-slate-200);
}

.gallery__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
}

.gallery__slide:hover .gallery__image {
  transform: scale(1.03);
}

/* Navigation Buttons */
.gallery__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(2.5rem, 5vw, 3.5rem);
  height: clamp(2.5rem, 5vw, 3.5rem);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  color: var(--gallery-slate-700);
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.gallery__nav-btn--prev {
  left: clamp(0.75rem, 2vw, 1.5rem);
}

.gallery__nav-btn--next {
  right: clamp(0.75rem, 2vw, 1.5rem);
}

.gallery__nav-btn:hover {
  background: var(--gallery-slate-900);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

.gallery__nav-btn:focus-visible {
  outline: 2px solid var(--gallery-amber);
  outline-offset: 2px;
}

.gallery__nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.gallery__nav-btn:disabled:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--gallery-slate-700);
  transform: translateY(-50%);
}

/* Pagination */
.gallery__pagination {
  position: relative;
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.gallery__pagination .swiper-pagination-bullet {
  width: 0.625rem;
  height: 0.625rem;
  background: var(--gallery-slate-300, #cbd5e1);
  opacity: 1;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.gallery__pagination .swiper-pagination-bullet-active {
  width: 2.5rem;
  background: var(--gallery-amber);
  border-radius: 0.5rem;
}

/* ----------------------------------------
   Gallery: Responsive - Desktop
   ---------------------------------------- */
@media (min-width: 1024px) {
  .gallery__slide {
    aspect-ratio: 9 / 9;
  }
}

/* ----------------------------------------
   Gallery: Reduced Motion
   ---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .gallery__slide,
  .gallery__image,
  .gallery__slide-overlay,
  .gallery__nav-btn,
  .gallery__pagination .swiper-pagination-bullet {
    transition: none;
  }

  .gallery__slide:hover {
    transform: none;
  }

  .gallery__slide:hover .gallery__image {
    transform: none;
  }
}

/* ========================================
   SECTION: Lead Form
   ======================================== */

.lead-form {
  --form-amber: #f59e0b;
  --form-amber-hover: #fbbf24;
  --form-slate-900: #0f172a;
  --form-slate-500: #64748b;
  --form-slate-400: #94a3b8;
  --form-slate-200: #e2e8f0;
  --form-slate-100: #f1f5f9;
  --form-slate-50: #f8fafc;
  --form-radius: 1rem;
  --form-radius-full: 9999px;

  padding-block: clamp(5rem, 10vw, 6rem);
  background: #fff;
}

/* Card */
.lead-form__card {
  background: var(--form-slate-50);
  border: 1px solid var(--form-slate-100);
  border-radius: clamp(1.5rem, 4vw, 2rem);
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

/* Header */
.lead-form__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 2.5rem);
}

.lead-form__title {
  font-size: clamp(1.75rem, 4vw, 2rem);
  font-weight: 600;
  color: var(--form-slate-900);
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem 0;
}

.lead-form__subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  font-weight: 300;
  color: var(--form-slate-500);
  line-height: 1.6;
  max-width: 40rem;
  margin: 0 auto;
}

.lead-form__highlight {
  font-weight: 500;
  color: var(--form-slate-900);
}

/* Form */
.lead-form__form {
  max-width: 56rem;
  margin-inline: auto;
}

.lead-form__fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Field */
.lead-form__field {
  position: relative;
  flex: 1;
}

.lead-form__icon {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--form-slate-400);
  pointer-events: none;
  transition: color 0.3s ease;
}

.lead-form__field:focus-within .lead-form__icon {
  color: var(--form-amber);
}

.lead-form__input {
  width: 100%;
  height: 3.5rem;
  padding: 0 1rem 0 3rem;
  background: #fff;
  border: 1px solid var(--form-slate-200);
  border-radius: var(--form-radius-full);
  font-size: 1rem;
  font-family: inherit;
  color: var(--form-slate-900);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.lead-form__input::placeholder {
  color: var(--form-slate-400);
}

.lead-form__input:focus {
  outline: none;
  border-color: var(--form-amber);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.15);
}

/* Submit Button */
.lead-form__submit {
  height: 3.5rem;
  padding: 0 2.5rem;
  background: var(--form-amber);
  border: none;
  border-radius: var(--form-radius-full);
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.4);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.lead-form__submit:hover {
  /* background: var(--form-amber-hover); */
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -5px rgba(245, 158, 11, 0.5);
}

.lead-form__submit:focus-visible {
  outline: 2px solid var(--form-slate-900);
  outline-offset: 2px;
}

.lead-form__submit:active {
  transform: translateY(0);
}

/* Privacy Note */
.lead-form__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--form-slate-400);
}

.lead-form__privacy svg {
  flex-shrink: 0;
}

/* ----------------------------------------
   Lead Form: Responsive - Desktop
   ---------------------------------------- */
@media (min-width: 1024px) {
  .lead-form__fields {
    flex-direction: row;
    align-items: stretch;
  }

  .lead-form__submit {
    flex-shrink: 0;
  }
}

/* ----------------------------------------
   Lead Form: Reduced Motion
   ---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  .lead-form__input,
  .lead-form__icon,
  .lead-form__submit {
    transition: none;
  }

  .lead-form__submit:hover {
    transform: none;
  }
}

/* ========================================
   SECTION: Footer
   ======================================== */

.footer {
  background: #fff;
  border-top: 1px solid #f1f5f9;
  padding-block: 2rem;
}

.footer__copyright {
  font-size: 0.75rem;
  color: #94a3b8;
  text-align: center;
  margin: 0;
}

/* ========================================
   FIXED CONTACT BUTTONS
   ======================================== */

.fixed-contact-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 1000;
}

.fixed-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fixed-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.fixed-btn-phone {
  background: #0f172a;
}

.fixed-btn-phone svg {
  width: 24px;
  height: 24px;
}

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

/* ========================================
   SUCCESS MESSAGE
   ======================================== */

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  background: #f0fdf4;
  border-radius: 1rem;
  border: 1px solid #bbf7d0;
}

.form-success.show {
  display: block;
}

.form-success__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.form-success__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #166534;
  margin: 0 0 0.5rem;
}

.form-success__text {
  font-size: 1rem;
  color: #15803d;
  margin: 0;
}

/* ================================================================
   LEAD POPUP MODAL
   ================================================================ */

/* Popup Container */
.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lead-popup.show {
  display: flex;
  opacity: 1;
  visibility: visible;
}

/* Overlay */
.lead-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Popup Content */
.lead-popup__content {
  position: relative;
  width: 90%;
  max-width: 550px;
  background: #fff;
  border-radius: 16px;
  padding: clamp(2rem, 5vw, 3rem);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: popupSlideUp 0.4s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes popupSlideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Close Button */
.lead-popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #475569;
  z-index: 10;
}

.lead-popup__close:hover {
  background: #e2e8f0;
  color: #0f172a;
  transform: rotate(90deg);
}

/* Popup Header */
.lead-popup__header {
  text-align: center;
  margin-bottom: 2rem;
}

.lead-popup__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 1rem;
  line-height: 1.2;
}

.lead-popup__subtitle {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #64748b;
  margin: 0;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Popup Fields */
.lead-popup__fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lead-popup__input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8fafc;
  /* text-align: right;
  direction: rtl; */
}

.lead-popup__input:focus {
  outline: none;
  border-color: #f59e0b;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.lead-popup__input::placeholder {
  color: #94a3b8;
}

/* Popup Submit Button */
.lead-popup__submit {
  width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}


.lead-popup__submit:active {
  transform: translateY(0);
}

/* RTL Support */
[dir="rtl"] .lead-popup__close {
  right: auto;
  left: 1rem;
}

/* Responsive */
@media (max-width: 640px) {
  .lead-popup__content {
    width: 95%;
    padding: 1.5rem;
    border-radius: 12px;
  }
  
  .lead-popup__title {
    font-size: 1.5rem;
  }
  
  .lead-popup__subtitle {
    font-size: 0.9rem;
  }

  .about__content {
  order: 1;
}
.about__video-wrapper {
  order: 2;}
.hero__feature-text {text-align: center;}
}

span.about__btn.about__btn--primary, span.hero__cta {
    cursor: pointer;
}

.hero__features{
	display:none
}


.lead-popup__input {
    direction: rtl;
}

.lead-form__icon {
    right: 1rem;
    left: auto;
}

.lead-form__input {
    padding: 0 3rem 0 1rem;
    direction: rtl;
}

.gallery__header {
    text-align: center;
    max-width: 100%;
    display: block;
}