/* assets/css/style.css - Custom CSS matching uploaded images */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary-navy: #031a40;
  --primary-blue: #004899;
  --accent-blue: #0b5ed7;
  --light-blue: #e8f1fd;
  --whatsapp-green: #1fb749;
  --whatsapp-hover: #19993d;
  --text-dark: #0c1938;
  --text-muted: #5a6a85;
  --bg-light: #f5f7fb;
  --card-bg: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 4px 12px rgba(3, 26, 64, 0.05);
  --shadow-md: 0 10px 30px rgba(3, 26, 64, 0.08);
  --shadow-lg: 0 15px 40px rgba(3, 26, 64, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

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

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

ul {
  list-style: none;
}

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

/* --- TOP MULTI-COUNTRY CONTACT BAR --- */
.top-contact-bar {
  background-color: #02122c;
  color: #94a3b8;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}
.country-contacts {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.top-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #e2e8f0;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.top-contact-item:hover {
  color: #ffffff;
}
.top-contact-item .flag-icon {
  font-size: 14px;
}
.top-contact-item .country-label {
  color: #94a3b8;
  font-weight: 700;
}
.top-contact-item .contact-num {
  color: #ffffff;
}
.top-contact-item .text-green {
  color: var(--whatsapp-green);
}
.top-bar-divider {
  color: rgba(255, 255, 255, 0.2);
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
.top-email-item {
  color: #94a3b8;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.top-email-item:hover {
  color: #ffffff;
}

/* Mobile top bar visibility toggle */
.mobile-only-contacts {
  display: none;
}
.desktop-only-contacts {
  display: flex;
}

.mobile-top-dropdown-wrap {
  position: relative;
}

.mobile-top-trigger {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  outline: none;
  font-family: inherit;
  transition: all 0.2s ease;
}

.mobile-top-trigger:hover {
  background: rgba(255, 255, 255, 0.15);
}

.mobile-top-trigger .trigger-chevron {
  font-size: 9px;
  color: #94a3b8;
  transition: transform 0.2s ease;
}

.mobile-top-dropdown-wrap.open .mobile-top-trigger .trigger-chevron {
  transform: rotate(180deg);
}

.mobile-top-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 220px;
  background: #02122c;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  padding: 6px;
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-top-dropdown-wrap.open .mobile-top-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-top-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  text-decoration: none;
  color: #ffffff;
  transition: background 0.15s ease;
}

.mobile-top-item:hover, .mobile-top-item:active {
  background: rgba(255, 255, 255, 0.1);
}

.m-item-text {
  display: flex;
  flex-direction: column;
}

.m-item-title {
  font-size: 10px;
  color: #94a3b8;
  font-weight: 600;
  text-transform: uppercase;
}

.m-item-num {
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
}

@media (max-width: 768px) {
  .desktop-only-contacts {
    display: none !important;
  }
  .mobile-only-contacts {
    display: block !important;
  }
  .top-contact-bar {
    padding: 6px 0;
  }
  .top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: nowrap;
  }
  .email-text-label {
    display: inline;
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .email-text-label {
    display: none;
  }
  .top-email-item {
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}


/* --- LOGO STYLING --- */
.site-logo-img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}
.site-logo-img-mobile {
  height: 40px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}
.footer-logo-img {
  height: 45px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

/* --- HEADER & NAVIGATION --- */
.site-header {
  background-color: var(--primary-navy);
  color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

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

.logo-brand {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #ffffff;
  line-height: 1.1;
}

.logo-brand span.xyz {
  color: #ffb800;
  font-style: italic;
  font-size: 30px;
}

.logo-subtext {
  font-size: 11px;
  color: #94a3b8;
  font-weight: 500;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}


.nav-link {
  color: #e2e8f0;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  color: var(--text-dark);
  min-width: 200px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
}

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

.dropdown-item {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  display: block;
  color: var(--text-dark);
  transition: background 0.2s;
}

.dropdown-item:hover {
  background: var(--light-blue);
  color: var(--primary-blue);
}

.btn-whatsapp-nav {
  background-color: var(--whatsapp-green);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(31, 183, 73, 0.3);
}

.btn-whatsapp-nav:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
}

/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(2, 18, 48, 0.88) 0%, rgba(3, 30, 75, 0.82) 100%),
              url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1920&q=80') center center / cover no-repeat;
  color: #ffffff;
  padding: 60px 0 80px;
  overflow: hidden;
}

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

.hero-badge {
  display: inline-block;
  background-color: rgba(255, 184, 0, 0.15);
  color: #ffc107;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero-title span.highlight {
  color: #2684ff;
}

.hero-subtitle-tags {
  font-size: 17px;
  font-weight: 700;
  color: #cbd5e1;
  margin-bottom: 20px;
}

.hero-bullets {
  margin-bottom: 30px;
}

.hero-bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #f1f5f9;
}

.hero-bullet-icon {
  width: 22px;
  height: 22px;
  background-color: rgba(31, 183, 73, 0.2);
  color: var(--whatsapp-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.btn-primary-blue {
  background-color: var(--accent-blue);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(11, 94, 215, 0.4);
}

.btn-primary-blue:hover {
  background-color: #0b52ba;
  transform: translateY(-2px);
}

.btn-whatsapp-hero {
  background-color: var(--whatsapp-green);
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(31, 183, 73, 0.4);
}

.btn-whatsapp-hero:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
}

.hero-footer-text {
  font-size: 14px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* --- HERO FLOATING FORM --- */
.hero-form-card {
  background: #ffffff;
  color: var(--text-dark);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-form-title {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 4px;
}

.hero-form-subtitle {
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 22px;
}

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

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 6px;
}

.form-label span.req {
  color: #dc2626;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-dark);
  background-color: #f8fafc;
  transition: all 0.2s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.15);
}

.phone-input-group {
  display: flex;
  gap: 8px;
}

/* --- CUSTOM COUNTRY CODE PICKER WITH FLAGS --- */
.custom-country-picker {
  position: relative;
  flex-shrink: 0;
}

.country-picker-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background-color: #f1f5f9;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 12px 10px;
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  cursor: pointer;
  outline: none;
  font-family: inherit;
  transition: all 0.2s ease;
  height: 100%;
}

.country-picker-trigger:hover,
.custom-country-picker.open .country-picker-trigger {
  border-color: var(--accent-blue);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(11, 94, 215, 0.12);
}

.picker-flag {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.picker-flag svg {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.picker-code {
  font-weight: 700;
}

.picker-arrow {
  font-size: 10px;
  color: #64748b;
  transition: transform 0.2s ease;
}

.custom-country-picker.open .picker-arrow {
  transform: rotate(180deg);
}

.country-picker-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 175px;
  max-height: 230px;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 4px;
}

.custom-country-picker.open .country-picker-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.country-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  transition: background 0.15s ease;
}

.country-option:hover,
.country-option.active {
  background-color: #e8f1fd;
}

.option-flag {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.option-flag svg {
  width: 20px;
  height: 14px;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.option-name {
  font-weight: 600;
  color: var(--text-dark);
  flex-grow: 1;
}

.option-code {
  font-weight: 700;
  color: var(--accent-blue);
  font-size: 12px;
}




.btn-submit-form {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.btn-submit-form.blue {
  background-color: var(--accent-blue);
  color: #ffffff;
}

.btn-submit-form.blue:hover {
  background-color: #094db3;
}

.btn-submit-form.green {
  background-color: var(--whatsapp-green);
  color: #ffffff;
}

.btn-submit-form.green:hover {
  background-color: var(--whatsapp-hover);
}

.form-privacy-note {
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* --- STATS BAR --- */
.stats-section {
  margin-top: -30px;
  position: relative;
  z-index: 10;
}

.stats-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 24px 30px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border: 1px solid #f1f5f9;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.stat-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-navy);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

/* --- SECTION HEADINGS --- */
.section {
  padding: 70px 0;
}

.section-title-wrap {
  text-align: center;
  margin-bottom: 45px;
}

.section-tag {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-blue);
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 650px;
  margin: 10px auto 0;
}

.section-divider {
  width: 50px;
  height: 3px;
  background-color: #ffc107;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* --- SERVICES GRID --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: #cbd5e1;
}

.service-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  color: #ffffff;
}

.icon-blue { background: linear-gradient(135deg, #0b5ed7, #004899); }
.icon-green { background: linear-gradient(135deg, #1fb749, #15803d); }
.icon-orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
.icon-purple { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.icon-red { background: linear-gradient(135deg, #ef4444, #b91c1c); }
.icon-teal { background: linear-gradient(135deg, #14b8a6, #0f766e); }

.service-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

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

/* --- WHY CHOOSE US GRID --- */
.why-us-section {
  background-color: var(--primary-navy);
  color: #ffffff;
  padding: 70px 0;
}

.why-us-section .section-title {
  color: #ffffff;
}

.why-us-section .section-subtitle {
  color: #94a3b8;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

.feature-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 20px 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-box:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(38, 132, 255, 0.15);
  color: #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 12px;
}

.feature-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
}

.feature-desc {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.4;
}

/* --- PROCESS WORKFLOW (HOW IT WORKS) --- */
.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.step-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 30px 20px;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.step-number-badge {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--accent-blue);
  color: #ffffff;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 10px rgba(11, 94, 215, 0.3);
}

.step-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13px;
  color: var(--text-muted);
}

/* --- TWO COLUMN SECTION (TESTIMONIALS + FAQ) --- */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.col-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 35px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.col-header {
  margin-bottom: 25px;
}

.col-tag {
  font-size: 12px;
  font-weight: 800;
  color: #ffb800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.col-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-navy);
}

/* --- GOOGLE REVIEWS BADGE & STYLING --- */
.google-reviews-header {
  background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.google-brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.google-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.google-score {
  font-size: 20px;
  font-weight: 800;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.google-stars {
  color: #ffb800;
  font-size: 14px;
  letter-spacing: 1px;
}

.google-review-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #ffffff;
  color: var(--primary-navy);
  border: 1px solid #cbd5e1;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.google-review-link:hover {
  background-color: #4285f4;
  color: #ffffff;
  border-color: #4285f4;
}

.review-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: #16a34a;
  background: rgba(22, 163, 74, 0.1);
  padding: 3px 8px;
  border-radius: 12px;
  margin-top: 4px;
}

/* Testimonial Cards */
.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card {
  background: #f8fafc;
  border-radius: var(--radius-sm);
  padding: 20px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.testimonial-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  border-color: #cbd5e1;
}


.quote-icon {
  font-size: 24px;
  color: #94a3b8;
  margin-bottom: 8px;
}

.testimonial-text {
  font-size: 14px;
  color: #334155;
  font-style: italic;
  margin-bottom: 15px;
}

.client-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-navy);
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-navy);
}

.client-company {
  font-size: 12px;
  color: var(--text-muted);
}

/* Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
}

.accordion-header {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.2s ease;
}

.accordion-header:hover {
  background: #f8fafc;
}

.accordion-icon {
  font-size: 18px;
  font-weight: bold;
  color: var(--accent-blue);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.accordion-item.active .accordion-body {
  padding: 0 20px 16px;
  max-height: 300px;
}

/* --- BOTTOM CTA BANNER --- */
.bottom-cta-banner {
  background: linear-gradient(135deg, #031a40 0%, #004899 100%);
  color: #ffffff;
  padding: 40px 0;
  border-radius: var(--radius-lg);
  margin: 40px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-title {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 6px;
}

.cta-subtitle {
  font-size: 15px;
  color: #cbd5e1;
}

.cta-buttons {
  display: flex;
  gap: 15px;
}

/* --- THANK YOU PAGE SPECIFICS --- */
.thankyou-hero {
  background: #ffffff;
  padding: 60px 0;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.success-check-badge {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: var(--whatsapp-green);
  color: #ffffff;
  font-size: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 10px 25px rgba(31, 183, 73, 0.3);
}

.thankyou-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary-navy);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.thankyou-subtitle {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 16px;
}

.thankyou-text {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.thankyou-cards-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 25px;
  max-width: 900px;
  margin: 40px auto 0;
}

.contact-card-box {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  text-align: left;
  display: flex;
  gap: 20px;
  align-items: center;
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: rgba(31, 183, 73, 0.15);
  color: var(--whatsapp-green);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.contact-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.contact-card-phone {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-top: 10px;
}

/* --- E-INVOICING HERO SPECIFICS --- */
.einvoicing-illustration-wrapper {
  position: relative;
  text-align: center;
}

.laptop-frame {
  background: #ffffff;
  border-radius: 16px;
  padding: 15px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.laptop-screen-content {
  background: #f8fafc;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #e2e8f0;
}

.fta-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #ffffff;
  border-radius: 8px;
  padding: 8px 14px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 12px;
}

/* --- FOOTER --- */
.site-footer {
  background-color: var(--primary-navy);
  color: #cbd5e1;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.footer-col-title {
  font-size: 14px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

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

.footer-link {
  color: #94a3b8;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #ffffff;
}

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 12px;
}

.footer-info-icon {
  color: #38bdf8;
  font-size: 16px;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #64748b;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: background 0.2s ease;
}

.social-icon:hover {
  background: var(--accent-blue);
}

/* Floating WhatsApp Sticky Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background-color: var(--whatsapp-green);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 25px rgba(31, 183, 73, 0.5);
  z-index: 999;
  transition: transform 0.3s ease;
}

.whatsapp-float-btn:hover {
  transform: scale(1.1);
}

/* --- APP-LIKE MOBILE RESPONSIVE SYSTEM --- */
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  position: relative;
}

body.no-scroll {
  overflow: hidden !important;
}

.header-right-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-link-icon {
  display: none;
}

.mobile-drawer-ctas {
  display: none;
}

.mobile-app-dock {
  display: none;
}

@media (max-width: 992px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .header-inner {
    padding: 12px 0;
  }
  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .mobile-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
  }
  .btn-whatsapp-nav {
    padding: 8px 14px;
    font-size: 13px;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    background: var(--primary-navy);
    padding: 20px 20px 40px;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 1001;
    overflow-y: auto;
  }
  .nav-menu.active {
    right: 0;
  }
  .mobile-menu-header {
    display: flex;
  }
  .mobile-link-icon {
    display: inline-block;
    width: 20px;
    color: #38bdf8;
    margin-right: 8px;
  }
  .nav-link {
    padding: 12px 14px;
    border-radius: 8px;
    font-size: 15px;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .nav-link:hover, .nav-link.active {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
  }
  .nav-dropdown {
    width: 100%;
  }
  .nav-dropdown .dropdown-toggle {
    justify-content: space-between;
    width: 100%;
  }
  .dropdown-arrow {
    transition: transform 0.3s ease;
  }
  .nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
  }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    margin: 4px 0 8px 15px;
    padding: 6px 0;
    display: none;
  }
  .nav-dropdown.open .dropdown-menu {
    display: block;
  }
  .dropdown-item {
    color: #cbd5e1;
    padding: 10px 16px;
  }
  .dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
  }
  .mobile-drawer-ctas {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .btn-drawer-whatsapp {
    background: var(--whatsapp-green);
    color: #ffffff;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  .btn-drawer-call {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  .mobile-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(2, 18, 44, 0.75);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .mobile-nav-backdrop.active {
    opacity: 1;
    visibility: visible;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .stats-card {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .steps-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .two-col-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  body {
    padding-bottom: 74px;
  }
  .whatsapp-float-btn {
    bottom: 84px;
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 28px;
  }
  .mobile-app-dock {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 66px;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(3, 26, 64, 0.15);
    border-top: 1px solid var(--border-color);
    z-index: 999;
    align-items: center;
    justify-content: space-around;
    padding: 4px 6px;
  }
  .dock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    flex: 1;
    height: 100%;
    color: #64748b;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  .dock-item i {
    font-size: 19px;
  }
  .dock-item.active {
    color: var(--primary-blue);
  }
  .dock-highlight {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-blue));
    border-radius: 12px;
    height: 50px;
    margin: 0 4px;
    box-shadow: 0 4px 12px rgba(11, 94, 215, 0.35);
  }
  .dock-highlight i {
    color: #ffffff;
  }
  .dock-whatsapp {
    color: var(--whatsapp-green);
  }
  .dock-call {
    color: var(--primary-blue);
  }

  .container {
    padding: 0 16px;
  }
  .hero-section {
    padding: 35px 0 50px;
  }
  .hero-badge {
    font-size: 11px;
    padding: 5px 12px;
    margin-bottom: 14px;
  }
  .hero-title {
    font-size: clamp(24px, 6.5vw, 34px);
    line-height: 1.2;
    margin-bottom: 15px;
  }
  .hero-subtitle-tags {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }
  .btn-primary-blue, .btn-whatsapp-hero {
    width: 100%;
    padding: 14px 18px;
    font-size: 14px;
  }
  .hero-form-card {
    padding: 20px 16px;
    border-radius: var(--radius-md);
  }
  .hero-form-title {
    font-size: 20px;
  }
  .phone-input-group {
    gap: 6px;
  }
  .phone-prefix {
    width: 90px;
    font-size: 12px;
    padding: 10px 4px;
  }

  .stats-section {
    margin-top: -15px;
  }
  .stats-card {
    grid-template-columns: repeat(2, 1fr);
    padding: 16px 14px;
    gap: 12px;
  }
  .stat-item {
    gap: 10px;
  }
  .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .stat-value {
    font-size: 18px;
  }
  .stat-label {
    font-size: 11px;
  }

  .section {
    padding: 45px 0;
  }
  .section-title-wrap {
    margin-bottom: 30px;
  }
  .section-title {
    font-size: clamp(22px, 5vw, 28px);
  }
  .section-subtitle {
    font-size: 14px;
  }

  /* --- SERVICES & FEATURES 2x2 RESPONSIVE GRID --- */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .service-card {
    padding: 16px 12px;
    border-radius: 14px;
    text-align: center;
    align-items: center;
  }
  .service-icon-box {
    width: 46px;
    height: 46px;
    font-size: 20px;
    border-radius: 12px;
    margin: 0 auto 12px;
  }
  .service-title {
    font-size: 14px;
    line-height: 1.25;
    margin-bottom: 6px;
  }
  .service-desc {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .service-link {
    font-size: 12px;
    gap: 4px;
  }

  /* Optional Touch Slider / Carousel scroll container for Services if enabled */
  .services-slider {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 12px;
    -webkit-overflow-scrolling: touch;
  }
  .services-slider .service-card {
    flex: 0 0 80%;
    scroll-snap-align: center;
    max-width: 280px;
  }
  
  .why-us-section {
    padding: 45px 0;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .feature-box {
    padding: 14px 10px;
    border-radius: 10px;
  }
  .feature-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
    margin-bottom: 8px;
  }
  .feature-title {
    font-size: 13px;
  }
  .feature-desc {
    font-size: 11px;
  }

  .steps-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .step-card {
    padding: 18px 12px;
    border-radius: 12px;
  }
  .step-number-badge {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin-bottom: 12px;
  }
  .step-title {
    font-size: 14px;
  }
  .step-desc {
    font-size: 11px;
  }

  .two-col-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .col-card {
    padding: 20px 16px;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .cta-buttons a {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .thankyou-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .logo-brand {
    font-size: 20px;
  }
  .logo-brand span.xyz {
    font-size: 24px;
  }
  .logo-subtext {
    font-size: 10px;
  }
  .btn-whatsapp-nav {
    display: none;
  }
  .stats-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 12px 10px;
  }
  .stat-value {
    font-size: 16px;
  }
  .stat-label {
    font-size: 10px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .service-card {
    padding: 14px 8px;
  }
  .service-icon-box {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-bottom: 8px;
  }
  .service-title {
    font-size: 13px;
  }
  .service-desc {
    font-size: 10px;
    line-height: 1.3;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .phone-input-group {
    flex-direction: column;
  }
  .phone-prefix {
    width: 100%;
    justify-content: flex-start;
    padding: 10px 12px;
  }
}


