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

@font-face {
  font-family: "Shubbak";
  src: url("../fonts/Shubbak-Medium.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Shubbak";
  src: url("../fonts/Shubbak-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}

:root {
  --primary: #35aeec;
  --primary-dark: #2196d4;
  --primary-light: #e8f4fd;
  --dark: #444444;
  --dark-heading: #2d2d2d;
  --white: #ffffff;
  --gray-bg: #f7f9fc;
  --gray-text: #6b7280;
  --gray-light: #e5e7eb;
  --font: "Shubbak", sans-serif;
}

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

body {
  font-family: var(--font);
  color: var(--dark);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}

/* WhatsApp Float Button */
.whatsapp-float {
  border-radius: 100%;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  display: block;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== SKELETON LOADING ===== */
.skeleton-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #fff;
  overflow-y: auto;
  transition: opacity 0.4s ease;
}

.skeleton-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.sk-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sk-bone {
  background: #eaecf0;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.sk-bone::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 100%
  );
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.sk-w70 {
  width: 70% !important;
}
.sk-w50 {
  width: 50% !important;
}

/* Skeleton Navbar */
.sk-navbar {
  padding: 20px 0;
  border-bottom: 1px solid #f2f4f7;
}

.sk-navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sk-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}

.sk-nav-links {
  display: flex;
  gap: 24px;
}

.sk-nav-item {
  width: 60px;
  height: 14px;
  border-radius: 4px;
}

/* Skeleton Hero */
.sk-hero {
  background: #f7f8fa;
  padding: 100px 0 80px;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.sk-hero-content {
  max-width: 600px;
  margin-right: auto;
}

.sk-hero-label {
  width: 140px;
  height: 16px;
  margin-bottom: 16px;
}

.sk-hero-title {
  width: 100%;
  height: 40px;
  margin-bottom: 12px;
}

.sk-hero-title-2 {
  width: 80%;
  height: 40px;
  margin-bottom: 20px;
}

.sk-hero-desc {
  width: 100%;
  height: 14px;
  margin-bottom: 8px;
}

.sk-hero-desc-2 {
  width: 90%;
  height: 14px;
  margin-bottom: 20px;
}

.sk-hero-creds {
  width: 70%;
  height: 12px;
  margin-bottom: 28px;
}

.sk-hero-btn {
  width: 200px;
  height: 48px;
  border-radius: 8px;
}

/* Skeleton About */
.sk-about {
  padding: 80px 0;
}

.sk-about-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 50px;
  align-items: start;
}

.sk-about-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sk-about-label {
  width: 80px;
  height: 14px;
}

.sk-about-name {
  width: 200px;
  height: 32px;
}

.sk-about-line {
  width: 100%;
  height: 12px;
}

.sk-about-btn {
  width: 180px;
  height: 44px;
  border-radius: 8px;
  margin-top: 10px;
}

.sk-about-img {
  width: 100%;
  height: 400px;
  border-radius: 16px;
}

/* Skeleton Services */
.sk-services {
  padding: 80px 0;
  background: #f9fafb;
}

.sk-section-header {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.sk-section-label {
  width: 80px;
  height: 14px;
}

.sk-section-desc {
  width: 400px;
  height: 12px;
}

.sk-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sk-service-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #f2f4f7;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sk-service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.sk-service-title {
  width: 60%;
  height: 18px;
}

.sk-service-line {
  width: 100%;
  height: 12px;
}

/* Mobile Skeleton */
@media (max-width: 768px) {
  .sk-nav-links {
    display: none;
  }
  .sk-about-grid {
    grid-template-columns: 1fr;
  }
  .sk-about-img {
    height: 250px;
  }
  .sk-services-grid {
    grid-template-columns: 1fr;
  }
  .sk-hero {
    min-height: 350px;
    padding: 80px 0 60px;
  }
  .sk-hero-title {
    height: 28px;
  }
  .sk-hero-title-2 {
    height: 28px;
  }
  .sk-section-desc {
    width: 80%;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 32px;
  height: 56px !important;
  border-radius: 15px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(53, 174, 236, 0.35);
}

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

.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.section-label {
  display: inline-block;
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

#navbar.scrolled {
  background: #1b82b9;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);

  padding: 10px 0;
}

#navbar.scrolled .nav-links a {
  color: var(--white);
}

#navbar.scrolled .nav-links a.active,
#navbar.scrolled .nav-links a:hover {
  color: var(--primary);
}

#navbar.scrolled .logo text {
  fill: var(--primary);
}

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

.logo {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

#navbar.scrolled .nav-links a.active::after {
  background: var(--primary);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger to X animation */
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Offcanvas Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 88%;
  max-width: 380px;
  height: 100vh;
  height: 100dvh;
  background: linear-gradient(180deg, #1a7fb5 0%, #1b82b9 40%, #167aad 100%);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-menu-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.mobile-menu-close {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 16px 0;
  flex: 1;
}

.mobile-menu li {
  list-style: none;
}

.mobile-menu a {
  display: block;
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
  padding: 14px 28px;
  transition: background 0.2s ease, padding-right 0.2s ease;
  border-radius: 0;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: rgba(255, 255, 255, 0.1);
  padding-right: 36px;
}

.mobile-menu-cta {
  padding: 20px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-menu-book-btn {
  display: block;
  text-align: center;
  background: var(--white);
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mobile-menu-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 40px;
  background-image: url("../images//hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.4) 40%,
    rgba(53, 174, 236, 0.15) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}

.hero-text {
  max-width: 650px;
}

.hero-subtitle {
  display: inline-block;
  color: white;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 12px;
}

.hero-title {
  color: var(--white);
  font-size: 50px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-desc {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 580px;
  font-weight: 400;
}

.hero-credentials {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-credentials .divider {
  color: white;
}

.hero-credentials .hero-credentials-mobile-v {
  display: none;
}

.hero-btn {
  font-size: 16px;
  padding: 16px 36px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: start;
}

.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
}

.about-content {
  padding-top: 10px;
}

.about-name {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-heading);
  margin-bottom: 14px;
}

.about-text {
  color: var(--gray-text);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-credentials-list {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-credentials-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--dark);
  line-height: 1.6;
}

.about-credentials-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 88px 0;
  background: var(--gray-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header .section-label {
  font-size: 36px;
}

.section-desc {
  color: var(--gray-text);
  font-size: 15px;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--gray-light);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.service-card-featured {
  background: var(--primary);
  border-color: var(--primary);
}

.service-card-featured .service-title,
.service-card-featured .service-desc {
  color: var(--white);
}

.service-card-featured .service-number {
  color: rgba(255, 255, 255, 0.15);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card-featured .service-icon {
  background: rgba(255, 255, 255, 0.2);
}

.service-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-heading);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
}

.service-number {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-size: 64px;
  font-weight: 800;
  color: rgba(53, 174, 236, 0.08);
  line-height: 1;
}

.services-dots {
  display: none;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose-section {
  padding: 100px 0;
  background: var(--white);
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}

.why-choose-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--dark-heading);
  line-height: 1.4;
  margin-bottom: 16px;
}

.why-choose-title span {
  color: var(--primary);
}

.why-choose-desc {
  color: var(--gray-text);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 20px;
  border-radius: 12px;
  background: var(--gray-bg);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: var(--primary-light);
}

.feature-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark-heading);
  margin-bottom: 4px;
}

.feature-item p {
  font-size: 13px;
  color: var(--gray-text);
  line-height: 1.6;
}

.why-choose-image {
  border-radius: 20px;
  overflow: hidden;
}

.why-choose-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 80px 0;
  background-image: url("../images/banner-img.webp");
  background-size: cover;
  background-position: center;
  text-align: center;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  color: var(--white);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 32px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 100px 0;
  background: var(--gray-bg);
}

.testimonials-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-heading);
  line-height: 1.4;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  border-radius: 20px;
  padding: 36px;
  position: relative;
}

.testimonial-white {
  background: var(--white);
  border: 1px solid var(--gray-light);
}

.testimonial-blue {
  background: var(--primary);
}

.quote-icon {
  margin-bottom: 16px;
}

.testimonial-white .testimonial-text {
  color: var(--dark);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.testimonial-blue .testimonial-text {
  color: var(--white);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  fill: #f59e0b;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar-white {
  background: rgba(255, 255, 255, 0.2);
}

.author-name {
  font-size: 14px;
  font-weight: 600;
}

.testimonial-white .author-name {
  color: var(--dark-heading);
}

.testimonial-blue .author-name {
  color: var(--white);
}

/* Testimonials Dots - hidden on desktop */
.testimonials-dots {
  display: none;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 100px 0;
  background: var(--white);
}

.faq-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-heading);
  margin-bottom: 8px;
}

.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: var(--gray-bg);
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-heading);
  text-align: right;
  transition: all 0.3s ease;
}

.faq-item.active .faq-question {
  background: var(--primary);
  color: var(--white);
}

.faq-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--white);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--primary);
}

.faq-answer > div,
.faq-answer > p {
  overflow: hidden;
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.8;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--primary);
  padding: 60px 0 0;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.3);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

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

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact svg {
  flex-shrink: 0;
}

.footer-contact svg path {
  stroke: var(--white);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== BOOKING POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.popup-container {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  max-width: 520px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  animation: popupSlideUp 0.3s ease forwards;
}

@keyframes popupSlideUp {
  to {
    transform: translateY(0);
  }
}

.popup-close {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gray-bg);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--gray-text);
  transition: all 0.3s ease;
}

.popup-close:hover {
  background: #eee;
  color: var(--dark);
}

.popup-header {
  text-align: center;
  margin-bottom: 28px;
}

.popup-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.popup-header h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-heading);
  margin-bottom: 8px;
}

.popup-header p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-heading);
}

.required {
  color: #ef4444;
}

.optional {
  color: var(--gray-text);
  font-weight: 400;
  font-size: 12px;
}

.form-group input {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-light);
  border-radius: 10px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--dark);
  outline: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  background: var(--white);
}

.form-group input::placeholder {
  color: #b0b7c3;
}

.form-group input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(53, 174, 236, 0.12);
}

.form-group input.input-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.phone-input-wrapper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--gray-light);
  border-radius: 10px;
  overflow: hidden;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.phone-input-wrapper:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(53, 174, 236, 0.12);
}

.phone-input-wrapper.input-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.phone-prefix {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 12px 12px 0;
  background: var(--gray-bg);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  border-left: 1.5px solid var(--gray-light);
  white-space: nowrap;
  padding-right: 12px;
}

.phone-prefix img {
  border-radius: 2px;
}

.phone-input-wrapper input {
  border: none;
  padding: 12px 14px;
  font-size: 15px;
  font-family: var(--font);
  color: var(--dark);
  outline: none;
  flex: 1;
  background: transparent;
}

.error-msg {
  font-size: 12px;
  color: #ef4444;
  min-height: 16px;
  display: block;
}

.popup-submit {
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 16px;
  margin-top: 4px;
}

.popup-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loader {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.6s linear infinite;
}

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

/* Success State */
.popup-success {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  margin-bottom: 20px;
}

.popup-success h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-heading);
  margin-bottom: 10px;
}

.popup-success p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 24px;
}

.popup-success .btn {
  min-width: 160px;
  justify-content: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 38px;
    text-align: center;
  }

  .about-grid {
    grid-template-columns: 350px 1fr;
    gap: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-choose-grid {
    grid-template-columns: 1fr 350px;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section-header .section-label {
    font-size: 28px;
  }

  .section-desc {
    font-size: 14px;
  }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: 88vh;
    background-image: url("../images//hero-bg-mobile.webp");
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-desc {
    font-size: 14px;
    text-align: center;
  }

  .hero-credentials {
    font-size: 14px;
    gap: 8px;
  }

  .hero-credentials .hero-credentials-pc-v {
    display: none;
  }

  .hero-credentials .hero-credentials-mobile-v {
    display: flex;
  }

  .hero-content {
    padding: 80px 0 40px;
    text-align: center;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
  }

  .about-section {
    padding: 40px 0;
  }

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

  .about-image img {
    display: none;
  }

  .about-name {
    font-size: 24px;
  }

  .services-section {
    padding: 40px 0;
  }

  .services-grid {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }

  .services-grid::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    flex: 0 0 calc(80% - 4px);
    scroll-snap-align: start;
    padding: 16px 14px;
    min-height: auto;
  }

  .service-icon {
    margin-bottom: 8px;
  }

  .service-icon img {
    width: 24px;
    height: 24px;
  }

  .service-title {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .service-desc {
    font-size: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .service-number {
    font-size: 48px;
  }

  .services-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
  }

  .services-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .services-dots .dot.active {
    background: var(--primary);
    width: 20px;
    border-radius: 4px;
  }

  .why-choose-section {
    padding: 40px 0;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-choose-image {
    order: -1;
  }

  .why-choose-image img {
    height: 220px;
  }

  .why-choose-title {
    font-size: 24px;
  }

  .cta-content h2 {
    font-size: 22px;
  }

  .testimonials-section {
    padding: 40px 0;
  }

  .testimonials-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 28px 20px;
  }

  .testimonials-title {
    font-size: 14px;
  }

  .testimonials-dots {
    margin-top: 16px;
  }

  .testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
  }

  .testimonials-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .testimonials-dots .dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
  }

  .footer {
    padding: 32px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 24px;
  }

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

  .footer-logo {
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
  }

  .footer-logo img {
    width: 72px;
    height: 72px;
  }

  .footer-desc {
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.6;
  }

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

  .footer-links {
    display: none;
  }

  .footer-contact h4 {
    display: none;
  }

  .footer-contact ul {
    gap: 8px;
  }

  .footer-bottom {
    padding: 14px 0;
    font-size: 12px;
  }

  .faq-section {
    padding: 40px 0;
  }

  .faq-title {
    font-size: 24px;
  }

  .faq-question {
    font-size: 13px;
    padding: 12px 16px;
  }

  .popup-container {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .popup-header h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 14px;
  }
  .hero-desc {
    font-size: 13px;
  }

  .about-section {
    padding: 24px 0 36px 0;
  }

  .about-content {
    padding-top: 0;
  }

  .about-name {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .about-text {
    font-size: 14px;
  }

  .about-credentials-list {
    margin: 24px 0 32px 0;
    gap: 12px;
  }

  .about-credentials-list li {
    gap: 10px;
    font-size: 13px;
  }

  .about-btn {
    width: 100%;
  }

  .services-section {
    padding: 32px 0;
  }

  .services-section .container .section-header .section-label {
    font-size: 24px;
  }

  .services-section .container .section-header .section-desc {
    font-size: 14px;
  }

  .why-choose-section .container .why-choose-title {
    font-size: 24px;
  }

  .why-choose-section .container .why-choose-desc {
    font-size: 14px;
  }

  .why-choose-section .container .why-choose-btn {
    width: 100%;
  }

  .cta-banner-btn {
    width: 100%;
  }

  .testimonials-section .section-label {
    font-size: 32px;
  }

  .testimonials-section .testimonials-title {
    font-size: 24px;
  }

  .faq-title {
    font-size: 24px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .hero-credentials {
    flex-direction: column;
    gap: 4px;
  }

  .hero-credentials .divider {
    display: none;
  }

  .service-card {
    padding: 24px 20px;
  }

  .feature-item {
    padding: 12px 16px;
  }

  .footer {
    padding: 24px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
