/* ============================================
           ROOT VARIABLES & GLOBAL STYLES
           ============================================ */
:root {
  --primary-navy: #0a1f44;
  --secondary-navy: #1a3a6b;
  --accent-red: #ed1c24;
  --accent-cyan: #00a3e0;
  --gold: #ffd700;
  --light-bg: #f9fafb;
  --text-dark: #374151;
  --text-muted: #6b7280;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* ============================================
           NAVIGATION STYLES
           ============================================ */

.navbar-main {
  background: white;
  padding: 15px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.navbar-brand img {
  max-width: 180px;
  height: auto;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link {
  color: var(--primary-navy);
  text-decoration: none;
  padding: 12px 18px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.nav-link:hover {
  color: var(--accent-red);
  background: rgba(237, 28, 36, 0.05);
}

/* Dropdown Styles */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > .nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown > .nav-link::after {
  content: "";
  border: solid var(--primary-navy);
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  margin-top: -3px;
}

.nav-dropdown:hover > .nav-link::after {
  transform: rotate(-135deg);
  border-color: var(--accent-red);
}

.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 320px;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-dropdown:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.dropdown-item:hover {
  background: linear-gradient(
    90deg,
    rgba(237, 28, 36, 0.08) 0%,
    rgba(237, 28, 36, 0.02) 100%
  );
  color: var(--accent-red);
  border-left-color: var(--accent-red);
}

.dropdown-item i {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-red) 0%, #ff6b6b 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 14px;
}

.dropdown-item span {
  flex: 1;
}

.dropdown-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 8px 0;
}

/* Mobile Toggle Button */
.navbar-toggler {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background: var(--primary-navy);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  gap: 5px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 100000;
}

.navbar-toggler:hover {
  background: var(--accent-red);
}

.navbar-toggler.active {
  background: var(--accent-red);
}

.navbar-toggler span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar-toggler.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active span:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0a1f44;
  z-index: 99999;
  padding: 80px 25px 30px;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  visibility: hidden;
}

.mobile-menu-overlay.active {
  transform: translateX(0);
  visibility: visible;
}

.mobile-nav-link {
  display: block;
  color: white;
  text-decoration: none;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
  color: var(--gold);
  text-decoration: none;
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: white;
}

.mobile-dropdown-toggle i {
  transition: transform 0.3s ease;
  font-size: 14px;
}

.mobile-dropdown-toggle.active {
  color: var(--gold);
}

.mobile-dropdown-toggle.active i {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  display: none;
  padding-left: 15px;
  padding-bottom: 10px;
  background: rgba(0, 0, 0, 0.2);
  margin: 0 -25px;
  padding: 10px 25px 10px 40px;
}

.mobile-dropdown-menu.active {
  display: block;
}

.mobile-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.mobile-dropdown-item:last-child {
  border-bottom: none;
}

.mobile-dropdown-item i {
  width: 20px;
  text-align: center;
  color: var(--accent-cyan);
}

.mobile-dropdown-item:hover,
.mobile-dropdown-item:focus {
  color: var(--gold);
  text-decoration: none;
}

.mobile-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-close-btn:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
}

.mobile-menu-logo {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-logo img {
  max-width: 150px;
  height: auto;
}

/* Responsive */
@media (max-width: 991px) {
  .navbar-menu {
    display: none;
  }

  .navbar-toggler {
    display: flex;
  }
}

/* ============================================
           TOPBAR STYLES
           ============================================ */

.topbar {
  background: var(--primary-navy);
  padding: 10px 0;
  font-size: 13px;
}

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

.topbar-left .welcome-text {
  color: var(--gold);
  font-weight: 600;
}

.topbar-left .welcome-text i {
  margin-right: 8px;
}

.topbar-right {
  text-align: right;
}

.topbar-right .social-icon {
  color: white;
  margin-left: 15px;
  font-size: 16px;
  transition: color 0.3s;
}

.topbar-right .social-icon:hover {
  color: var(--gold);
}

/* Language Selector */
.language-selector {
  background: #f8f9fa;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.language-selector .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.language-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.language-button {
  background: transparent;
  border: 1px solid #ddd;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex; /* Changed from flex */
  align-items: center;
  gap: 5px;
  text-decoration: none; /* Added */
  color: #333; /* Added */
}

.language-button:hover,
.language-button.active {
  background: var(--primary-navy);
  color: white;
  border-color: var(--primary-navy);
  text-decoration: none; /* Added */
}

/* Contact Bar */
.topbar-logo {
  background: white;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.topbar-logo .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-info {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
  flex-wrap: wrap;
}

.box-icon-1 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.box-icon-1 .icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--accent-red) 0%, #ff6b6b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.box-icon-1 .heading {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.box-icon-1 a {
  color: var(--primary-navy);
  font-weight: 600;
  text-decoration: none;
}

.btn-cta {
  background: linear-gradient(135deg, var(--accent-red) 0%, #ff6b6b 100%);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 5px 20px rgba(237, 28, 36, 0.3);
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(237, 28, 36, 0.4);
  color: white;
}

/* ============================================
           HERO SECTION
           ============================================ */

.hero-section {
  background: linear-gradient(
    135deg,
    var(--primary-navy) 0%,
    var(--secondary-navy) 100%
  );
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("images/miracle-business-corporate.jpg") center/cover;
  opacity: 0.1;
}

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

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(237, 28, 36, 0.2);
  border: 2px solid var(--accent-red);
  border-radius: 50px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, #ffa500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-red) 0%, #ff6b6b 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(237, 28, 36, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(237, 28, 36, 0.4);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  opacity: 0.8;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* ============================================
           SERVICES SECTION
           ============================================ */

.services-section {
  padding: 80px 0;
  background: var(--light-bg);
}

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

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

.section-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(237, 28, 36, 0.1);
  color: var(--accent-red);
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
}

.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  margin-bottom: 30px;
  position: relative;
  height: calc(100% - 20px); /* Adjust for the gap */
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card.featured {
  border: 2px solid var(--accent-red);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-red);
  color: white;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-red) 0%, #ff6b6b 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(237, 28, 36, 0.2);
}

.service-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 15px;
}

.service-description {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.service-features li {
  padding: 8px 0;
  color: var(--text-dark);
}

.service-features i {
  color: var(--accent-red);
  margin-right: 10px;
}

.service-link {
  color: var(--accent-red);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-link:hover {
  gap: 12px;
}

/* ============================================
           ABOUT SECTION
           ============================================ */

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

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

.about-image {
  position: relative;
  margin-bottom: 30px;
}

.about-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--accent-red) 0%, #ff6b6b 100%);
  color: white;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(237, 28, 36, 0.3);
}

.badge-number {
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
}

.badge-text {
  font-size: 14px;
  margin-top: 5px;
}

.lead-text {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-item i {
  color: var(--accent-red);
  font-size: 20px;
}

/* ============================================
           WHY SECTION
           ============================================ */

.why-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    var(--primary-navy) 0%,
    var(--secondary-navy) 100%
  );
  color: white;
}

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

.why-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-red) 0%, #ff6b6b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 20px;
}

.why-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-description {
  opacity: 0.9;
}

/* ============================================
           CONTACT SECTION
           ============================================ */

.contact-section {
  padding: 80px 0;
  background: var(--light-bg);
}

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

.contact-card {
  background: white;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  text-align: center;
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-red) 0%, #ff6b6b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  margin: 0 auto 20px;
}

.contact-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 15px;
}

.contact-card p {
  margin-bottom: 10px;
  color: var(--text-muted);
}

.contact-card a {
  color: var(--accent-red);
  text-decoration: none;
  font-weight: 600;
}

.location-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.location-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-link {
  color: #25d366;
  font-size: 24px;
  margin-left: auto;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 250px;
  border: none;
}

.location-address {
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
           FOOTER
           ============================================ */

.footer {
  background: var(--primary-navy);
  color: white;
  padding: 60px 0 0;
}

.footer-item {
  margin-bottom: 30px;
}

.footer-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 25px;
  color: white;
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #ffd700 0%, #e1570c 100%);
  border-radius: 3px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social .social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-social .social-icon:hover {
  background: var(--accent-red);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  padding-bottom: 3px;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ffd700 0%, #ffa500 200%);
  transition: width 0.3s ease;
  border-radius: 2px;
}

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

.footer-links a:hover::after {
  width: 100%;
}

.fcopy {
  background: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  margin-top: 40px;
}

.fcopy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* ============================================
           UTILITIES
           ============================================ */

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

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

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

/* Back to Top */
.cd-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--accent-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 100;
}

.cd-top.cd-is-visible {
  opacity: 1;
  visibility: visible;
}

.cd-top:hover {
  background: var(--primary-navy);
  color: white;
}

/* Loading */
.animationload {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.3s;
}

.loader {
  width: 50px;
  height: 50px;
  border: 4px solid #eee;
  border-top-color: var(--accent-red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* ============================================
           RESPONSIVE STYLES
           ============================================ */

@media (max-width: 991px) {
  .topbar .row {
    flex-direction: column;
    text-align: center;
  }

  .topbar-right {
    margin-top: 10px;
    text-align: center;
  }

  .contact-info {
    justify-content: center;
  }

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

  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 32px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .contact-info {
    flex-direction: column;
    gap: 15px;
  }

  .box-icon-1 {
    justify-content: center;
  }

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

@media (max-width: 576px) {
  .hero-section {
    padding: 60px 0;
  }

  .hero-buttons {
    flex-direction: column;
  }

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

/* ================================
   AI CHATBOT STYLES - ADD TO YOUR EXISTING CSS
   ================================ */

/* Chatbot Trigger Button */
.chatbot-trigger {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #ed1c24 0%, #ff6b6b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(237, 28, 36, 0.4);
  z-index: 10000;
  transition: all 0.3s ease;
  border: 3px solid white;
  animation: chatPulse 2s infinite;
}

.chatbot-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(237, 28, 36, 0.5);
}

@keyframes chatPulse {
  0%,
  100% {
    box-shadow:
      0 8px 30px rgba(237, 28, 36, 0.4),
      0 0 0 0 rgba(237, 28, 36, 0.4);
  }

  50% {
    box-shadow:
      0 8px 30px rgba(237, 28, 36, 0.4),
      0 0 0 15px rgba(237, 28, 36, 0);
  }
}

.chatbot-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ffd700;
  color: #0a1f44;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  border: 2px solid white;
}

/* Chatbot Container */
.chatbot-container {
  position: fixed;
  bottom: 120px;
  right: 30px;
  width: 420px;
  max-width: calc(100vw - 60px);
  height: 600px;
  max-height: calc(100vh - 180px);
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: slideUp 0.3s ease-out;
}

.chatbot-container.active {
  display: flex;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Chatbot Header */
.chatbot-header {
  background: linear-gradient(135deg, #0a1f44 0%, #1a3a6b 100%);
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.chatbot-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ed1c24 0%, #ff6b6b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.chatbot-header-info {
  flex: 1;
}

.chatbot-header-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 3px 0;
}

.chatbot-status {
  font-size: 13px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: blink 2s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.chatbot-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.chatbot-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* Messages Area */
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  background: #f9fafb;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.chatbot-messages::-webkit-scrollbar {
  width: 6px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.chat-message {
  display: flex;
  gap: 10px;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-message.user {
  flex-direction: row-reverse;
}

.chat-message-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.chat-message.bot .chat-message-avatar {
  background: linear-gradient(135deg, #ed1c24 0%, #ff6b6b 100%);
  color: white;
}

.chat-message.user .chat-message-avatar {
  background: #0a1f44;
  color: white;
}

.chat-message-content {
  max-width: 75%;
}

.chat-message-bubble {
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.5;
}

.chat-message.bot .chat-message-bubble {
  background: white;
  color: #374151;
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.chat-message.user .chat-message-bubble {
  background: #0a1f44;
  color: white;
  border-bottom-right-radius: 4px;
}

.chat-message-time {
  font-size: 11px;
  color: #6b7280;
  margin-top: 4px;
  opacity: 0.7;
}

/* Quick Reply Buttons */
.quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.quick-reply-btn {
  background: white;
  border: 2px solid #ed1c24;
  color: #ed1c24;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.quick-reply-btn:hover {
  background: #ed1c24;
  color: white;
  transform: translateY(-2px);
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  background: white;
  border-radius: 18px;
  border-bottom-left-radius: 4px;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.typing-dot {
  width: 8px;
  height: 8px;
  background: #6b7280;
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.7;
  }

  30% {
    transform: translateY(-10px);
    opacity: 1;
  }
}

/* Input Area */
.chatbot-input-area {
  padding: 15px 20px;
  background: white;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 10px;
  align-items: center;
}

.chatbot-input {
  flex: 1;
  border: 2px solid #f9fafb;
  padding: 12px 16px;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
}

.chatbot-input:focus {
  border-color: #ed1c24;
  background: #f9fafb;
}

.chatbot-send-btn {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #ed1c24 0%, #ff6b6b 100%);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.chatbot-send-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(237, 28, 36, 0.3);
}

.chatbot-send-btn:active {
  transform: scale(0.95);
}

/* Service Cards in Chat */
.service-card-chat {
  background: linear-gradient(135deg, #0a1f44 0%, #1a3a6b 100%);
  padding: 15px;
  border-radius: 12px;
  color: white;
  margin-top: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.service-card-chat:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
}

.service-card-chat h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px 0;
}

.service-card-chat p {
  font-size: 12px;
  opacity: 0.9;
  margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .chatbot-container {
    bottom: 110px;
    right: 15px;
    left: 15px;
    width: auto;
    height: 550px;
  }

  .chatbot-trigger {
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

  /* ============================================
   WHATSAPP REVIEWS SECTION
   ============================================ */
      /* ============================================
   GOOGLE REVIEWS SECTION
   ============================================ */
      .google-reviews-section {
        padding: 90px 0;
        background: #fff;
        position: relative;
        overflow: hidden;
      }

      .google-reviews-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 2;
      }

      /* Google Score Banner */
      .google-score-banner {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 50px;
        background: linear-gradient(135deg, #0a1f44 0%, #1a3a6b 100%);
        border-radius: 24px;
        padding: 36px 40px;
        margin-bottom: 60px;
        flex-wrap: wrap;
        box-shadow: 0 20px 60px rgba(10, 31, 68, 0.2);
        position: relative;
        overflow: hidden;
      }

      .google-score-banner::before {
        content: "";
        position: absolute;
        top: -40px;
        right: -40px;
        width: 200px;
        height: 200px;
        background: rgba(255, 255, 255, 0.04);
        border-radius: 50%;
      }

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

      .g-logo-circle {
        width: 54px;
        height: 54px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        font-weight: 900;
        color: #4285f4;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        flex-shrink: 0;
      }

      .gsb-logo-text {
        color: white;
        font-size: 18px;
        font-weight: 700;
        line-height: 1.2;
      }

      .gsb-logo-text span {
        display: block;
        font-size: 12px;
        opacity: 0.75;
        font-weight: 400;
      }

      .gsb-divider {
        width: 1px;
        height: 60px;
        background: rgba(255, 255, 255, 0.2);
      }

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

      .gsb-num {
        font-size: 64px;
        font-weight: 900;
        color: #ffd700;
        line-height: 1;
        letter-spacing: -2px;
      }

      .gsb-stars {
        font-size: 22px;
        color: #ffd700;
        letter-spacing: 3px;
        margin: 4px 0;
      }

      .gsb-total {
        color: rgba(255, 255, 255, 0.7);
        font-size: 13px;
      }

      .gsb-stat {
        text-align: center;
        color: white;
      }

      .gsb-stat-num {
        font-size: 42px;
        font-weight: 800;
        color: #ffd700;
        line-height: 1;
      }

      .gsb-stat-label {
        font-size: 13px;
        opacity: 0.75;
        margin-top: 4px;
      }

      /* Review Cards Grid */
      .reviews-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-bottom: 40px;
      }

      @media (max-width: 991px) {
        .reviews-grid {
          grid-template-columns: repeat(2, 1fr);
        }
      }
      @media (max-width: 600px) {
        .reviews-grid {
          grid-template-columns: 1fr;
        }
        .gsb-divider {
          display: none;
        }
        .google-score-banner {
          gap: 25px;
          padding: 28px 24px;
        }
      }

      /* Individual Review Card */
      .review-card {
        background: #fff;
        border-radius: 18px;
        padding: 28px 26px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
        border: 1px solid #f0f0f0;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        gap: 14px;
        position: relative;
      }

      .review-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
        border-color: #e8e8e8;
      }

      /* Featured card */
      .review-card.featured {
        border: 2px solid #4285f4;
        background: linear-gradient(160deg, #f8fbff 0%, #ffffff 100%);
      }

      .review-card.featured::before {
        content: "TOP REVIEW";
        position: absolute;
        top: -1px;
        right: 20px;
        background: #4285f4;
        color: white;
        font-size: 10px;
        font-weight: 700;
        padding: 4px 12px;
        border-radius: 0 0 8px 8px;
        letter-spacing: 0.5px;
      }

      /* Reviewer Info */
      .reviewer-row {
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .reviewer-avatar {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: 700;
        color: white;
        flex-shrink: 0;
        text-transform: uppercase;
      }

      /* Avatar colors per reviewer */
      .av-blue {
        background: linear-gradient(135deg, #4285f4, #34a0ff);
      }
      .av-green {
        background: linear-gradient(135deg, #34a853, #4cbe6c);
      }
      .av-red {
        background: linear-gradient(135deg, #ea4335, #ff6b5b);
      }
      .av-yellow {
        background: linear-gradient(135deg, #f5a623, #ffbf47);
      }
      .av-purple {
        background: linear-gradient(135deg, #a142f4, #c46af9);
      }
      .av-teal {
        background: linear-gradient(135deg, #00897b, #26a69a);
      }

      .reviewer-info {
        flex: 1;
        min-width: 0;
      }

      .reviewer-name {
        font-size: 15px;
        font-weight: 700;
        color: #1a1a2e;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .reviewer-meta {
        font-size: 11.5px;
        color: #9ca3af;
        margin-top: 1px;
      }

      .google-g {
        width: 28px;
        height: 28px;
        background: white;
        border: 1px solid #e8e8e8;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        font-weight: 900;
        color: #4285f4;
        flex-shrink: 0;
      }

      /* Star Row */
      .review-stars-row {
        display: flex;
        align-items: center;
        gap: 8px;
      }

      .review-stars {
        color: #fbbc04;
        font-size: 15px;
        letter-spacing: 1px;
      }

      .review-date {
        font-size: 12px;
        color: #9ca3af;
      }

      /* Review Text */
      .review-text {
        font-size: 14px;
        color: #374151;
        line-height: 1.65;
        flex: 1;
      }

      /* Quote icon */
      .review-quote {
        font-size: 36px;
        color: #e8f0fe;
        line-height: 1;
        margin-bottom: -8px;
        font-family: Georgia, serif;
      }

      /* Owner Reply */
      .owner-reply {
        background: #f8fffe;
        border-left: 3px solid #0a1f44;
        border-radius: 0 10px 10px 0;
        padding: 10px 14px;
        margin-top: 4px;
      }

      .owner-reply-label {
        font-size: 11px;
        font-weight: 700;
        color: #0a1f44;
        margin-bottom: 4px;
        display: flex;
        align-items: center;
        gap: 5px;
      }

      .owner-reply-text {
        font-size: 12.5px;
        color: #4b5563;
        line-height: 1.5;
      }

      /* Notice Card - for negative review */
      .review-card.negative {
        border-color: #fee2e2;
        background: #fffafa;
      }

      .review-card.negative .review-stars {
        color: #f87171;
      }

      .improvement-badge {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        background: #fef3c7;
        color: #92400e;
        font-size: 10.5px;
        font-weight: 600;
        padding: 3px 10px;
        border-radius: 20px;
        border: 1px solid #fde68a;
        width: fit-content;
      }

      /* Google CTA */
      .reviews-cta-row {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 16px;
        flex-wrap: wrap;
        margin-top: 10px;
      }

      .google-review-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #4285f4;
        color: white;
        padding: 14px 28px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 700;
        font-size: 14px;
        transition: all 0.3s;
        box-shadow: 0 6px 20px rgba(66, 133, 244, 0.35);
      }

      .google-review-btn:hover {
        background: #3367d6;
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(66, 133, 244, 0.45);
        color: white;
        text-decoration: none;
      }

      .google-review-btn .g-icon {
        width: 24px;
        height: 24px;
        background: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        font-weight: 900;
        color: #4285f4;
        flex-shrink: 0;
      }

      .reviews-note {
        font-size: 13px;
        color: #6b7280;
        text-align: center;
      }
      /* ============================================
   WHATSAPP SCREENSHOTS SECTION
   ============================================  */
.whatsapp-section {
    padding: 90px 0;
    background: linear-gradient(160deg, #f0f4f8 0%, #e8f5e9 100%);
    position: relative;
    overflow: hidden;
}

.whatsapp-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2325d366' fill-opacity='0.04'%3E%3Cpath d='M40 0C17.9 0 0 17.9 0 40s17.9 40 40 40 40-17.9 40-40S62.1 0 40 0zm0 72C22.4 72 8 57.6 8 40S22.4 8 40 8s32 14.4 32 32-14.4 32-32 32z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.whatsapp-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.wa-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: white;
    padding: 7px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 14px;
    box-shadow: 0 4px 15px rgba(37,211,102,0.35);
}

/* Masonry-style screenshot grid */
.wa-screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: start;
}

@media (max-width: 991px) {
    .wa-screenshots-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .wa-screenshots-grid { grid-template-columns: 1fr; }
}

/* Phone Frame */
.wa-screenshot-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(0,0,0,0.12),
        0 0 0 1px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    position: relative;
}

.wa-screenshot-card:hover {
    transform: translateY(-8px) rotate(0.5deg);
    box-shadow: 0 32px 80px rgba(0,0,0,0.16), 0 0 0 1px rgba(0,0,0,0.06);
}

/* Language Flag Badge */
.lang-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.65);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
    z-index: 10;
    letter-spacing: 0.3px;
    backdrop-filter: blur(4px);
}

/* WhatsApp Top Bar (status bar simulation) */
.wa-status-bar {
    background: #075e54;
    padding: 6px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wa-status-time {
    color: white;
    font-size: 11px;
    font-weight: 600;
}

.wa-status-icons {
    display: flex;
    gap: 5px;
    color: white;
    font-size: 10px;
}

/* WA Chat Header */
.wa-chat-header {
    background: #075e54;
    padding: 8px 14px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.wa-chat-header .back-arrow {
    color: white;
    font-size: 16px;
}

.wa-contact-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.wa-contact-info {
    flex: 1;
}

.wa-contact-name {
    color: white;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.wa-contact-sub {
    color: rgba(255,255,255,0.75);
    font-size: 10.5px;
}

.wa-header-actions {
    display: flex;
    gap: 14px;
    color: rgba(255,255,255,0.9);
    font-size: 15px;
}

/* Chat Background */
.wa-chat-bg {
    background-color: #e5ddd5;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c8bfb5' fill-opacity='0.35'%3E%3Cpath d='M20 20.5V18H0v5h5v5H0v5h20v-2.5c1.4-.7 2.5-2.1 2.5-3.5s-1.1-2.8-2.5-3.5z'/%3E%3C/g%3E%3C/svg%3E");
    padding: 10px 10px 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Date chip */
.wa-day-chip {
    text-align: center;
    margin: 6px 0;
}

.wa-day-chip span {
    background: rgba(255,255,255,0.88);
    color: #555;
    font-size: 10.5px;
    padding: 3px 12px;
    border-radius: 7px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Message bubble — received */
.wa-bubble-wrap {
    display: flex;
    flex-direction: column;
    max-width: 88%;
}

.wa-bubble-wrap.recv { align-self: flex-start; }
.wa-bubble-wrap.sent { align-self: flex-end; }

.wa-bubble {
    padding: 7px 10px 18px;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
    position: relative;
    word-break: break-word;
}

.wa-bubble-wrap.recv .wa-bubble {
    background: #ffffff;
    border-top-left-radius: 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.13);
    color: #111;
}

.wa-bubble-wrap.sent .wa-bubble {
    background: #dcf8c6;
    border-top-right-radius: 0;
    box-shadow: 0 1px 2px rgba(0,0,0,0.13);
    color: #111;
}

/* Tails */
.wa-bubble-wrap.recv .wa-bubble::before {
    content: '';
    position: absolute;
    top: 0; left: -7px;
    border: 7px solid transparent;
    border-top-color: white;
    border-right-color: white;
}

.wa-bubble-wrap.sent .wa-bubble::before {
    content: '';
    position: absolute;
    top: 0; right: -7px;
    border: 7px solid transparent;
    border-top-color: #dcf8c6;
    border-left-color: #dcf8c6;
}

/* RTL for Arabic bubbles */
.wa-bubble-wrap.recv.rtl .wa-bubble {
    direction: rtl;
    text-align: right;
    font-size: 13.5px;
    border-top-left-radius: 8px;
    border-top-right-radius: 0;
}

.wa-bubble-wrap.recv.rtl .wa-bubble::before { display: none; }

.wa-bubble-wrap.recv.rtl .wa-bubble::after {
    content: '';
    position: absolute;
    top: 0; right: -7px;
    border: 7px solid transparent;
    border-top-color: white;
    border-left-color: white;
}

/* Bubble timestamp */
.wa-bubble-time {
    position: absolute;
    bottom: 3px;
    right: 8px;
    font-size: 9.5px;
    color: #8a8a8a;
    display: flex;
    align-items: center;
    gap: 2px;
    white-space: nowrap;
}

.wa-ticks {
    color: #34b7f1;
    font-size: 11px;
}

/* Sender name inside group chat bubble */
.wa-sender-name {
    font-size: 11.5px;
    font-weight: 700;
    margin-bottom: 2px;
    display: block;
}

/* Voice note look */
.wa-voice-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px 18px;
    min-width: 180px;
}

.wa-play-btn {
    width: 34px; height: 34px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
    flex-shrink: 0;
}

.wa-waveform {
    flex: 1;
    height: 28px;
    display: flex;
    align-items: center;
    gap: 2px;
}

.wa-waveform span {
    display: block;
    background: #25d366;
    border-radius: 2px;
    width: 3px;
    opacity: 0.7;
}

.wa-voice-duration {
    font-size: 10px;
    color: #999;
}

/* Reaction emoji */
.wa-emoji-react {
    align-self: flex-start;
    background: white;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1px 7px;
    font-size: 13px;
    margin-top: -6px;
    margin-left: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    z-index: 2;
    position: relative;
}

.wa-emoji-react.right {
    align-self: flex-end;
    margin-right: 6px;
    margin-left: 0;
}

/* WA input bar (decorative) */
.wa-input-footer {
    background: #f0f0f0;
    padding: 7px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid #ddd;
}

.wa-input-footer .wa-emoji-icon { color: #8a8a8a; font-size: 19px; }
.wa-input-fake {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 7px 14px;
    font-size: 12px;
    color: #bbb;
}

.wa-mic-circle {
    width: 38px; height: 38px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 15px;
}

/* Bottom info strip */
.wa-card-footer {
    padding: 10px 16px;
    background: #fafafa;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wa-card-footer .lang-flag { font-size: 18px; }

.wa-card-footer-text {
    font-size: 11.5px;
    color: #6b7280;
    font-weight: 500;
}

/* Bottom CTA */
.wa-bottom-cta {
    text-align: center;
    margin-top: 50px;
}

.wa-bottom-cta p {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 18px;
}

.wa-big-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}

.wa-big-btn:hover {
    background: #1ebe5d;
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(37,211,102,0.5);
    color: white;
    text-decoration: none;
}

.wa-big-btn i { font-size: 22px; }

