@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

/* --- CSS Variables & Design Tokens (Premium White / Light Theme) --- */
:root {
  --primary: #E21C21;
  --primary-hover: #c51419;
  --primary-rgb: 226, 28, 33;
  --primary-light: rgba(226, 28, 33, 0.05);
  
  /* Redefining variables to light theme equivalents to preserve template references */
  --dark-bg: #F5F7FA;              /* Light Platinum Body background */
  --dark-card: #FFFFFF;            /* Pure White Card panels */
  --dark-border: rgba(0, 0, 0, 0.08); /* Soft gray border line */
  --dark-text-primary: #111115;    /* Deep Charcoal for headlines */
  --dark-text-secondary: #52525B;  /* Muted Slate Gray for body descriptions */
  
  --light-bg: #FFFFFF;
  --light-card: #F9FAFB;
  --light-border: rgba(0, 0, 0, 0.05);
  --light-text-primary: #1F2937;
  --light-text-secondary: #4B5563;
  
  --secondary: #00732F;             /* Premium UAE Green */
  --secondary-hover: #005a25;
  --secondary-rgb: 0, 115, 47;
  --secondary-light: rgba(0, 115, 47, 0.12);
  
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 24px;
  --border-radius-full: 9999px;
  
  --box-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --box-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
  --box-shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.08);
  --box-shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.05);
  
  --site-width: 1200px;
}

/* --- Base Resets --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--dark-bg);
  color: var(--dark-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark-text-primary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }
}

.text-center {
  text-align: center;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
  gap: 30px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* --- Component Typography --- */
.section-tag {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 12px;
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: var(--dark-text-secondary);
  max-width: 700px;
  margin: 0 auto 60px auto;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
  .section-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
}

/* --- Elegant Navigation Bar --- */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-normal);
  border-bottom: 1px solid transparent;
}

header.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.85); /* Frosted white in light mode */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

header.site-header .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  transition: var(--transition-normal);
}

header.site-header.scrolled .nav-container {
  padding: 10px 24px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--primary);
}

.brand-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark-text-primary);
}

nav.main-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
}

nav.main-nav a {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--dark-text-secondary);
}

nav.main-nav a:hover,
nav.main-nav li.active > a {
  color: var(--primary);
}

/* Dropdown Menu Styles */
.has-dropdown {
  position: relative;
}

.has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--box-shadow-lg);
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s ease;
  padding: 10px 0;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 0 !important;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(10px);
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  padding: 10px 24px;
  display: block;
  font-weight: 500;
  font-size: 14px;
  color: var(--dark-text-primary);
  border-bottom: 1px solid var(--dark-border);
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background-color: var(--secondary-light);
  color: var(--secondary);
  padding-left: 28px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Hamburger Menu button */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--dark-text-primary);
  transition: var(--transition-normal);
}

@media (max-width: 992px) {
  .menu-toggle {
    display: flex;
  }
  
  nav.main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--dark-card);
    border-left: 1px solid var(--dark-border);
    padding: 100px 40px;
    transition: var(--transition-normal);
    z-index: 1001;
    box-shadow: -10px 0 30px rgba(0,0,0,0.03);
  }
  
  nav.main-nav.active {
    right: 0;
  }
  
  nav.main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  
  nav.main-nav a {
    font-size: 18px;
  }
  
  .nav-actions .btn {
    display: none;
  }
}

/* Active Hamburger transformation */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- Premium Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-normal);
}

.btn-primary {
  background-color: var(--primary);
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(226, 28, 33, 0.25);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(226, 28, 33, 0.15);
}

.btn-secondary {
  background-color: var(--secondary);
  color: #FFFFFF;
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 115, 47, 0.35);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 11px;
}

/* --- Premium Light Glassmorphism UI tokens --- */
.glass-panel {
  background: rgba(255, 255, 255, 0.85); /* Frosty white background */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-md);
  box-shadow: var(--box-shadow-glass);
}

.glass-panel-hover:hover {
  background: #FFFFFF;
  border-color: rgba(226, 28, 33, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

/* --- Floating WhatsApp Widget --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  z-index: 999;
  font-size: 32px;
  animation: floatPulse 2s infinite;
  transition: var(--transition-normal);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #20BA56;
}

@keyframes floatPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  }
}

/* --- Hero Slider --- */
.hero-slider-container {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 0;
}

.slide-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform var(--transition-slow);
}

.slide-item {
  width: 33.333%;
  height: 100%;
  position: relative;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Slightly lighter for soft background overlay */
  z-index: 1;
}

.slide-content-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(245,247,250,0.1) 0%, rgba(245,247,250,0.8) 100%);
}

.slide-text-box {
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.slide-title {
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--dark-text-primary);
  text-shadow: none;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide-desc {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
  color: var(--dark-text-secondary);
  text-shadow: none;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.slide-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

@media (max-width: 768px) {
  .hero-slider-container {
    height: 80vh;
  }
  .slide-title {
    font-size: 32px;
  }
  .slide-desc {
    font-size: 16px;
  }
  .slide-btns {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--dark-text-primary);
  font-size: 18px;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition-fast);
}

.slider-arrow:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.05);
}

.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  background-color: rgba(0, 0, 0, 0.15);
  border-radius: var(--border-radius-full);
  cursor: pointer;
  transition: var(--transition-normal);
}

.slider-dot.active {
  width: 24px;
  background-color: var(--primary);
}

@media (max-width: 576px) {
  .slider-arrow {
    display: none;
  }
}

/* --- Trust Strip Badges --- */
.trust-strip {
  padding: 24px 0;
  background-color: var(--dark-card);
  border-bottom: 1px solid var(--dark-border);
}

.trust-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-rating {
  color: #FFC107;
  font-size: 15px;
}

.trust-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--dark-text-primary);
}

.trust-text span {
  color: var(--primary);
}

@media (max-width: 768px) {
  .trust-container {
    justify-content: center;
  }
}

/* --- Features Grid (Core Values) --- */
.value-card {
  padding: 40px;
  border-radius: var(--border-radius-md);
  transition: var(--transition-normal);
  background-color: var(--dark-card);
  border: 1px solid var(--dark-border);
}

.value-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: var(--transition-normal);
}

.value-card:hover .value-icon {
  background-color: var(--primary);
  color: #FFFFFF;
  transform: scale(1.05);
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.value-card p {
  color: var(--dark-text-secondary);
  font-size: 14px;
}

/* --- Services Grid --- */
.service-card {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border: 1px solid var(--dark-border);
}

.service-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* slightly lighter for premium layout */
  z-index: 1;
  transition: var(--transition-slow);
}

.service-card:hover .service-card-bg {
  transform: scale(1.08);
  filter: brightness(0.35);
}

.service-card-content {
  position: relative;
  z-index: 2;
  transition: var(--transition-normal);
}

.service-card-icon {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  color: #FFFFFF;
}

.service-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition-normal);
}

.service-card:hover p {
  opacity: 1;
  max-height: 100px;
}

.service-card-link {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card-link i {
  transition: var(--transition-fast);
}

.service-card:hover .service-card-link i {
  transform: translateX(4px);
}

/* --- Interactive Setup Cost Calculator --- */
.calculator-container {
  padding: 50px;
  border-radius: var(--border-radius-lg);
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--dark-card);
  border: 1px solid var(--dark-border);
}

@media (max-width: 768px) {
  .calculator-container {
    padding: 30px 20px;
  }
}

.calc-step {
  margin-bottom: 40px;
}

.calc-step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-text-primary);
}

.option-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 600px) {
  .option-cards {
    grid-template-columns: 1fr;
  }
}

.option-card {
  padding: 24px;
  text-align: center;
  cursor: pointer;
  border-radius: var(--border-radius-md);
  transition: var(--transition-normal);
  background-color: var(--dark-bg);
  border: 1px solid var(--dark-border);
}

.option-card i {
  font-size: 28px;
  color: var(--dark-text-secondary);
  margin-bottom: 12px;
  transition: var(--transition-normal);
}

.option-card h4 {
  font-size: 15px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.option-card p {
  font-size: 12px;
  color: var(--dark-text-secondary);
}

.option-card.selected {
  border-color: var(--primary);
  background: rgba(226, 28, 33, 0.04);
}

.option-card.selected i {
  color: var(--primary);
}

/* Visas step styling */
.visa-selector {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 400px;
  margin: 0 auto;
}

.visa-btn {
  width: 50px;
  height: 50px;
  border: 1px solid var(--dark-border);
  background-color: var(--dark-bg);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: var(--transition-fast);
}

.visa-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
}

.visa-count {
  font-size: 24px;
  font-weight: 700;
  width: 50px;
  text-align: center;
}

/* Extra services step styling */
.checkbox-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 600px) {
  .checkbox-options {
    grid-template-columns: 1fr;
  }
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  cursor: pointer;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-normal);
  background-color: var(--dark-bg);
  border: 1px solid var(--dark-border);
}

.checkbox-label input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.checkbox-label span {
  font-size: 14px;
  font-weight: 500;
}

.checkbox-label.selected {
  border-color: var(--primary);
  background: rgba(226, 28, 33, 0.04);
}

/* Calculation Result Box */
.calc-result-box {
  margin-top: 40px;
  padding: 30px;
  background-color: var(--dark-bg);
  border-radius: var(--border-radius-md);
  border-left: 4px solid var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.result-text h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dark-text-secondary);
  margin-bottom: 8px;
}

.price-display {
  font-size: 36px;
  font-weight: 800;
  color: var(--dark-text-primary);
}

.price-display span {
  color: var(--primary);
}

.price-disclaimer {
  font-size: 11px;
  color: var(--dark-text-secondary);
  margin-top: 8px;
  display: block;
}

/* --- Interactive Jurisdiction Comparison table --- */
.comparison-table-wrapper {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--border-radius-md);
  border: 1px solid var(--dark-border);
  background-color: var(--dark-card);
  box-shadow: var(--box-shadow-sm);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--dark-border);
}

.comparison-table th {
  background-color: rgba(0, 0, 0, 0.01);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--dark-text-primary);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td i.check-yes {
  color: #28a745;
  font-size: 16px;
}

.comparison-table td i.check-no {
  color: var(--primary);
  font-size: 16px;
}

/* --- Roadmap Step-by-Step Timeline --- */
.roadmap-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  margin-top: 40px;
}

.roadmap-row::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  z-index: 1;
}

.roadmap-step {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 10px;
}

.roadmap-badge {
  width: 60px;
  height: 60px;
  background-color: var(--dark-card);
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 20px auto;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition-normal);
}

.roadmap-step:hover .roadmap-badge {
  background-color: var(--primary);
  color: #FFFFFF;
  transform: scale(1.08);
}

.roadmap-step h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.roadmap-step p {
  font-size: 14px;
  color: var(--dark-text-secondary);
}

@media (max-width: 768px) {
  .roadmap-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .roadmap-row::after {
    display: none;
  }
}

/* --- Client Testimonials Slider --- */
.testimonials-slider {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  padding: 20px 0;
  background-color: var(--dark-card);
  border: 1px solid var(--dark-border);
}

.testimonial-track {
  display: flex;
  transition: transform var(--transition-normal);
}

.testimonial-item {
  width: 100%;
  flex-shrink: 0;
  padding: 0 40px;
  text-align: center;
}

.quote-icon {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 24px;
  opacity: 0.2;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 30px;
  color: var(--dark-text-secondary);
}

.client-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.client-avatar {
  width: 70px;
  height: 70px;
  border-radius: var(--border-radius-full);
  border: 2px solid var(--primary);
  object-fit: cover;
}

.client-name {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.client-title {
  font-size: 12px;
  color: var(--dark-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonials-slider .slider-arrow {
  background-color: #ffffff;
  border-color: var(--dark-border);
  box-shadow: none;
}

.testimonials-slider .slider-arrow:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}

.testimonials-slider .slider-arrow.prev { left: 0; }
.testimonials-slider .slider-arrow.next { right: 0; }

@media (max-width: 768px) {
  .testimonial-item {
    padding: 0 10px;
  }
  .testimonial-text {
    font-size: 15px;
  }
}

/* --- Contact Page Layout & Interactive Address Tabs --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Interactive tabbed addresses */
.address-tabs {
  margin-bottom: 40px;
}

.tab-nav {
  display: flex;
  border-bottom: 1px solid var(--dark-border);
  margin-bottom: 24px;
}

.tab-btn {
  flex: 1;
  padding: 16px;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-fast);
  color: var(--dark-text-secondary);
  border-bottom: 3px solid transparent;
}

.tab-btn.active {
  color: var(--primary);
  border-color: var(--primary);
}

.tab-content {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.tab-content.active {
  display: block;
}

.address-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.address-item {
  display: flex;
  gap: 16px;
  font-size: 14px;
}

.address-item i {
  color: var(--primary);
  font-size: 18px;
  margin-top: 3px;
}

.address-item h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.address-item p {
  color: var(--dark-text-secondary);
}

.map-link-btn {
  align-self: flex-start;
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--secondary);
}

.map-link-btn:hover {
  color: var(--secondary-hover);
}

/* --- Premium Contact Form --- */
.form-panel {
  padding: 40px;
  border-radius: var(--border-radius-md);
  background-color: var(--dark-card);
  border: 1px solid var(--dark-border);
}

.form-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

.form-desc {
  font-size: 14px;
  color: var(--dark-text-secondary);
  margin-bottom: 30px;
}

.contact-form .form-group {
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--dark-text-primary);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  background-color: var(--dark-bg);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-sm);
  transition: var(--transition-fast);
  color: var(--dark-text-primary);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(226, 28, 33, 0.1);
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

.contact-form select option {
  background-color: #FFFFFF;
  color: var(--dark-text-primary);
}

/* Form Notification popup */
.form-popup-notification {
  position: fixed;
  bottom: 30px;
  left: 30px;
  padding: 16px 28px;
  background-color: #28a745;
  color: #FFFFFF;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--box-shadow-md);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  transform: translateY(150%);
  transition: transform var(--transition-normal);
}

.form-popup-notification.show {
  transform: translateY(0);
}

/* --- Blog Card / Grid --- */
.blog-card {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  border: 1px solid var(--dark-border);
  background-color: var(--dark-card);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  box-shadow: var(--box-shadow-sm);
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(226, 28, 33, 0.15);
  box-shadow: var(--box-shadow-md);
}

.blog-thumb-wrapper {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.blog-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.blog-card:hover .blog-thumb {
  transform: scale(1.05);
}

.blog-meta-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary);
  color: #FFFFFF;
  padding: 6px 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--border-radius-sm);
  text-transform: uppercase;
}

.blog-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-date {
  font-size: 12px;
  color: var(--dark-text-secondary);
  margin-bottom: 10px;
}

.blog-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-excerpt {
  font-size: 14px;
  color: var(--dark-text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.blog-readmore {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-readmore:hover {
  color: var(--gold-hover);
}

/* --- Google Review Cards --- */
.google-review-card {
  background-color: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-md);
  padding: 30px;
  box-shadow: var(--box-shadow-sm);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.google-review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-md);
  border-color: rgba(66, 133, 244, 0.3);
}

.gr-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.gr-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gr-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
}

.gr-info h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  margin-bottom: 2px;
}

.gr-info span {
  font-size: 12px;
  color: var(--dark-text-secondary);
}

.gr-stars {
  color: #FBBC05;
  font-size: 14px;
  margin-bottom: 16px;
  display: flex;
  gap: 2px;
}

.gr-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--dark-text-secondary);
}

/* --- Premium Footer --- */
.site-footer {
  background-color: #FFFFFF;
  border-top: 1px solid var(--dark-border);
  padding: 80px 0 30px 0;
  color: var(--dark-text-secondary);
  font-size: 14px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

.footer-logo-desc {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-desc p {
  line-height: 1.8;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-text-primary);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-social-links {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.social-icon-btn {
  width: 40px;
  height: 40px;
  background-color: var(--dark-bg);
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-text-primary);
  font-size: 16px;
  transition: var(--transition-fast);
}

.social-icon-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.footer-contact-details li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-contact-details i {
  color: var(--primary);
  font-size: 16px;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  font-size: 12px;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
  font-size: 12px;
}

/* --- Scroll Animation Triggers --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Anim keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* =============================================
   BUSINESS GOAL SECTION (Virtuzone Image Accordion)
   ============================================= */

.biz-goal-section {
  background-color: var(--dark-bg);
  padding: 60px 0;
  border-top: 1px solid var(--dark-border);
}

.accordion-container {
  display: flex;
  gap: 15px;
  width: 100%;
  height: 600px;
}

.accordion-panel {
  position: relative;
  flex: 1;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  text-decoration: none;
  background-color: #333;
}

.accordion-panel:hover, .accordion-panel.active {
  flex: 5;
}

/* Background image handling */
.accordion-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
  z-index: 1;
}

.accordion-panel:hover .accordion-bg, 
.accordion-panel.active .accordion-bg {
  transform: scale(1.05);
}

/* Dark gradient overlay */
.accordion-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 100%);
  z-index: 2;
  transition: opacity 0.4s ease;
}

/* Vertical Title (for collapsed state) */
.accordion-vertical {
  position: absolute;
  bottom: 40px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transition: opacity 0.4s ease, transform 0.4s ease;
  color: white;
  z-index: 3;
}

.accordion-panel:hover .accordion-vertical,
.accordion-panel.active .accordion-vertical {
  opacity: 0;
  pointer-events: none;
  transform: rotate(180deg) translateX(-20px);
}

.vertical-title {
  font-family: 'Outfit', sans-serif;
  font-size: 26px;
  font-weight: 600;
  white-space: nowrap;
}

.vertical-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(180deg);
}

.vertical-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: grayscale(1) brightness(2) sepia(1) hue-rotate(320deg) saturate(10000%) contrast(1); /* Attempt to make it red */
}

/* Content (for expanded state) */
.accordion-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 50px;
  color: white;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0s;
  width: 500px; /* Prevent text wrap during animation */
  pointer-events: none;
  z-index: 3;
}

.accordion-panel:hover .accordion-content,
.accordion-panel.active .accordion-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
  pointer-events: auto;
}

.accordion-subtitle {
  font-size: 13px;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 15px;
  display: block;
  opacity: 0.9;
}

.accordion-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
  color: #ffffff;
}

.accordion-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 35px;
  opacity: 0.9;
  max-width: 90%;
}

.accordion-content .btn-primary {
  background-color: var(--primary);
  border: none;
  border-radius: var(--border-radius-full);
}

.accordion-content .btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .accordion-container { height: 500px; }
  .accordion-content h3 { font-size: 32px; }
  .accordion-content { padding: 30px; width: 400px; }
}

@media (max-width: 768px) {
  .accordion-container { 
    flex-direction: column; 
    height: auto; 
    gap: 10px;
  }
  .accordion-panel {
    flex: none;
    height: 100px; /* Collapsed height */
    transition: height 0.5s ease;
  }
  .accordion-panel:hover, .accordion-panel.active {
    height: 400px; /* Expanded height */
  }
  
  .accordion-vertical {
    bottom: auto;
    top: 50%;
    right: auto;
    left: 20px;
    transform: translateY(-50%) rotate(0deg);
    writing-mode: horizontal-tb;
    width: calc(100% - 40px);
    justify-content: space-between;
  }
  .accordion-panel:hover .accordion-vertical,
  .accordion-panel.active .accordion-vertical {
    transform: translateY(-50%) rotate(0deg) translateY(-20px);
  }
  .vertical-icon {
    transform: rotate(0deg);
  }
  .accordion-content {
    width: 100%;
    padding: 20px;
  }
}

/* =============================================
   DISCOVER SOLUTIONS - AUTO SCROLLING MARQUEE
   ============================================= */

.discover-solutions-section {
  padding: 90px 0 0 0;
  background-color: var(--dark-card);
  border-top: 1px solid var(--dark-border);
  overflow: hidden;
}

.discover-header {
  text-align: center;
  padding-bottom: 60px;
}

.discover-header .section-tag {
  color: var(--secondary);
}

/* Marquee Track */
.marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 80px;
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee-scroll 120s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.marquee-card {
  flex: 0 0 300px;
  border: 1px solid var(--dark-border);
  border-radius: var(--border-radius-md);
  padding: 32px;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.marquee-card:hover {
  border-color: var(--primary);
  box-shadow: var(--box-shadow-lg);
  transform: translateY(-4px);
}

.marquee-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary-light), rgba(0, 115, 47, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
}

.marquee-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-text-primary);
}

.marquee-card p {
  font-size: 13px;
  color: var(--dark-text-secondary);
  line-height: 1.6;
  flex: 1;
}

.marquee-card .marquee-link {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}

/* Fade edges */
.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--dark-card), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--dark-card), transparent);
}

/* =============================================
   OUR MAIN SERVICES (Slider Layout)
   ============================================= */

.main-services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.slider-nav-arrows {
  display: flex;
  gap: 15px;
}

.slider-arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #f1f2f4;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-text-primary);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-arrow-btn:hover {
  background-color: var(--primary);
  color: #FFFFFF;
  transform: scale(1.05);
}

.main-services-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 30px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Hide scrollbar */
}

.main-services-slider::-webkit-scrollbar {
  display: none; /* Hide scrollbar in webkit */
}

.ms-card {
  flex: 0 0 calc(25% - 15px); /* 4 cards per row */
  scroll-snap-align: start;
  background-color: #F8F9FA;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 450px;
  border: 1px solid var(--dark-border);
}

.ms-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.ms-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  width: 100%;
}

.ms-card-content {
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.ms-card-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-text-primary);
  margin-bottom: 12px;
}

.ms-card-content p {
  font-size: 14px;
  color: var(--dark-text-secondary);
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

.ms-btn {
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 13px;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 1200px) {
  .ms-card { flex: 0 0 calc(33.333% - 14px); }
}

@media (max-width: 992px) {
  .ms-card { flex: 0 0 calc(50% - 10px); }
  .main-services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 768px) {
  .ms-card { flex: 0 0 85%; }
}

/* --- New Header Layout --- */
header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  background-color: #ffffff;
  border-bottom: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}

header.site-header.scrolled {
  background-color: #ffffff;
  border-bottom: none;
  box-shadow: none;
  padding: 0;
}

.nav-wrapper {
  background-color: #ffffff;
  padding: 15px 0;
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
}

header.site-header .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

.nav-pill {
  background-color: #f3f4f6;
  border-radius: 50px;
  padding: 5px 15px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.left-pill ul, .right-pill ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-pill ul li {
  margin: 0;
  position: relative;
}

.nav-pill ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 14px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.nav-pill ul li a:hover, .nav-pill ul li.active a {
  color: #000;
}

.nav-pill ul li .btn-contact {
  background-color: #1a1a1a;
  color: #fff;
  border-radius: 50px;
  padding: 10px 24px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav-pill ul li .btn-contact:hover {
  background-color: #333;
  color: #fff;
  transform: translateY(-2px);
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.logo-wrapper i {
  color: #000;
  font-size: 24px;
}

.logo-wrapper .fa-building {
  position: relative;
}
.logo-wrapper .fa-building::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -2px;
  width: 8px;
  height: 8px;
  background-color: #e57c1d;
  border-radius: 50%;
}

.brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #000;
  letter-spacing: -0.5px;
}

/* Dropdown styling */
.nav-pill ul li.has-dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: #fff;
  min-width: 200px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  padding: 10px 0;
}

.nav-pill ul li.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-pill ul li.has-dropdown .dropdown-menu li {
  width: 100%;
}

.nav-pill ul li.has-dropdown .dropdown-menu li a {
  padding: 10px 20px;
  color: #444;
  font-weight: 400;
}

.nav-pill ul li.has-dropdown .dropdown-menu li a:hover {
  background-color: #f8f9fa;
  color: #000;
}

/* Ticker styling */
.ticker-wrapper {
  width: 100%;
  background-color: #03a344;
  padding: 12px 0;
  overflow: hidden;
  border-top: none;
  border-bottom: none;
}

.ticker-content {
  display: flex;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
  gap: 40px;
  padding-left: 40px;
}

.ticker-content span {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.ticker-content span .fa-star {
  font-size: 12px;
  color: #ffffff !important;
}
.star-black { color: #333; }
.star-red { color: #e53935; }
.star-green { color: #43a047; }

@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 992px) {
  .nav-pill { display: none; }
  header.site-header .nav-container { justify-content: space-between; }
  .menu-toggle { display: flex; }
}

@media (max-width: 992px) {
  .nav-pill { 
    display: none; 
    flex-direction: column;
    position: absolute;
    top: 70px;
    background: #fff;
    width: 100%;
    left: 0;
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    border-radius: 0;
  }
  .nav-pill.active {
    display: flex;
  }
  .nav-pill.left-pill {
    top: 70px;
  }
  .nav-pill.right-pill {
    top: 250px;
  }
  .nav-pill ul {
    flex-direction: column;
    width: 100%;
  }
  .nav-pill ul li {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
  .nav-pill ul li.has-dropdown .dropdown-menu {
    position: relative;
    top: 0;
    transform: none;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    display: none;
  }
  .nav-pill ul li.has-dropdown:hover .dropdown-menu {
    display: flex;
  }
}

/* --- Split Slider Design --- */
.hero-slider-container {
  height: 85vh;
  padding: 40px;
  margin-top: 135px;
  box-sizing: border-box;
}

.slide-track {
  display: flex;
  width: 300%;
  height: 100%;
  transition: transform var(--transition-slow);
}

.slide-item.split-slide {
  display: flex;
  gap: 20px;
  width: 33.3333%;
  height: 100%;
  box-sizing: border-box;
}

.split-left {
  flex: 1;
  background-color: #DA251D;
  border-radius: 40px;
  padding: 60px;
  color: #1a1a1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 50%;
  position: relative;
}

.split-left-content {
  max-width: 500px;
  margin: 0 auto;
}

.split-logo {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1a1a1a;
}

.split-left h1.slide-title {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 800;
  color: #1a1a1a;
}

.split-left p.slide-desc {
  font-size: 16px;
  margin-bottom: 40px;
  color: #1a1a1a;
  line-height: 1.6;
}

.split-btns {
  display: flex;
  gap: 10px;
  background-color: #fff;
  padding: 8px;
  border-radius: 50px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.btn-split-primary {
  background-color: #fff;
  color: #888;
  font-size: 14px;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 500;
  border: none;
}

.btn-split-outline {
  background-color: #1a1a1a;
  color: #fff;
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s;
}

.btn-split-outline:hover {
  transform: translateY(-2px);
}

.split-social-proof {
  display: flex;
  align-items: center;
  gap: 15px;
}

.split-social-proof .avatars {
  display: flex;
}

.split-social-proof .avatars img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #DA251D;
  margin-left: -10px;
}

.split-social-proof .avatars img:first-child {
  margin-left: 0;
}

.split-social-proof span {
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
}

/* Right Panel */
.split-right {
  flex: 1;
  position: relative;
  border-radius: 40px;
  overflow: hidden;
}

.split-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-pill {
  position: absolute;
  background-color: #fff;
  color: #1a1a1a;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.pill-1 { top: 20%; left: 10%; }
.pill-2 { bottom: 25%; left: 20%; }
.pill-3 { top: 40%; right: 10%; }

.bottom-pill {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #f3f4f6;
  border-radius: 50px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 85%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.bottom-pill .social-icons {
  display: flex;
  gap: 10px;
}

.bottom-pill .social-icons i {
  width: 32px;
  height: 32px;
  background-color: #fff;
  color: #1a1a1a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.bottom-pill .bottom-text {
  font-size: 11px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: right;
  line-height: 1.4;
}

@media (max-width: 992px) {
  .slide-item.split-slide {
    flex-direction: column;
  }
  .split-left {
    max-width: 100%;
    padding: 30px;
  }
  .hero-slider-container {
    height: auto;
  }
  .split-right {
    min-height: 400px;
  }
}

/* --- Seamless Business Setup Section --- */
.seamless-setup-section {
  padding: 80px 0 120px 0;
  background-color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.seamless-top {
  position: relative;
  max-width: 800px;
  margin: 0 auto 60px auto;
  padding: 40px 20px;
}

.seamless-title {
  font-size: 54px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 24px;
  font-family: 'Outfit', sans-serif;
}

.seamless-desc {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
}

.seamless-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.btn-light-pill {
  background-color: #f3f4f6;
  color: #1a1a1a;
  border-radius: 50px;
  padding: 15px 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-light-pill:hover {
  background-color: #e5e7eb;
}

.btn-text {
  color: #1a1a1a;
  font-weight: 600;
  text-decoration: none;
  padding: 15px 30px;
  transition: all 0.3s;
}

.btn-text:hover {
  opacity: 0.7;
}

/* Floating Elements */
.float-el {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  z-index: 1;
}

.el-img-1 {
  top: 0;
  left: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.el-img-1 img { width: 100%; height: 100%; object-fit: cover; }

.el-img-2 {
  bottom: 10px;
  left: 15%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.el-img-2 img { width: 100%; height: 100%; object-fit: cover; }

.el-blue {
  top: 10%;
  right: 5%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #a7d0e3;
  color: #fff;
}

.el-orange {
  bottom: 20px;
  right: 15%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: #e68a35;
  color: #fff;
}

/* Bottom Shapes Layout */
.seamless-shapes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.shape-item {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.shape-pill {
  flex: 1;
  border-radius: 140px;
  background-color: #f3f4f6;
  color: #1a1a1a;
  font-size: 46px;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  min-width: 300px;
}

.shape-circle {
  border-radius: 50%;
  width: 280px;
  max-width: 280px;
  flex: none;
  font-size: 46px;
  font-weight: 900;
  font-family: 'Outfit', sans-serif;
  color: #fff;
}

.bg-img-1 {
  background-image: url('https://static.wixstatic.com/media/b791dd_5099c091b546474aa314f77f126dacd4~mv2.jpg');
  background-size: cover;
  background-position: center;
}
.bg-img-1::before {
  content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.5);
}
.bg-img-1 span { position: relative; z-index: 2; }

.bg-red {
  background-color: #e52528;
}
.bg-red i {
  font-size: 60px;
  color: #1a1a1a;
}

.bg-img-2 {
  background-image: url('https://static.wixstatic.com/media/b791dd_e5f613c4bd614e45a94ce519506f7479~mv2.jpg');
  background-size: cover;
  background-position: center;
}
.bg-img-2::before {
  content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.5);
}
.bg-img-2 span { position: relative; z-index: 2; }

@media (max-width: 1024px) {
  .seamless-shapes {
    flex-wrap: wrap;
  }
  .shape-item {
    height: 240px;
  }
  .shape-circle {
    width: 240px;
    max-width: 240px;
  }
  .shape-pill {
    min-width: 240px;
    border-radius: 120px;
  }
}

@media (max-width: 768px) {
  .seamless-title { font-size: 40px; }
  .seamless-shapes { flex-direction: column; gap: 30px; }
  .shape-item { width: 100%; height: 200px; border-radius: 100px; }
  .shape-circle { width: 100%; border-radius: 100px; max-width: 100%; }
  .float-el { display: none; } /* Hide floating elements on mobile for cleaner look */
}

/* --- Government Marquee Section --- */
.gov-marquee-section {
  background-color: #fff;
  border-top: 1px solid #eaeaea;
  border-bottom: 1px solid #eaeaea;
  padding: 40px 0;
  overflow: hidden;
}

.gov-marquee-container {
  display: flex;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.gov-marquee-title {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  padding: 0 40px;
  border-right: 2px solid #eaeaea;
  background-color: #fff;
  z-index: 2;
  font-family: 'Outfit', sans-serif;
  text-transform: uppercase;
}

.gov-marquee-scroll {
  flex-grow: 1;
  overflow: hidden;
  position: relative;
}

.gov-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  /* Scroll to right: start at negative translation and move to 0 */
  animation: scroll-right 30s linear infinite;
  gap: 80px;
  padding-left: 80px;
}

.gov-marquee-track img {
  height: 65px;
  object-fit: contain;
  transition: all 0.3s;
}

@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@media (max-width: 768px) {
  .gov-marquee-container {
    flex-direction: column;
    gap: 20px;
  }
  .gov-marquee-title {
    border-right: none;
    border-bottom: 2px solid #eaeaea;
    padding: 0 0 20px 0;
    text-align: center;
  }
}

/* --- FAQ Styles --- */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-item summary {
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark-text);
  font-family: 'Outfit', sans-serif;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 14px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 25px 25px 25px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark-text-secondary);
}
