/* ===== CSS VARIABLES ===== */
:root {
  --primary: #0A7EA4;
  --primary-light: #1AAFD0;
  --primary-dark: #065E7C;
  --accent: #F5A623;
  --accent-dark: #D4891A;
  --bg: #F8FAFB;
  --surface: #FFFFFF;
  --surface-2: #F0F6FA;
  --text: #1A2332;
  --text-muted: #5A6878;
  --border: #E2EBF0;
  --shadow-sm: 0 1px 3px rgba(10,126,164,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow: 0 4px 16px rgba(10,126,164,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 40px rgba(10,126,164,.15), 0 4px 12px rgba(0,0,0,.08);
  --radius: 14px;
  --radius-sm: 8px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 72px;
  --wa-green: #25D366;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  direction: rtl;
}
body.ltr { direction: ltr; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
#header.scrolled {
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-ar { font-size: 1.1rem; font-weight: 900; color: var(--primary); }
.logo-en { font-size: 0.65rem; font-weight: 600; color: var(--text-muted); letter-spacing: 1px; }

/* Nav */
#main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: rgba(10,126,164,.08);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn-lang {
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  border: 1.5px solid var(--primary);
  transition: var(--transition);
}
.btn-lang:hover {
  background: var(--primary);
  color: white;
}
.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--wa-green);
  color: white;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(37,211,102,.3);
}
.btn-whatsapp:hover { background: #20b558; transform: translateY(-1px); }

/* Hamburger */
.btn-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.btn-menu span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.btn-menu.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.btn-menu.active span:nth-child(2) { opacity: 0; }
.btn-menu.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(10,126,164,.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(10,126,164,.4);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 2px solid rgba(255,255,255,.6);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: white;
}
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION COMMON ===== */
section { padding: 90px 0; }
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(10,126,164,.08);
  color: var(--primary);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HERO ===== */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  background: linear-gradient(135deg, #065E7C 0%, #0A7EA4 50%, #1AAFD0 100%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.shape-1 { width: 600px; height: 600px; top: -200px; left: -200px; }
.shape-2 { width: 400px; height: 400px; bottom: -100px; right: -100px; background: rgba(245,166,35,.08); }
.shape-3 { width: 200px; height: 200px; top: 30%; right: 20%; background: rgba(255,255,255,.04); }

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 20px;
}
.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px;
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.25;
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,.15);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.85);
  max-width: 620px;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 16px;
  padding: 20px 32px;
  backdrop-filter: blur(12px);
  gap: 24px;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stat strong {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,.8);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.25);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.scroll-arrow {
  width: 24px; height: 24px;
  border-right: 2px solid rgba(255,255,255,.5);
  border-bottom: 2px solid rgba(255,255,255,.5);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 0.5; }
}

/* ===== SERVICES ===== */
#services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.service-icon {
  width: 72px; height: 72px;
  margin: 0 auto 20px;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== LOCATIONS ===== */
#locations {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}
#locations .section-header .section-tag {
  background: rgba(255,255,255,.15);
  color: white;
}
#locations .section-header h2 { color: white; }
#locations .section-header p { color: rgba(255,255,255,.8); }
.locations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.location-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 50px;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.location-chip:hover {
  background: rgba(255,255,255,.22);
  transform: translateY(-2px);
}
.location-chip svg path { fill: white; }

/* ===== WHY US ===== */
#why-us { background: var(--surface-2); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.why-icon {
  width: 64px; height: 64px;
  margin-bottom: 20px;
}
.why-icon svg { width: 100%; height: 100%; }
.why-card h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.4;
}
.why-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ===== BOOKING ===== */
#booking {
  background: var(--bg);
}
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.booking-text .section-tag { text-align: right; }
.booking-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.booking-tagline {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}
.booking-text p {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.8;
}
.booking-steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(10,126,164,.3);
}
.step-content h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.step-content p { font-size: 0.88rem; color: var(--text-muted); }

/* ===== TESTIMONIALS ===== */
#testimonials { background: var(--surface-2); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.stars {
  color: var(--accent);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 0.92rem; font-weight: 800; }
.reviewer span { font-size: 0.8rem; color: var(--text-muted); }

/* ===== FAQ ===== */
#faq { background: var(--bg); }
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--primary-light); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  text-align: right;
  gap: 12px;
  transition: var(--transition);
}
.faq-q:hover { color: var(--primary); }
.faq-q svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--primary);
}
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-a p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ===== CONTACT ===== */
#contact {
  background: var(--surface-2);
  position: relative;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.contact-text p {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.8;
}
.btn-whatsapp-big {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--wa-green);
  color: white;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn-whatsapp-big:hover {
  background: #20b558;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
}
.contact-form {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
  direction: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(10,126,164,.12);
  background: white;
}
.form-group input.error,
.form-group select.error {
  border-color: #E53E3E;
}
.form-group textarea { resize: vertical; }

/* Toast */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #2D8B4E;
  color: white;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease;
}
.toast.hidden { opacity: 0; }
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ===== FOOTER ===== */
#footer {
  background: var(--text);
  color: rgba(255,255,255,.85);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo-ar { color: white; }
.footer-brand p {
  margin-top: 16px;
  font-size: 0.88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  max-width: 300px;
}
.footer-links h4, .footer-contact h4 {
  color: white;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.footer-links a, .footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: 0.88rem;
  padding: 4px 0;
  transition: var(--transition);
}
.footer-links a:hover, .footer-contact a:hover {
  color: var(--accent);
}
.footer-bottom {
  text-align: center;
  padding: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.4);
}

/* ===== FLOATING WA ===== */
.floating-wa {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 58px; height: 58px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse-wa 2.5s ease-in-out infinite;
}
.floating-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.5);
  animation: none;
}
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,.6), 0 0 0 8px rgba(37,211,102,.1); }
}

/* LTR adjustments */
body.ltr .floating-wa { left: auto; right: 28px; }
body.ltr .section-header { text-align: center; }
body.ltr .booking-text .section-tag { text-align: left; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  #main-nav { display: none; }
  #main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: white;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
    z-index: 999;
    gap: 4px;
  }
  .nav-link { padding: 12px 20px; border-radius: var(--radius-sm); font-size: 1rem; }
  .btn-menu { display: flex; }
  .header-wa span { display: none; }
  .header-wa { padding: 8px 12px; }

  .booking-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; padding: 24px; }
  .stat-divider { width: 40px; height: 1px; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
}
@media (max-width: 400px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 24px 16px; }
}

/* ===== WHY-US ICON CENTERING FIX ===== */
.why-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.why-icon svg {
  width: 80px;
  height: 80px;
}
.why-card h3 { text-align: center; }
.why-card p  { text-align: center; }

/* ===== LOGO IMAGE ===== */
/* Header logo — transparent PNG, no background, no border-radius */
#header .logo-icon {
  background: transparent !important;
  box-shadow: none !important;
}
#header .logo-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  /* mix-blend-mode helps on any residual fringe */
  mix-blend-mode: multiply;
}
/* Footer logo — original with black background, keep rounded */
.footer-brand .logo-icon {
  background: #111;
  border-radius: 10px;
  padding: 4px;
  display: inline-flex;
}
.footer-brand .logo-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
}

/* ===== CONTACT CTA (replaces old contact form) ===== */
#contact {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  pointer-events: none;
}
#contact::after {
  content: '';
  position: absolute;
  bottom: -80px; right: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(245,166,35,.08);
  pointer-events: none;
}
#contact .section-tag {
  background: rgba(255,255,255,.15);
  color: white;
}
.contact-cta {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  color: white;
  margin-bottom: 16px;
}
.cta-content p {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border: 2px solid rgba(255,255,255,.4);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  direction: ltr;
}
.btn-phone:hover {
  background: rgba(255,255,255,.12);
  border-color: white;
}
.cta-visual {
  display: flex;
  justify-content: center;
}
.cta-bubble {
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  backdrop-filter: blur(10px);
  max-width: 280px;
}
.bubble-icon {
  width: 72px; height: 72px;
  background: var(--wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  animation: pulse-wa 2.5s ease-in-out infinite;
}
.cta-bubble p {
  color: rgba(255,255,255,.9);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}

/* Responsive contact CTA */
@media (max-width: 768px) {
  .contact-cta {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .cta-actions { justify-content: center; }
  .cta-visual { display: none; }
}
