/* ============================================================
   ROOT & CSS VARIABLES
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --secondary: #0d9488;
  --secondary-dark: #0f766e;
  --accent: #06b6d4;

  --bg-dark: #0a0f1e;
  --bg-dark-2: #0f172a;
  --bg-card: #111827;

  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);

  --text-light: #f8fafc;
  --text-muted: #94a3b8;
  --text-body: #cbd5e1;

  --gradient-main: linear-gradient(135deg, #0ea5e9 0%, #0d9488 100%);
  --gradient-hero: linear-gradient(135deg, #0a0f1e 0%, #0c1a2e 50%, #071a1a 100%);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(14, 165, 233, 0.2);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Cairo', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-body);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-block;
  background: rgba(14, 165, 233, 0.15);
  color: var(--primary);
  border: 1px solid rgba(14, 165, 233, 0.3);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.light-label {
  background: rgba(255, 255, 255, 0.1);
  color: #7dd3fc;
  border-color: rgba(255, 255, 255, 0.2);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.3;
  margin-bottom: 16px;
}

.light-title {
  color: white;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(10, 15, 30, 0);
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--glass-border);
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-icon.small {
  width: 32px;
  height: 32px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
}

.nav-cta {
  background: var(--gradient-main);
  color: white;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.5);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0.15;
}

@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.15; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* Hero background glow blobs */
.hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}

.hero-content {
  flex: 1;
  position: relative;
  z-index: 1;
  animation: hero-enter 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.25);
  color: #7dd3fc;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--text-light);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.8;
}

.hero-subtitle strong {
  color: var(--primary);
  font-weight: 700;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--glass-border);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-main);
  color: white;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(14, 165, 233, 0.5);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  padding: 14px 22px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  color: var(--text-light);
  border-color: rgba(14, 165, 233, 0.4);
  background: rgba(14, 165, 233, 0.08);
}

/* Hero Image */
.hero-image-wrapper {
  flex: 0 0 45%;
  position: relative;
  z-index: 1;
  animation: hero-image-enter 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

@keyframes hero-image-enter {
  from { opacity: 0; transform: translateX(40px) scale(0.95); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

.hero-image-container {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.hero-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transition: var(--transition-slow);
}

.hero-img:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 60px rgba(14, 165, 233, 0.3);
}

.hero-image-badge {
  position: absolute;
  bottom: -16px;
  left: -20px;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #22c55e;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 100px;
  animation: scroll-wheel 1.5s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0%, 100% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0; transform: translateY(6px); }
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  padding: 100px 24px;
  position: relative;
}

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

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.03), transparent);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(14, 165, 233, 0.1);
}

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

.service-emoji-icon {
  width: 60px;
  height: 60px;
  background: var(--emoji-bg, linear-gradient(135deg, #0ea5e9, #0d9488));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.7rem;
  box-shadow: 0 6px 20px var(--emoji-glow, rgba(14,165,233,0.3));
  transition: var(--transition);
  line-height: 1;
}

.service-card:hover .service-emoji-icon {
  transform: scale(1.1) rotate(-4deg);
  box-shadow: 0 10px 30px var(--emoji-glow, rgba(14,165,233,0.45));
}

/* Feature icon color variants */
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.feature-item:hover .feature-icon {
  transform: scale(1.12);
}

.feature-icon.fi-blue  { background: rgba(14,165,233,0.12); border-color: rgba(14,165,233,0.25); }
.feature-icon.fi-teal  { background: rgba(13,148,136,0.12); border-color: rgba(13,148,136,0.25); }
.feature-icon.fi-green { background: rgba(34,197,94,0.12);  border-color: rgba(34,197,94,0.25);  }
.feature-icon.fi-purple{ background: rgba(139,92,246,0.12); border-color: rgba(139,92,246,0.25); }

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.4;
}

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

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 100px 24px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.04), rgba(13, 148, 136, 0.04));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 70px;
  align-items: center;
}

.about-image-wrapper {
  flex: 0 0 45%;
  position: relative;
}

.about-img {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-slow);
}

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

.about-experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-main);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.4);
}

.about-experience-badge strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
}

.about-experience-badge span {
  font-size: 0.75rem;
  opacity: 0.85;
}

.about-content {
  flex: 1;
}

.about-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-text strong {
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.95rem;
}

.feature-text span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ============================================================
   BOOKING SECTION
   ============================================================ */
.booking-section {
  padding: 100px 24px;
  background: linear-gradient(135deg, #050d1a 0%, #07191a 100%);
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
  top: -200px;
  left: -100px;
  pointer-events: none;
}

.booking-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.booking-header {
  text-align: center;
  margin-bottom: 56px;
}

.booking-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.booking-card {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Form Side */
.booking-form-side {
  padding: 48px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.form-group label svg {
  stroke: var(--primary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  color: var(--text-light);
  font-family: 'Cairo', sans-serif;
  font-size: 0.95rem;
  direction: rtl;
  transition: var(--transition);
  resize: none;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: rgba(14, 165, 233, 0.05);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.whatsapp-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border: none;
  padding: 16px 28px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.whatsapp-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.45);
}

.whatsapp-submit-btn:active {
  transform: translateY(-1px);
}

/* Info Side */
.booking-info-side {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.12), rgba(13, 148, 136, 0.12));
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.info-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.info-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.info-header h3 {
  color: var(--text-light);
  font-weight: 800;
  font-size: 1.05rem;
}

.info-header p {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.info-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.info-contact {
  margin-bottom: 24px;
}

.info-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
  transition: var(--transition);
}

.info-phone:hover {
  color: var(--accent);
}

.info-phone svg {
  stroke: currentColor;
}

.info-steps h4 {
  color: var(--text-light);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.step-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gradient-main);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step p {
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.6;
  padding-top: 3px;
}

.info-whatsapp-direct {
  margin-top: auto;
  padding-top: 24px;
}

.direct-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.25);
}

.direct-wa-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #030710;
  padding: 28px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.floating-wa {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  transition: var(--transition);
  z-index: 999;
}

.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.65);
}

.floating-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: floating-pulse 2s ease-out infinite;
}

@keyframes floating-pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 24px 60px;
  }

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

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

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image-wrapper {
    flex: unset;
    width: 80%;
    max-width: 450px;
    margin: 0 auto;
  }

  .about-container {
    flex-direction: column;
    gap: 60px;
  }

  .about-image-wrapper {
    flex: unset;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }

  .booking-card {
    grid-template-columns: 1fr;
  }

  .booking-info-side {
    border-right: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 100px 20px 60px;
    gap: 40px;
  }

  .hero-title {
    font-size: 2rem;
  }

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

  .booking-form-side {
    padding: 28px 24px;
  }

  .booking-info-side {
    padding: 28px 24px;
  }

  .stat-divider {
    display: none;
  }

  .hero-image-wrapper {
    width: 100%;
  }

  .floating-wa {
    bottom: 20px;
    left: 20px;
    width: 54px;
    height: 54px;
  }

  .nav-cta {
    display: none;
  }

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