@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Tajawal:wght@300;400;500;700;800&display=swap');

/* ==========================================
   DESIGN TOKENS & RESET
   ========================================== */
:root {
  /* Fonts */
  --font-sans: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-arabic: 'Tajawal', sans-serif;

  --font-body: var(--font-sans);
  --font-heading: var(--font-serif);

  /* Color Palette */
  --primary-pink: #FFBBE1;
  --secondary-lavender: #D78FEE;
  --soft-glow: #FDCFFA;
  --luxury-gold: #D4AF37;
  --gold-accent: #E5C158;
  --gold-glow: rgba(212, 175, 55, 0.4);

  /* Dark Luxury System */
  --bg-deep: #D78FEE;
  /* Deepest obsidian-aubergine */
  --bg-dark: #160A15;
  /* Core background */
  --bg-card: #20101F;
  /* Container surface */
  --bg-glass: rgba(26, 11, 25, 0.65);
  --bg-glass-heavy: rgba(22, 10, 21, 0.85);

  --border-glass: rgba(255, 187, 225, 0.15);
  --border-gold: rgba(212, 175, 55, 0.3);

  /* Text */
  --text-white: #FFFFFF;
  --text-muted: #E6D2E5;
  --text-dim: #A895A7;

  /* Gradients */
  --gradient-bg: linear-gradient(135deg, var(--bg-deep) 0%, #1B0E1B 50%, var(--bg-deep) 100%);
  --gradient-pink-purple: linear-gradient(135deg, var(--primary-pink) 0%, var(--secondary-lavender) 100%);
  --gradient-luxury-gold: linear-gradient(135deg, #B38728 0%, #FBF5B7 30%, #D4AF37 50%, #FBF5B7 70%, #AA771C 100%);
  --gradient-card: linear-gradient(145deg, rgba(38, 20, 37, 0.9) 0%, rgba(22, 10, 21, 0.9) 100%);
  --gradient-gold-bg: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.02) 100%);

  /* Box Shadows */
  --shadow-gold-pulse: 0 0 25px rgba(212, 175, 55, 0.3);
  --shadow-pink-pulse: 0 0 25px rgba(255, 187, 225, 0.2);
  --shadow-card: 0 20px 45px rgba(0, 0, 0, 0.5);
  --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

  /* Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);

  --header-height: 80px;
}

/* RTL Layout Font & Alignment Overrides */
html[dir="rtl"] {
  --font-body: var(--font-arabic);
  --font-heading: var(--font-arabic);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  overflow-x: hidden;
  background-color: var(--bg-deep);
  color: var(--text-white);
  font-family: var(--font-body);
}

body {
  min-height: 100vh;
  background: var(--gradient-bg);
  background-attachment: fixed;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Typography styling */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-weight: 800;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

ul {
  list-style: none;
}

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

/* ==========================================
   SCROLL REVEAL ANIMATIONS
   ========================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

/* Scale Reveal */
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================
   COMMON LAYOUT & UTILITIES
   ========================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

/* Gold Text Gradient */
.gold-gradient-text {
  background: var(--gradient-luxury-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

/* Section Header */
.section-header {
  margin-bottom: 60px;
  position: relative;
}

.section-header .section-tag {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-pink);
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  font-size: 40px;
  margin-bottom: 18px;
}

html[dir="rtl"] .section-header .section-tag {
  letter-spacing: 0;
  font-weight: 700;
}

.section-header .section-line {
  width: 80px;
  height: 3px;
  background: var(--gradient-luxury-gold);
  margin: 0 auto;
  border-radius: 2px;
}

/* Luxury Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  gap: 10px;
}

.btn-primary {
  background: var(--gradient-pink-purple);
  color: var(--text-white);
  box-shadow: 0 8px 25px rgba(255, 187, 225, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 187, 225, 0.5);
  background: linear-gradient(135deg, #ffd0ec 0%, #e2a8f8 100%);
}

.btn-gold {
  border: 1px solid var(--luxury-gold);
  color: var(--text-white);
  background: rgba(212, 175, 55, 0.05);
  box-shadow: var(--shadow-gold-pulse);
}

.btn-gold:hover {
  background: var(--gradient-luxury-gold);
  color: var(--bg-deep);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

/* Glassmorphism utility card */
.glass-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  box-shadow: var(--shadow-glass);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(255, 187, 225, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

/* ==========================================
   NAVIGATION BAR (Glassmorphism)
   ========================================== */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(13, 4, 12, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 187, 225, 0.08);
  z-index: 1000;
  transition: var(--transition-smooth);
}

.header-nav.scrolled {
  height: 70px;
  background: rgba(13, 4, 12, 0.85);
  border-bottom-color: rgba(212, 175, 55, 0.15);
}

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

/* Brand Logo */
.logo {
  display: flex;
  flex-direction: column;
}

.logo .brand-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  background: var(--gradient-luxury-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
}

.logo .brand-subtitle {
  font-size: 10px;
  color: var(--primary-pink);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 2px;
}

html[dir="rtl"] .logo .brand-subtitle {
  letter-spacing: 0;
  font-weight: 600;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-luxury-gold);
  transition: var(--transition-smooth);
}

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

.nav-link:hover::after {
  width: 100%;
}

html[dir="rtl"] .nav-link::after {
  left: auto;
  right: 0;
}

/* Controls (Language & Mobile Toggle) */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Language Toggle Button */
.lang-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 187, 225, 0.08);
  border: 1px solid var(--border-glass);
  border-radius: 30px;
  color: var(--text-white);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.lang-toggle-btn:hover {
  background: rgba(255, 187, 225, 0.15);
  border-color: var(--primary-pink);
  transform: translateY(-1px);
}

.lang-toggle-btn i {
  color: var(--luxury-gold);
  font-size: 16px;
}

/* Mobile Toggle Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 40px);
  padding-bottom: 60px;
  overflow: hidden;
}

/* Background Soft Glows */
.hero::before {
  content: '';
  position: absolute;
  top: 15%;
  right: 10%;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 143, 238, 0.25) 0%, rgba(13, 4, 12, 0) 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 187, 225, 0.15) 0%, rgba(13, 4, 12, 0) 70%);
  filter: blur(50px);
  z-index: 0;
  pointer-events: none;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--luxury-gold);
  text-transform: uppercase;
  margin-bottom: 24px;
}

html[dir="rtl"] .hero-badge {
  letter-spacing: 0;
}

.hero-content h1 {
  font-size: 54px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* Hero Showcase Panel (Right side) */
.hero-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.showcase-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 520px;
  border-radius: 120px 24px 120px 24px;
  padding: 12px;
  background: var(--gradient-luxury-gold);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.7), var(--shadow-gold-pulse);
  animation: float 6s ease-in-out infinite alternate;
  overflow: hidden;
}

.showcase-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 110px 18px 110px 18px;
}

/* Shimmer overlay effect for frame */
.showcase-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}

.showcase-frame:hover::after {
  transition: all 1.2s ease-in-out;
  left: 150%;
}

/* Floating Elements around hero showcase */
.floating-element {
  position: absolute;
  background: var(--bg-glass-heavy);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-card);
  z-index: 2;
  pointer-events: none;
}

.floating-reviews {
  top: 15%;
  left: -10%;
  animation: float 5s ease-in-out infinite alternate-reverse;
}

.floating-services {
  bottom: 12%;
  right: -5%;
  animation: float 7s ease-in-out 1s infinite alternate;
}

.floating-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-pink-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-deep);
  font-size: 16px;
}

.floating-text .title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-white);
  display: block;
}

.floating-text .subtitle {
  font-size: 11px;
  color: var(--primary-pink);
  display: block;
}

/* ==========================================
   ABOUT / FEATURES SECTION
   ========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-glass);
}

.about-img-wrapper img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.about-img-wrapper:hover img {
  transform: scale(1.04);
}

/* Offset gold border decoration */
.about-image::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid var(--luxury-gold);
  border-radius: 24px;
  z-index: -1;
  pointer-events: none;
}

html[dir="rtl"] .about-image::before {
  left: -20px;
  right: 20px;
}

/* About content and bullets */
.about-content h3 {
  font-size: 28px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-content p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 30px;
}

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

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--luxury-gold);
  font-size: 18px;
}

.feature-details h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-white);
}

.feature-details p {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 0;
  line-height: 1.5;
}

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

.service-card {
  padding: 40px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-pink-purple);
  opacity: 0;
  transition: var(--transition-fast);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 187, 225, 0.15) 0%, rgba(215, 143, 238, 0.05) 100%);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary-pink);
  font-size: 28px;
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-wrapper {
  background: var(--gradient-pink-purple);
  color: var(--bg-deep);
  transform: rotateY(180deg);
  box-shadow: var(--shadow-pink-pulse);
  border-color: transparent;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 14px;
  color: var(--text-white);
}

.service-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.6;
  flex-grow: 1;
}

.service-card .service-more-btn {
  margin-top: 24px;
  font-size: 13px;
  font-weight: 700;
  color: var(--luxury-gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.service-card .service-more-btn i {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.service-card:hover .service-more-btn {
  color: var(--primary-pink);
}

.service-card:hover .service-more-btn i {
  transform: translateX(4px);
}

html[dir="rtl"] .service-card:hover .service-more-btn i {
  transform: translateX(-4px);
}

/* ==========================================
   PRICING PACKAGES SECTION
   ========================================== */
.pricing-section {
  position: relative;
}

/* Currency Toggler */
.pricing-toggler-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.pricing-toggler-wrapper .label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.pricing-toggler-wrapper .label.active {
  color: var(--primary-pink);
}

.pricing-switch-control {
  position: relative;
  width: 60px;
  height: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 30px;
  padding: 4px;
  cursor: pointer;
}

.pricing-switch-control .switch-slider {
  display: block;
  width: 20px;
  height: 20px;
  background: var(--gradient-pink-purple);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

/* Slide class toggled via JS */
.pricing-switch-control.switched .switch-slider {
  transform: translateX(30px);
}

html[dir="rtl"] .pricing-switch-control.switched .switch-slider {
  transform: translateX(-30px);
}

/* Packages Layout */
.pricing-packages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.pricing-card {
  padding: 50px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Popular/Diamond & Royal/Exclusive Badges */
.pricing-card .card-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

html[dir="rtl"] .pricing-card .card-badge {
  right: auto;
  left: 24px;
  letter-spacing: 0;
}

.badge-diamond {
  background: rgba(255, 187, 225, 0.1);
  border: 1px solid var(--border-glass);
  color: var(--primary-pink);
}

.badge-exclusive {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--luxury-gold);
  color: var(--luxury-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

/* Exclusive Card Highlight Mode */
.pricing-card.premium-highlight {
  border-color: var(--luxury-gold);
  box-shadow: 0 25px 60px rgba(212, 175, 55, 0.15), 0 0 30px rgba(212, 175, 55, 0.05);
}

.pricing-card.premium-highlight:hover {
  box-shadow: 0 30px 70px rgba(212, 175, 55, 0.25), 0 0 40px rgba(212, 175, 55, 0.1);
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--text-white);
}

.pricing-card .card-subtext {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.pricing-card .card-price-row {
  margin-bottom: 30px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pricing-card .price-amount {
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
}

.pricing-card .price-currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--luxury-gold);
}

.pricing-card .price-period {
  font-size: 14px;
  color: var(--text-dim);
  margin-left: 4px;
}

/* Features inside card */
.pricing-features-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  flex-grow: 1;
}

.pricing-feature-line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}

.pricing-feature-line i {
  color: var(--luxury-gold);
  font-size: 14px;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}

/* Additional Services list styles */
.additional-services-panel {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
}

.additional-services-panel h3 {
  font-size: 24px;
  margin-bottom: 30px;
  text-align: center;
}

.services-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-list-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(255, 187, 225, 0.15);
}

.service-list-item .item-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-white);
}

.service-list-item .item-price {
  font-size: 18px;
  font-weight: 700;
  color: var(--luxury-gold);
  white-space: nowrap;
}

/* ==========================================
   PAYMENTS / CLIQ HIGHLIGHT SECTION
   ========================================== */
.payments-section {
  position: relative;
}

.payments-wrapper {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.payments-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

/* Virtual Credit Card Styling */
.cliq-card-container {
  perspective: 1000px;
  margin: 0 auto;
}

.cliq-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 260px;
  margin: 0 auto;
  border-radius: 20px;
  background: linear-gradient(135deg, #1d071c 0%, #080208 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), var(--shadow-gold-pulse);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
  overflow: hidden;
}

/* Card design decals */
.cliq-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 187, 225, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

/* RTL virtual card overrides */
html[dir="rtl"] .cliq-card {
  text-align: right;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-brand {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 1px;
}

.card-chip {
  width: 45px;
  height: 35px;
  background: linear-gradient(135deg, #fce999 0%, #b38728 100%);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.card-chip::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
}

.card-middle {
  margin: 20px 0;
}

.card-number-label {
  font-size: 9px;
  text-transform: uppercase;
  color: var(--text-dim);
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  display: block;
}

.card-number-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-number {
  font-family: monospace;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 2px;
  color: var(--luxury-gold);
}

.cliq-copy-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  transition: var(--transition-fast);
}

.cliq-copy-btn:hover {
  background: var(--luxury-gold);
  color: var(--bg-deep);
  border-color: transparent;
  transform: scale(1.1);
}

.card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card-holder .name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-white);
  text-transform: uppercase;
}

.card-badge-cliq {
  background: var(--gradient-luxury-gold);
  color: var(--bg-deep);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

/* Accepted other methods icons */
.payment-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 36px;
  opacity: 0.7;
}

.payment-logos i {
  font-size: 32px;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.payment-logos i:hover {
  color: var(--primary-pink);
  opacity: 1;
}

/* ==========================================
   GOOGLE MAPS & LOCATION
   ========================================== */
.location-section {
  position: relative;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

.location-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info h3 {
  font-size: 26px;
  margin-bottom: 18px;
}

.location-info p {
  color: var(--text-muted);
  font-size: 16px;
  margin-bottom: 30px;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}

.loc-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.loc-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 187, 225, 0.1);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-pink);
  font-size: 18px;
  flex-shrink: 0;
}

.loc-text h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.loc-text p {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 0;
}

/* Map frame layout */
.map-wrapper {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-card);
  height: 400px;
  position: relative;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(1.1);
  /* Dark maps styling */
}

/* ==========================================
   FOOTER SECTION
   ========================================== */
.footer {
  background: #090308;
  border-top: 1px solid rgba(255, 187, 225, 0.08);
  padding: 80px 0 30px 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  font-size: 22px;
  font-weight: 700;
  background: var(--gradient-luxury-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 320px;
}

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

.social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 16px;
  transition: var(--transition-smooth);
}

.social-icon-btn:hover {
  background: var(--gradient-luxury-gold);
  color: var(--bg-deep);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold-pulse);
}

.footer-links h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-white);
  position: relative;
  display: inline-block;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--luxury-gold);
}

html[dir="rtl"] .footer-links h4::after {
  left: auto;
  right: 0;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 14px;
  color: var(--text-white);
  transition: var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--primary-pink);
  padding-left: 6px;
}

html[dir="rtl"] .footer-links-list a:hover {
  padding-left: 0;
  padding-right: 6px;
}

/* Footer bottom credits */
.footer-bottom {
  border-top: 1px solid rgba(255, 187, 225, 0.05);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-dim);
}

/* ==========================================
   FLOATING BUTTONS
   ========================================== */
.floating-whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

/* Shift widget to left in RTL so it doesn't block typical RTL layout reading */
html[dir="rtl"] .floating-whatsapp-widget {
  right: auto;
  left: 30px;
}

.whatsapp-pulse-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  position: relative;
  transition: var(--transition-smooth);
}

.whatsapp-pulse-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: pulseGreen 2.5s infinite;
  pointer-events: none;
}

.whatsapp-pulse-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

/* Keyframes pulse animations */
@keyframes pulseGreen {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-15px);
  }
}

/* Toast Notification (Copy success feedback) */
.toast-msg {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--bg-glass-heavy);
  border: 1px solid var(--luxury-gold);
  color: var(--text-white);
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  z-index: 1001;
  opacity: 0;
  box-shadow: var(--shadow-card), var(--shadow-gold-pulse);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
}

.toast-msg.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ==========================================
   RESPONSIVENESS (MEDIA QUERIES)
   ========================================== */

/* Tablet Layout (1024px and below) */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .hero-grid {
    gap: 30px;
  }

  .hero-content h1 {
    font-size: 44px;
  }

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

/* Small Tablet / Large Mobile (768px and below) */
@media (max-width: 768px) {
  .section-padding {
    padding: 70px 0;
  }

  .section-header h2 {
    font-size: 32px;
  }

  /* Navigation Menu Panel */
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--bg-glass-heavy);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding: 40px;
    transition: var(--transition-smooth);
    z-index: 999;
    border-top: 1px solid rgba(255, 187, 225, 0.05);
  }

  /* Sliding direction base on lang */
  .nav-menu.active {
    left: 0;
  }

  html[dir="rtl"] .nav-menu {
    left: auto;
    right: 100%;
  }

  html[dir="rtl"] .nav-menu.active {
    right: 0;
  }

  /* Hero Split mirroring to block vertical grid */
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }

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

  .hero-badge {
    align-self: center;
  }

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

  .hero-showcase {
    order: -1;
    /* Image on top for mobile views */
  }

  .showcase-frame {
    height: 420px;
  }

  .floating-reviews {
    left: 0;
  }

  .floating-services {
    right: 0;
  }

  /* About and locations columns mirroring */
  .about-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
    /* image on top */
    max-width: 500px;
    margin: 0 auto;
  }

  .about-img-wrapper img {
    height: 350px;
  }

  .pricing-packages-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }

  .services-list-grid {
    grid-template-columns: 1fr;
  }

  .map-wrapper {
    height: 300px;
  }
}

/* Mobile Screen (480px and below) */
@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 15px;
  }

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

  .pricing-card {
    padding: 40px 24px;
  }

  .pricing-card .price-amount {
    font-size: 42px;
  }

  .cliq-card {
    height: 220px;
    padding: 20px;
  }

  .card-number {
    font-size: 18px;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Hamburger animations */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}