/* Logo image */
.logo-img {
  height: 38px;
  width: 38px;
  border-radius: 50%;
  object-fit: cover;
  vertical-align: middle;
  display: inline-block;
}

/* =============================================================
   SA BEAUTY SALON - Modern Landing Page Styles
   Color: Rose Gold / Pink / Gold / Dark
   Font: Cairo (Arabic)
   ============================================================= */

/* ----- CSS Variables ----- */
:root {
  --primary: #B76E79;
  --primary-dark: #9A5B65;
  --primary-light: #F5E1E6;
  --primary-glow: rgba(183, 110, 121, 0.15);
  --gold: #C9A96E;
  --gold-light: #E8D5A3;
  --dark: #1A1A2E;
  --dark-soft: #2D2D44;
  --text: #333333;
  --text-light: #777777;
  --white: #FFFFFF;
  --off-white: #FDF8F9;
  --gray-bg: #F8F5F6;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 20px 60px rgba(183, 110, 121, 0.15);
  --shadow-section: 0 -50px 80px -40px rgba(183, 110, 121, 0.08);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font: 'Cairo', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
}

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

ul { list-style: none; }

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

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

/* ----- Typography ----- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.3;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 12px;
  color: var(--dark);
}

.section-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  text-align: center;
  color: var(--text-light);
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* =============================================================
   NAVIGATION
   ============================================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  direction: rtl;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
}

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

.navbar .logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
}

.navbar .logo .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

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

.navbar .nav-links a {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}

.navbar .nav-links a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.navbar .nav-links a.login-btn {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 12px 28px;
  font-size: 0.92rem;
  border: 2px solid rgba(255,255,255,0.15);
  box-shadow: 0 4px 20px rgba(183, 110, 121, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.navbar .nav-links a.login-btn:hover {
  box-shadow: 0 6px 30px rgba(183, 110, 121, 0.5);
  transform: translateY(-2px) scale(1.03);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(183, 110, 121, 0.4);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.menu-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 4px;
  transition: var(--transition);
}

/* =============================================================
   HERO SECTION
   ============================================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(160deg, var(--off-white) 0%, #FDF1F3 40%, var(--white) 100%);
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 110, 121, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .hero-sub {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--text-light);
  margin-bottom: 8px;
  font-weight: 600;
}

.hero-content .hero-desc {
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 35px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 8px 30px rgba(183, 110, 121, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(183, 110, 121, 0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: 50px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: 0 4px 15px rgba(183, 110, 121, 0.1);
}

.btn-secondary:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(183, 110, 121, 0.2);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.hero-stats .stat-item {
  display: flex;
  flex-direction: column;
}

.hero-stats .stat-item .stat-icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.hero-stats .stat-item .stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

.hero-stats .stat-item .stat-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual .hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.hero-visual .hero-image-wrapper .main-image {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(183, 110, 121, 0.15);
  transform: perspective(1000px) rotateY(-8deg);
  transition: var(--transition);
}

.hero-visual .hero-image-wrapper .main-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

/* Floating badges on hero visual */
.floating-badge {

  position: absolute;

  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 16px;

  padding: 12px 18px;

  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(183, 110, 121, 0.06);
  display: flex;

  align-items: center;

  gap: 12px;

  animation: float 6s ease-in-out infinite;

}



.floating-badge .badge-icon {

  width: 44px;

  height: 44px;

  border-radius: 14px;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 1.3rem;

}



.floating-badge .badge-text {

  display: flex;

  flex-direction: column;

  line-height: 1.3;

}



.floating-badge .badge-text span:first-child {

  font-size: 0.7rem;

  color: var(--text-light);
  font-weight: 500;

  letter-spacing: 0.3px;

}



.floating-badge .badge-text span:last-child {

  font-size: 0.85rem;

  font-weight: 800;

  color: var(--dark);
}



.floating-badge-1 {

  top: 8%;
  right: -20px;

  animation-delay: 0s;

}

.floating-badge-1 .badge-icon {

  background: linear-gradient(135deg, var(--primary-light), #FDF1F3);
  color: var(--primary);
}



.floating-badge-2 {

  bottom: 18%;
  left: -30px;

  animation-delay: 2s;

}

.floating-badge-2 .badge-icon {

  background: linear-gradient(135deg, #F0F0E8, #F8F5E8);
  color: var(--gold);
}



@keyframes float {

  0%, 100% { transform: translateY(0); }

  50% { transform: translateY(-10px); }

}

.floating-badge .badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.floating-badge .badge-text {
  display: flex;
  flex-direction: column;
}

.floating-badge .badge-text span:first-child {
  font-size: 0.75rem;
  color: var(--text-light);
}

.floating-badge .badge-text span:last-child {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--dark);
}

.floating-badge-1 {
  top: 10%;
  right: -30px;
  animation-delay: 0s;
}
.floating-badge-1 .badge-icon {
  background: var(--primary-light);
  color: var(--primary);
}

.floating-badge-2 {
  bottom: 15%;
  left: -40px;
  animation-delay: 2s;
}
.floating-badge-2 .badge-icon {
  background: #F0F0E8;
  color: var(--gold);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* =============================================================
   SECTION: SHARED
   ============================================================= */
.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background: var(--gray-bg);
}

/* =============================================================
   STATS BAR
   ============================================================= */
.stats-bar {
  background: var(--dark);
  padding: 50px 0;
  color: white;
}

.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stats-bar .stat-card {
  text-align: center;
  padding: 20px;
}

.stats-bar .stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stats-bar .stat-card .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.stats-bar .stat-card .stat-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 10px;
}

/* =============================================================
   SERVICES GRID
   ============================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0);
  transform-origin: right;
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

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

.service-card .service-icon {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--primary-light), #FDF1F3);
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  transform: scale(1.1) rotate(-5deg);
}

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

.service-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* =============================================================
   WHY US - Interactive Scroll Section
   ============================================================= */
.why-us {
  background: linear-gradient(160deg, var(--off-white), var(--white));
  padding: 100px 0;
}

.why-us .why-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.why-us .why-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-us .why-point {
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  background: var(--white);
}

.why-us .why-point.active {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 8px 30px rgba(183, 110, 121, 0.1);
}

.why-us .why-point .point-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.why-us .why-point .point-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: var(--primary-light);
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}

.why-us .why-point.active .point-icon {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
}

.why-us .why-point .point-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
}

.why-us .why-detail-card {
  position: sticky;
  top: 120px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 45px 40px;
  box-shadow: var(--shadow-hover);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(183, 110, 121, 0.1);
}

.why-us .why-detail-card .detail-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--primary-light), #FDF1F3);
  color: var(--primary);
  margin-bottom: 20px;
}

.why-us .why-detail-card .detail-number {
  font-size: 3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}

.why-us .why-detail-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.why-us .why-detail-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.9;
}

/* =============================================================
   SHOWCASE - Detailed Services
   ============================================================= */
.showcase {
  background: var(--white);
}

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

.showcase-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.showcase-card .showcase-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary-light), #FDF1F3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary);
  position: relative;
  overflow: hidden;
}

.showcase-card .showcase-img::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.2), transparent 60%);
}

.showcase-card:nth-child(2) .showcase-img { background: linear-gradient(135deg, #E8F0FE, #F0F4FF); color: #4A7BB5; }
.showcase-card:nth-child(3) .showcase-img { background: linear-gradient(135deg, #FEF3E8, #FFF8F0); color: #C9A96E; }
.showcase-card:nth-child(4) .showcase-img { background: linear-gradient(135deg, #F0E8FF, #F8F0FF); color: #8B6FC0; }
.showcase-card:nth-child(5) .showcase-img { background: linear-gradient(135deg, #E8FFF0, #F0FFF8); color: #5BA87A; }
.showcase-card:nth-child(6) .showcase-img { background: linear-gradient(135deg, #FFF0E8, #FFF8F0); color: #C98B6E; }
.showcase-card:nth-child(7) .showcase-img { background: linear-gradient(135deg, #F0FAFF, #F0F4FF); color: #6E9BC9; }
.showcase-card:nth-child(8) .showcase-img { background: linear-gradient(135deg, #FFF0F5, #FFF5F8); color: #C96E8B; }

.showcase-card .showcase-body {
  padding: 24px;
}

.showcase-card .showcase-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.showcase-card .showcase-body p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 14px;
}

.showcase-card .showcase-body .showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.showcase-card .showcase-body .showcase-tags span {
  padding: 4px 12px;
  border-radius: 50px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 600;
}

/* =============================================================
   HOW IT WORKS
   ============================================================= */
.how-it-works {
  background: var(--dark);
  color: white;
}

.how-it-works .section-title { color: white; }
.how-it-works .section-subtitle { color: rgba(255, 255, 255, 0.6); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--gold), var(--primary));
  opacity: 0.2;
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-card .step-number {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 8px 25px rgba(183, 110, 121, 0.3);
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.step-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonials {
  background: var(--off-white);
}

.testimonials-slider {
  padding-bottom: 40px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px;
  box-shadow: var(--shadow);
  position: relative;
  margin: 10px;
}

.testimonial-card::before {

  font-family: "Font Awesome 6 Free" !important;

  content: "\f10e";
  font-weight: 900;
  position: absolute;

  top: 20px;
  right: 25px;
  font-size: 2.2rem;

  line-height: 1;

  color: var(--primary-light);
  opacity: 0.7;

}

.testimonial-card .testi-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.9;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .testi-author {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.9rem;
}

.swiper-pagination-bullet-active {
  background: var(--primary) !important;
}

/* =============================================================
   LOCATION / CONTACT
   ============================================================= */
.location-section {
  position: relative;
  overflow: hidden;
}

.location-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(160deg, rgba(26,26,46,0.92), rgba(26,26,46,0.88));
  z-index: 1;
}

.location-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.unsplash.com/photo-1560066984-138dadb4c035?w=1600') center/cover fixed;
  z-index: 0;
}

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

.location-section .section-title { color: white; }
.location-section .section-subtitle { color: rgba(255, 255, 255, 0.6); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.contact-info .contact-item:last-child { margin-bottom: 0; }

.contact-info .contact-item .contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(183, 110, 121, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info .contact-item .contact-detail h4 {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2px;
}

.contact-info .contact-item .contact-detail p {
  font-size: 0.95rem;
  color: white;
  font-weight: 600;
}

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

.contact-action-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 30px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.contact-action-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-5px);
}

.contact-action-btn .btn-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-action-btn.map-btn .btn-icon { background: rgba(183, 110, 121, 0.25); color: var(--primary); }
.contact-action-btn.whatsapp-btn .btn-icon { background: rgba(37, 211, 102, 0.2); color: #25D366; }
.contact-action-btn.work-hours .btn-icon { background: rgba(201, 169, 110, 0.2); color: var(--gold); }

/* =============================================================
   FAQ
   ============================================================= */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow);
}

.faq-question {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark);
  transition: var(--transition);
  gap: 16px;
}

.faq-question .faq-arrow {
  font-size: 0.8rem;
  color: var(--primary);
  transition: var(--transition);
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 24px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.9;
}

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

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

.footer .footer-brand h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.footer .footer-brand p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 16px;
}

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

.footer .footer-brand .footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
  font-size: 1.1rem;
}

.footer .footer-brand .footer-social a:hover {
  background: var(--primary);
  color: white;
}

.footer h4 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: white;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.footer ul li a:hover {
  color: var(--gold);
  padding-right: 5px;
}

.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer .footer-bottom .license {
  color: var(--gold);
  font-weight: 600;
}

/* =============================================================
   SUB PAGES (Privacy & Terms)
   ============================================================= */
.sub-page {
  padding: 140px 0 80px;
  min-height: 100vh;
  background: var(--off-white);
}

.sub-page .container {
  max-width: 800px;
}

.sub-page h1 {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 10px;
}

.sub-page .last-updated {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 40px;
}

.sub-page .content-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 50px;
  box-shadow: var(--shadow);
}

.sub-page .content-card h2 {
  font-size: 1.3rem;
  color: var(--dark);
  margin: 30px 0 12px;
}

.sub-page .content-card h2:first-child { margin-top: 0; }

.sub-page .content-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 10px;
}

.sub-page .content-card ul {
  padding-right: 20px;
  margin-bottom: 15px;
}

.sub-page .content-card ul li {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.8;
  list-style: disc;
  margin-bottom: 6px;
}

.sub-page .content-card ul li::marker {
  color: var(--primary);
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .hero-content .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

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

  .steps-grid::before { display: none; }

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

  .why-us .why-wrapper {
    grid-template-columns: 1fr;
  }

  .why-us .why-detail-card {
    position: relative;
    top: 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .floating-badge-1 { right: 10px; }
  .floating-badge-2 { left: 10px; }
}

@media (max-width: 768px) {
  .navbar .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 30px 30px;
    gap: 6px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.06);
  }

  .navbar .nav-links.open {
    display: flex;
  }

  .navbar .nav-links a {
    width: 100%;
    text-align: center;
  }

  .menu-toggle {
    display: flex;
  }

  .hero { padding: 100px 0 60px; }

  .section { padding: 60px 0; }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .stats-bar .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin: 0 auto;
  }

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

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

  .hero-visual { display: none; }

  .sub-page .content-card {
    padding: 30px 20px;
  }

  .floating-badge { display: none; }
}

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

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary, .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .stats-bar .stat-card .stat-number {
    font-size: 1.8rem;
  }
}

/* =============================================================
   SOCIAL PROOF BAR
   ============================================================= */
.social-proof {
  background: var(--off-white);
  padding: 30px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.social-proof .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.social-proof .proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 500;
}

.social-proof .proof-item .proof-icon {
  color: var(--gold);
  font-size: 0.9rem;
}

/* =============================================================
   PARALLAX & AOS OVERRIDES
   ============================================================= */
[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}

/* =============================================================
   FORCE CAIRO FONT ON EVERYTHING + FAVICON FIX
   ============================================================= */
}

/* Override any button/font-specific rules */
.btn-primary, .btn-secondary, .btn-login, .contact-action-btn, .faq-question, .step-card, .service-card, .showcase-card {
  font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Tahoma, sans-serif !important;
}

/* =============================================================
}

/* =============================================================
   CAIRO FONT: body + text elements only. NOT on FA icons.
   ============================================================= */
body, h1, h2, h3, h4, h5, h6, p, button, input, textarea,
li, td, th, label, nav, section, footer, header,
.btn-primary, .btn-secondary, .btn-login, .contact-action-btn,
.faq-question, .step-card, .service-card, .showcase-card,
.testimonial-card, .stat-card, .why-point, .why-detail-card,
.logo, .nav-links a, .footer h4, .footer ul li, .footer-brand p,
.section-title, .section-subtitle, .hero-desc, .hero-sub {
  font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Tahoma, sans-serif !important;
}

/* =============================================================
   WHATSAPP BUTTON - Phone number responsive
   ============================================================= */
.wa-number {
  font-size: 0.78em;
  font-weight: 600;
  direction: ltr;
  display: inline-block;
  unicode-bidi: plaintext;
}

.btn-secondary .wa-number {
  display: block;
  font-size: 0.72em;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 2px;
}

.contact-action-btn .wa-number {
  font-size: 0.82em;
  font-weight: 500;
}

/* Responsive: tablet and below */
@media (max-width: 768px) {
  .btn-secondary .wa-number {
    font-size: 0.7em;
  }
  .contact-action-btn .wa-number {
    font-size: 0.78em;
  }
}

/* Responsive: small phones */
@media (max-width: 480px) {
  .btn-secondary .wa-number {
    font-size: 0.65em;
  }
}
