@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

/* --- Design Tokens / Variables --- */
:root {
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Color Palette */
  --primary: #0052cc;
  --primary-hover: #0043a4;
  --primary-light: #e6f0ff;
  --secondary: #0b1d33;
  --accent: #10b981;
  --accent-light: #ecfdf5;

  /* Neutral Colors */
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;

  /* Backgrounds */
  --bg-main: #f8fafc;
  --bg-card: #ffffff;
  --bg-dark: #0b1a30;
  --bg-dark-accent: #071120;

  /* Spacing & Borders */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Gradients inspired by the source project */
  --gradient-primary: linear-gradient(135deg, #0a1128 30%, #00b4d8 100%);
  --gradient-accent: linear-gradient(135deg, #00b4d8 0%, #06d6a0 100%);
  --gradient-dark: linear-gradient(135deg, #0a1128 0%, #1c2541 100%);
  --gradient-hero: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
  --gradient-accent-vertical: linear-gradient(to bottom, #00b4d8, #06d6a0);
  --gradient-btn: linear-gradient(135deg, var(--primary) 0%, #00b4d8 100%);
  --gradient-btn-hover: linear-gradient(135deg, var(--primary-hover) 0%, #0096b4 100%);
}

/* --- Base Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--slate-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- Utility Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--slate-900);
  font-weight: 700;
  line-height: 1.25;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.text-gradient-accent {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Top Announcement Banner --- */
.top-banner {
  background-color: var(--secondary);
  color: #ffffff;
  font-size: 13px;
  padding: 10px 0;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.top-banner a {
  color: #ffffff;
  text-decoration: underline;
  margin-left: 6px;
  font-weight: 600;
}

.top-banner a:hover {
  opacity: 0.9;
}

/* --- Navigation Header --- */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid var(--slate-200);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  position: relative;
}

.logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--slate-900);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* Note: Position absolute on mega-menu is relative to .nav-container since .nav-item has static positioning */

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--slate-600);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

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

.nav-link svg {
  transition: var(--transition);
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
  color: var(--primary);
}

/* Mega Dropdown Menu styling */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 24px;
  right: 24px;
  background-color: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  padding: 32px 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--transition);
  z-index: 1000;
}

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

.mega-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

.mega-col {
  display: flex;
  flex-direction: column;
}

.mega-col-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--slate-900);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--slate-100);
  padding-bottom: 10px;
}

.mega-col-title-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--slate-900);
  text-decoration: none;
  width: 100%;
  transition: var(--transition);
}

.mega-col-title-link:hover {
  color: var(--primary);
}

/* Bullet indicator dots */
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.dot-blue { background-color: #0052cc; }
.dot-purple { background-color: #a855f7; }
.dot-orange { background-color: #f97316; }
.dot-teal { background-color: #0d9488; }
.dot-green { background-color: #22c55e; }

.mega-col-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mega-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 0;
  border-radius: 6px;
  transition: var(--transition);
}

.item-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-900);
  transition: var(--transition);
  line-height: 1.3;
}

.item-desc {
  font-size: 11px;
  color: var(--slate-500);
  line-height: 1.4;
  font-weight: 400;
}

.mega-item:hover .item-title {
  color: var(--primary);
}

/* Nav Actions Right */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--slate-800);
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-link:hover {
  color: var(--primary);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient-btn);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--gradient-btn-hover);
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.25);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--slate-100);
  color: var(--slate-800);
}

.btn-secondary:hover {
  background-color: var(--slate-200);
  transform: translateY(-1px);
}

.btn-outline-dark {
  border: 1px solid var(--slate-700);
  background: transparent;
  color: #ffffff;
  padding: 8px 16px;
  font-size: 13px;
  border-radius: var(--radius-sm);
}

.btn-outline-dark:hover {
  background-color: #ffffff;
  color: var(--bg-dark);
}

/* --- Hero Section --- */
.hero {
  padding: 80px 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
  border: 1px solid rgba(0, 82, 204, 0.1);
}

.hero-title {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--slate-900);
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--slate-600);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  border-top: 1px solid var(--slate-200);
  padding-top: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-800);
}

.trust-item svg {
  color: var(--primary);
}

/* Hero Image side */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper::before {
  content: '';
  position: absolute;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(0,82,204,0.06) 0%, transparent 70%);
  z-index: 0;
}

.hero-img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--slate-200);
  background-color: #ffffff;
  transition: var(--transition);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* --- Services Section --- */
.services-section {
  padding: 100px 0;
  background-color: var(--bg-main);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--slate-500);
}

/* Grid layout: 3 columns for row 1, 2 columns for row 2 */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.services-grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

/* Service Card design */
.service-card {
  background-color: var(--bg-card);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 380px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 82, 204, 0.2);
}

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

.card-top {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.icon-box {
  width: 48px;
  height: 48px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.service-card:hover .icon-box {
  background-color: var(--primary);
  color: #ffffff;
}

.card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.35;
  color: var(--slate-900);
}

.card-title-link {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.card-title-link:hover .card-title {
  color: var(--primary);
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-list li {
  font-size: 14px;
  color: var(--slate-600);
  position: relative;
  padding-left: 14px;
}

.card-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--slate-500);
}

.card-list a {
  color: var(--slate-600);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.card-list a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.card-action-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}

.card-action-link span {
  display: inline-block;
  transition: var(--transition);
}

.card-action-link:hover {
  color: var(--primary-hover);
}

.card-action-link:hover span {
  transform: translateX(4px);
}


.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  border-top: 1px solid var(--slate-100);
  padding-top: 16px;
}

.tag-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--slate-500);
}

.tag-pill {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  background-color: var(--primary-light);
  color: var(--primary);
}

/* Green pill variation */
.service-card:nth-child(even) .tag-pill,
.services-grid-two .service-card:first-child .tag-pill {
  background-color: var(--accent-light);
  color: var(--accent);
}

/* --- Footer --- */
.site-footer {
  background: var(--gradient-dark);
  color: var(--slate-200);
  padding: 100px 0 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr 0.95fr 0.85fr;
  gap: 48px;
  margin-bottom: 64px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.footer-desc {
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  transition: var(--transition);
}

.footer-social-link:hover {
  color: #ffffff;
  background-color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.3);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13.5px;
  color: #94a3b8;
  margin-top: 8px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

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

.footer-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-links a {
  color: #94a3b8;
  display: inline-block;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(6px);
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-newsletter-desc {
  font-size: 13.5px;
  color: #94a3b8;
  line-height: 1.5;
}

.footer-newsletter-form {
  display: flex;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: var(--transition);
}

.footer-newsletter-form:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.2);
}

.footer-newsletter-input {
  background: rgba(255, 255, 255, 0.04);
  border: none;
  outline: none;
  padding: 12px 14px;
  color: #ffffff;
  font-size: 13px;
  flex-grow: 1;
  min-width: 0;
}

.footer-newsletter-btn {
  background-color: var(--primary);
  border: none;
  color: #ffffff;
  padding: 0 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-size: 13px;
}

.footer-newsletter-btn:hover {
  background-color: var(--primary-hover);
}

/* Bottom footer strip */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 13px;
  color: #64748b;
}

.footer-badges {
  display: flex;
  gap: 12px;
}

.footer-badge-outline {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #e2e8f0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: default;
}

.footer-badge-outline:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* --- About Us Homepage Section --- */
.about-section {
  padding: 100px 0;
  background-color: #ffffff;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.about-desc {
  font-size: 15.5px;
  color: var(--slate-600);
  line-height: 1.6;
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 24px 0;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
  padding: 24px 0;
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-value {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.metric-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pillar-card {
  display: flex;
  gap: 18px;
  background-color: var(--slate-50);
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-200);
  transition: var(--transition);
}

.pillar-card:hover {
  transform: translateX(6px);
  border-color: rgba(0, 82, 204, 0.2);
  background-color: #ffffff;
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-text h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 4px;
}

.pillar-text p {
  font-size: 13px;
  color: var(--slate-600);
  line-height: 1.5;
}

/* --- Floating Chat Widget --- */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.chat-button {
  width: 56px;
  height: 56px;
  background-color: #25d366; /* WhatsApp Green */
  color: #ffffff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  animation: chat-pulse 2.4s infinite ease-in-out;
}

.chat-button:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
}

@keyframes chat-pulse {
  0% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5), 0 4px 12px rgba(37, 211, 102, 0.3);
  }
  50% {
    transform: translateY(-6px);
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0), 0 8px 18px rgba(37, 211, 102, 0.4);
  }
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 4px 12px rgba(37, 211, 102, 0.3);
  }
}

/* Chat Popup Window */
.chat-popup {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 320px;
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  border: 1px solid var(--slate-200);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 998;
}

.chat-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chat-header {
  background-color: #075e54; /* Official WhatsApp Dark Green */
  color: #ffffff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-user-info {
  display: flex;
  flex-direction: column;
}

.chat-user-name {
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-heading);
}

.chat-user-status {
  font-size: 11px;
  opacity: 0.8;
}

.chat-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
}

.chat-close:hover {
  opacity: 1;
}

.chat-body {
  background-color: #e5ddd5; /* WhatsApp Chat Background Cream */
  padding: 20px;
  min-height: 120px;
}

.chat-message-bubble {
  background-color: #ffffff;
  padding: 12px 14px;
  border-radius: 0 12px 12px 12px;
  font-size: 13px;
  color: var(--slate-800);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  line-height: 1.4;
  max-width: 90%;
}

.chat-message-bubble p {
  margin-bottom: 6px;
}

.chat-message-bubble p:last-child {
  margin-bottom: 0;
}

.chat-footer-action {
  background-color: #ffffff;
  padding: 16px 20px;
}

.chat-trigger-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #25d366;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  width: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.chat-trigger-btn:hover {
  background-color: #1ebd54;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}


/* ============================================
   HAMBURGER MENU & MOBILE NAV
   ============================================ */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  transition: var(--transition);
  flex-shrink: 0;
}

.nav-toggle:hover {
  background-color: var(--slate-100);
  border-color: var(--slate-300);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--slate-700);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  pointer-events: none;
}

.mobile-nav.open {
  pointer-events: all;
}

.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}

.mobile-nav.open .mobile-nav-overlay {
  opacity: 1;
}

.mobile-nav-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 90vw);
  height: 100%;
  background-color: #ffffff;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav.open .mobile-nav-drawer {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--slate-200);
  flex-shrink: 0;
}

.mobile-nav-logo {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--slate-900);
}

.mobile-nav-logo span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mobile-nav-close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate-600);
  transition: var(--transition);
  font-size: 20px;
  line-height: 1;
}

.mobile-nav-close:hover {
  background-color: var(--slate-100);
  color: var(--slate-900);
}

.mobile-nav-links {
  flex: 1;
  padding: 16px 0;
  overflow-y: auto;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  color: var(--slate-700);
  border-bottom: 1px solid var(--slate-100);
  transition: var(--transition);
  gap: 10px;
}

.mobile-nav-link:hover {
  color: var(--primary);
  background-color: var(--primary-light);
  padding-left: 28px;
}

.mobile-nav-link svg {
  color: var(--primary);
  flex-shrink: 0;
}

.mobile-nav-section-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--slate-400);
  padding: 16px 24px 8px;
}

.mobile-nav-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.mobile-nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--slate-800);
}

.mobile-nav-phone svg {
  color: var(--primary);
}

.mobile-nav-cta {
  width: 100%;
  text-align: center;
}

/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */

/* --- Tablet: ≤1024px --- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

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

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

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

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

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

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .footer-info {
    grid-column: 1 / -1;
  }

  .mega-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

/* --- Mobile: ≤768px --- */
@media (max-width: 768px) {

  /* Navigation */
  .nav-container {
    height: 68px;
  }

  .main-nav,
  .nav-actions {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  /* Top Banner */
  .top-banner {
    font-size: 11.5px;
    padding: 8px 16px;
  }

  /* Hero */
  .hero {
    padding: 56px 0 48px;
  }

  .hero-title {
    font-size: 32px;
    letter-spacing: -0.5px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hero-image-wrapper {
    display: none;
  }

  .hero-trust {
    gap: 16px;
    justify-content: center;
  }

  /* Services */
  .services-section {
    padding: 64px 0;
  }

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

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

  .service-card {
    min-height: auto;
  }

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

  .section-subtitle {
    font-size: 15px;
  }

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

  /* About */
  .about-section {
    padding: 64px 0;
  }

  .about-title {
    font-size: 28px;
  }

  .about-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 16px 0;
  }

  .metric-value {
    font-size: 26px;
  }

  .metric-label {
    font-size: 11px;
  }

  /* Footer */
  .site-footer {
    padding: 64px 0 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }

  .footer-info {
    grid-column: auto;
  }

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

  .footer-badges {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Container padding */
  .container {
    padding: 0 16px;
  }
}

/* --- Small Mobile: ≤480px --- */
@media (max-width: 480px) {

  .hero-title {
    font-size: 26px;
    letter-spacing: -0.3px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-actions .btn {
    max-width: 100%;
    font-size: 14px;
    padding: 11px 20px;
  }

  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

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

  .about-title {
    font-size: 24px;
  }

  .about-metrics {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .metric-value {
    font-size: 28px;
  }

  .card-footer {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer-newsletter-form {
    flex-direction: column;
    border-radius: var(--radius-md);
    overflow: visible;
    gap: 8px;
    border: none;
    background: transparent;
  }

  .footer-newsletter-input {
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 14px;
  }

  .footer-newsletter-btn {
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    font-size: 14px;
  }

  .footer-newsletter-form:focus-within {
    box-shadow: none;
  }

  .service-card {
    padding: 24px;
  }

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

  .pillar-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

