/* ============================================
   MIRACLE BUSINESS SOLUTIONS - SHARED 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;
  --white: #ffffff;
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

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

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

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

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

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

.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-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: flex;
  align-items: center;
  gap: 5px;
}

.language-button:hover,
.language-button.active {
  background: var(--primary-navy);
  color: white;
  border-color: var(--primary-navy);
}

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

.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;
}

/* ============================================
   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;
}

.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,
.nav-link.active {
  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-menu-custom .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-menu-custom .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-menu-custom .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-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,
.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;
  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;
}

/* ============================================
   PAGE HEADER / HERO BANNER
   ============================================ */

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

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/pattern.png") center/cover;
  opacity: 0.05;
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
}

.page-header .breadcrumb {
  background: transparent;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.page-header .breadcrumb-item {
  color: rgba(255, 255, 255, 0.8);
}

.page-header .breadcrumb-item a {
  color: var(--gold);
}

.page-header .breadcrumb-item.active {
  color: white;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
  content: "›";
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section {
  padding: 80px 0;
}

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

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

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

.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 CARDS
   ============================================ */

.service-card {
  background: white;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  margin-bottom: 30px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

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

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

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

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  padding: 10px 0;
  color: var(--text-dark);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-list li:last-child {
  border-bottom: none;
}

.service-list li i {
  color: var(--accent-red);
  margin-top: 4px;
}

/* ============================================
   INFO BOXES
   ============================================ */

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

.info-box-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-cyan) 0%, #00c4e0 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  margin-bottom: 20px;
}

.info-box h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.info-box p {
  color: var(--text-muted);
  margin: 0;
}

/* ============================================
   PROCESS STEPS
   ============================================ */

.process-step {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-red) 0%, #ff6b6b 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(237, 28, 36, 0.3);
}

.process-step h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.process-step p {
  color: var(--text-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  background: linear-gradient(135deg, var(--accent-red) 0%, #ff6b6b 100%);
  padding: 60px 0;
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.btn-white {
  background: white;
  color: var(--accent-red);
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: var(--accent-red);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  background: linear-gradient(135deg, var(--accent-red) 0%, #ff6b6b 100%);
  color: white;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  border: none;
  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-outline {
  background: transparent;
  color: var(--primary-navy);
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  border: 2px solid var(--primary-navy);
}

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

/* ============================================
   CONTACT CARDS
   ============================================ */

.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-card h4 {
  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);
  font-weight: 600;
}

/* ============================================
   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 100%);
  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
   ============================================ */

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

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

.mb-0 {
  margin-bottom: 0;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-30 {
  margin-top: 30px;
}

/* 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) {
  .navbar-menu {
    display: none;
  }

  .navbar-toggler {
    display: flex;
  }

  .topbar .row {
    flex-direction: column;
    text-align: center;
  }

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

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

  .page-header h1 {
    font-size: 36px;
  }

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

@media (max-width: 768px) {
  .page-header {
    padding: 60px 0;
  }

  .page-header h1 {
    font-size: 28px;
  }

  .section {
    padding: 60px 0;
  }

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

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

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

  .cta-section h2 {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .section-title {
    font-size: 26px;
  }
}

/* ================================
   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;
}

/* ============================================
   CAREERS PAGE STYLES
   Add this to your existing styles.css
   OR save as careers-styles.css and link it
   only on careers pages
   ============================================ */

/* ── Stats Bar ────────────────────────────── */
.careers-stats {
  background: var(--primary-navy);
  padding: 28px 0;
}

.careers-stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.careers-stats .stat-item {
  padding: 10px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.careers-stats .stat-item:last-child {
  border-right: none;
}

.careers-stats .stat-item .num {
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.careers-stats .stat-item .lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
  display: block;
}

/* ── Careers Layout ───────────────────────── */
.careers-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: start;
}

/* ── Filter Bar ───────────────────────────── */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.filter-bar h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-navy);
  margin: 0;
}

.filter-bar h2 span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  margin-left: 8px;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--primary-navy);
  color: var(--primary-navy);
  background: transparent;
  cursor: pointer;
  transition: all 0.25s;
}

.filter-tab:hover,
.filter-tab.active {
  background: var(--primary-navy);
  color: white;
}

/* ── Job Card ─────────────────────────────── */
.job-card {
  background: white;
  border-radius: 16px;
  border: 1.5px solid #e5e7eb;
  padding: 28px 30px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.job-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-red), #ff6b6b);
  border-radius: 4px 0 0 4px;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.job-card:hover {
  border-color: transparent;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.job-card:hover::before {
  transform: scaleY(1);
}

.job-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.job-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-red) 0%, #ff6b6b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(237, 28, 36, 0.25);
}

.job-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(237, 28, 36, 0.08);
  color: var(--accent-red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(237, 28, 36, 0.2);
}

.job-badge-new i {
  font-size: 8px;
}

.job-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 6px;
  line-height: 1.3;
}

.job-description {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.job-meta-item i {
  color: var(--accent-red);
  font-size: 13px;
  width: 14px;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.job-tag {
  background: var(--light-bg);
  color: var(--primary-navy);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid #e5e7eb;
}

.job-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid #f3f4f6;
}

.job-posted {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.job-posted i {
  color: var(--accent-red);
}

.job-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Apply Now button */
.btn-apply-now {
  background: linear-gradient(135deg, var(--accent-red) 0%, #ff6b6b 100%);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 6px 18px rgba(237, 28, 36, 0.25);
}

.btn-apply-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(237, 28, 36, 0.35);
  color: white;
  text-decoration: none;
}

/* Details button */
.btn-details {
  background: transparent;
  color: var(--primary-navy);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--primary-navy);
  transition: all 0.3s;
}

.btn-details:hover {
  background: var(--primary-navy);
  color: white;
  text-decoration: none;
}

/* ── Empty State ──────────────────────────── */
.no-jobs {
  text-align: center;
  padding: 60px 30px;
  background: white;
  border-radius: 16px;
  border: 1.5px dashed #d1d5db;
}

.no-jobs .icon {
  width: 72px;
  height: 72px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--text-muted);
}

.no-jobs h4 {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.no-jobs p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

/* ── Sidebar Cards ────────────────────────── */
.side-card {
  background: white;
  border-radius: 16px;
  border: 1.5px solid #e5e7eb;
  padding: 26px;
  margin-bottom: 22px;
}

.side-card h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--light-bg);
  display: flex;
  align-items: center;
  gap: 8px;
}

.side-card h4 i {
  color: var(--accent-red);
}

/* Benefits list */
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-dark);
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
}

.benefit-list li:last-child {
  border-bottom: none;
}

.benefit-list li i {
  color: var(--accent-red);
  font-size: 13px;
  width: 14px;
}

/* Contact rows */
.side-contact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  background: var(--light-bg);
  margin-bottom: 10px;
}

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

.side-contact .icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent-red) 0%, #ff6b6b 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  flex-shrink: 0;
}

.side-contact p {
  font-size: 11px;
  color: var(--text-muted);
  margin: 0;
}

.side-contact a {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-navy);
  text-decoration: none;
}

.side-contact a:hover {
  color: var(--accent-red);
}

/* CTA navy box */
.side-cta {
  background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
  border-radius: 16px;
  padding: 26px;
  text-align: center;
}

.side-cta .cta-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
  color: var(--gold);
}

.side-cta h5 {
  font-size: 16px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.side-cta p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
  line-height: 1.6;
}

.side-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--primary-navy);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s;
}

.side-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  color: var(--primary-navy);
  text-decoration: none;
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 991px) {
  .careers-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .careers-stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .careers-stats .stat-item:nth-child(2) {
    border-right: none;
  }

  .careers-stats .stat-item:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .filter-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .job-card {
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .careers-stats .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================
   HOMEPAGE STYLES — paste at bottom of styles.css
   Covers: Hero, Services, About, Why Us, Contact
   ============================================ */

/* ── 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;
  inset: 0;
  background: url("images/miracle-business-corporate.jpg") center/cover;
  opacity: 0.08;
}

.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;
  font-size: 14px;
}

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

.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;
  color: white;
}

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

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

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

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

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

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

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 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);
}

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

.service-description {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 18px;
  line-height: 1.6;
}

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

.service-features li {
  padding: 8px 0;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 14px;
}

.service-features li:last-child {
  border-bottom: none;
}

.service-features li i {
  color: var(--accent-red);
  flex-shrink: 0;
}

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

.service-link:hover {
  gap: 12px;
  color: var(--accent-red);
  text-decoration: none;
}

.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: 700;
}

/* ── About Section ────────────────────────── */
.about-section {
  padding: 80px 0;
  background: white;
}

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

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

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

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

.badge-text {
  font-size: 13px;
  margin-top: 4px;
  opacity: 0.9;
  line-height: 1.3;
}

.about-content {
  padding-left: 20px;
}

.lead-text {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.6;
}

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

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.feature-item i {
  color: var(--accent-red);
  font-size: 18px;
  flex-shrink: 0;
}

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

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

.why-card:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.25);
}

.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: 28px;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(237, 28, 36, 0.35);
}

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

.why-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

/* ── Contact Section ──────────────────────── */
.contact-section {
  padding: 80px 0;
  background: var(--light-bg);
}

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

.location-card {
  background: white;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  margin-bottom: 30px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.location-title i {
  color: var(--accent-red);
}

.whatsapp-link {
  color: #25d366;
  font-size: 22px;
  margin-left: auto;
  transition: transform 0.3s;
  text-decoration: none;
}

.whatsapp-link:hover {
  transform: scale(1.15);
  color: #25d366;
  text-decoration: none;
}

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

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

.location-address {
  color: var(--text-muted);
  font-size: 14px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-address i {
  color: var(--accent-red);
  flex-shrink: 0;
}

/* ── Responsive ───────────────────────────── */
@media (max-width: 991px) {
  .hero-title {
    font-size: 36px;
  }
  .hero-stats {
    gap: 24px;
  }
  .about-content {
    padding-left: 0;
    margin-top: 20px;
  }
  .experience-badge {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 70px 0;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-buttons {
    flex-direction: column;
  }
  .btn-secondary {
    justify-content: center;
  }
  .stat-number {
    font-size: 32px;
  }
  .hero-stats {
    gap: 20px;
  }
  .about-features {
    grid-template-columns: 1fr;
  }
  .experience-badge {
    position: static;
    display: inline-block;
    margin-top: 16px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    padding: 50px 0;
  }
  .hero-title {
    font-size: 24px;
  }
  .hero-badge {
    font-size: 12px;
    padding: 6px 14px;
  }
}


/* apply job form css start from here */
/* ============================================
   APPLY JOB FORM STYLES
   Paste at the bottom of styles.css
   ============================================ */

/* ── Layout ─────────────────────────────────── */
.apply-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 32px;
    align-items: start;
}

/* ── Form Card ───────────────────────────────── */
.apply-form-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
    padding: 44px 40px;
    border: 1px solid rgba(0,0,0,0.05);
}

.apply-form-card h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 4px;
}

.form-subtitle {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 32px;
}

/* ── Section Labels ──────────────────────────── */
.form-section-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.form-section-divider {
    border: none;
    border-top: 1px solid #F3F4F6;
    margin: 24px 0;
}

/* ── Two Column Row ──────────────────────────── */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ── Field Group ─────────────────────────────── */
.field-group {
    margin-bottom: 20px;
}

.field-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.field-group .req {
    color: var(--accent-red);
    margin-left: 2px;
}

.field-group input,
.field-group select,
.field-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #E5E7EB;
    border-radius: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--light-bg);
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.field-group input::placeholder,
.field-group textarea::placeholder {
    color: #B0B7C3;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
    border-color: var(--accent-red);
    box-shadow: 0 0 0 3px rgba(237,28,36,0.10);
    background: white;
}

.field-group textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.65;
}

/* ── Select Wrapper ──────────────────────────── */
.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-65%) rotate(45deg);
    border: solid #6B7280;
    border-width: 0 2px 2px 0;
    padding: 4px;
    pointer-events: none;
}

/* ── File Upload ─────────────────────────────── */
.file-upload-wrapper {
    position: relative;
}

.file-upload-wrapper input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
    width: 100%;
    height: 100%;
}

.file-upload-ui {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 2px dashed #D1D5DB;
    border-radius: 10px;
    background: var(--light-bg);
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s;
}

.file-upload-wrapper:hover .file-upload-ui {
    border-color: var(--accent-red);
    background: rgba(237,28,36,0.03);
}

.file-upload-icon {
    width: 42px;
    height: 42px;
    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: 16px;
    flex-shrink: 0;
}

.file-upload-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-navy);
}

.file-upload-text span {
    font-size: 12px;
    color: var(--text-muted);
}

.file-name-display {
    font-size: 12px;
    color: var(--accent-red);
    font-weight: 600;
    margin-top: 6px;
    display: none;
}

.file-name-display i {
    margin-right: 4px;
}

/* ── Submit Button ───────────────────────────── */
.btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    justify-content: center;
    border-radius: 12px;
    cursor: pointer;
}

/* ── Sidebar ─────────────────────────────────── */
.apply-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    padding: 28px;
    border: 1px solid rgba(0,0,0,0.05);
}

.sidebar-card h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-navy);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--light-bg);
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card h4 i {
    color: var(--accent-red);
}

/* ── Hiring Steps ────────────────────────────── */
.sidebar-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-steps li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.sidebar-steps li:last-child {
    margin-bottom: 0;
}

.sidebar-step-num {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--accent-red) 0%, #FF6B6B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(237,28,36,0.25);
}

.sidebar-steps li strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 2px;
}

.sidebar-steps li p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ── Sidebar Contact Row ─────────────────────── */
.sidebar-contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 14px;
    border-radius: 10px;
    background: var(--light-bg);
    margin-bottom: 10px;
}

.sidebar-contact-row:last-child {
    margin-bottom: 0;
}

.sidebar-contact-row .icon {
    width: 38px;
    height: 38px;
    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;
    flex-shrink: 0;
}

.sidebar-contact-row p {
    font-size: 11px;
    color: var(--text-muted);
    margin: 0;
}

.sidebar-contact-row a {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-navy);
    text-decoration: none;
}

.sidebar-contact-row a:hover {
    color: var(--accent-red);
}

/* ── Perks Banner ────────────────────────────── */
.perks-banner {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--secondary-navy) 100%);
    border-radius: 20px;
    padding: 28px;
    color: white;
}

.perks-banner h5 {
    font-size: 15px;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.perk-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 10px;
}

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

.perk-item i {
    color: var(--gold);
    font-size: 13px;
    flex-shrink: 0;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 991px) {
    .apply-grid {
        grid-template-columns: 1fr;
    }
    .apply-sidebar {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .apply-sidebar .perks-banner {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .apply-sidebar {
        grid-template-columns: 1fr;
    }
    .apply-form-card {
        padding: 28px 20px;
    }
    .two-col {
        grid-template-columns: 1fr;
    }
}

.heart-icon {
    color: #ff0000;
}

.fab fa-whatsapp {
    color: #1ebe5d;
}
