:root {
  --primary-color: #0B1F3A;
  --accent-color: #00B4B4;
  --accent-hover: #009696;
  --bg-white: #FFFFFF;
  --bg-alt: #F0F4F8;
  --text-main: #1A1A2E;
  --text-muted: #6B7280;
  --success-color: #10B981;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--primary-color);
  line-height: 1.2;
}

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

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

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Utility */
.text-center {
  text-align: center;
}

.text-accent {
  color: var(--accent-color);
}

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

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: var(--border-radius);
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--bg-white);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

.btn-block {
  display: block;
  width: 100%;
}

/* Header & Nav */
header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.logo img {
  height: 40px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 4px;
}

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

.nav-links a {
  font-weight: 500;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-md);
  border-radius: var(--border-radius);
  padding: 8px 0;
  min-width: 200px;
  z-index: 10;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 8px 24px;
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* Hero Section */
.hero {
  padding: 80px 0;
  background-color: var(--bg-alt);
  background-image:
    linear-gradient(rgba(0, 180, 180, 0.2), transparent 1px),
    linear-gradient(90deg, rgba(0, 180, 180, 0.2), transparent 1px);
  background-size: 40px 40px;
  position: relative;
  overflow: hidden;
}

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

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 24px;
}

.hero-text p.subheading {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

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

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-weight: 500;
}

.hero-bullets li::before {
  content: '✅';
  font-size: 1.25rem;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-form-box {
  background-color: var(--bg-white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}

.hero-form-box h3 {
  margin-bottom: 24px;
  font-size: 1.5rem;
}

/* Trust Strip */
.trust-strip {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 24px 0;
  text-align: center;
}

.trust-strip-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.trust-strip span {
  font-weight: 600;
  font-size: 1.125rem;
}

/* Sections General */
section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.bg-dark {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.bg-dark .section-title,
.bg-dark .section-subtitle,
.bg-dark h3 {
  color: var(--bg-white);
}

.bg-dark .text-muted {
  color: #A0ABC0;
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Cards (Benefits, Features, Cities) */
.card {
  background-color: var(--bg-white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.bg-dark .card {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--bg-white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 24px;
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}

/* Industries Grid */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
}

.industry-item {
  text-align: center;
  padding: 24px;
  background-color: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--bg-alt);
}

.industry-item:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-md);
}

.industry-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 16px;
}

.industry-item span {
  font-weight: 600;
  display: block;
}

/* Process Steps */
.process-wrapper {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 48px;
}

.process-wrapper::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--bg-alt);
  z-index: 1;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 2;
  width: 18%;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--bg-white);
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 24px;
  font-family: var(--font-heading);
}

.process-step h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Forms */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 180, 180, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-message {
  margin-top: 16px;
  padding: 12px;
  border-radius: 6px;
  display: none;
}

.form-message.success {
  background-color: #D1FAE5;
  color: #065F46;
  display: block;
}

.form-message.error {
  background-color: #FEE2E2;
  color: #991B1B;
  display: block;
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid var(--bg-alt);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 20px 24px;
  background-color: var(--bg-white);
  border: none;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-header i {
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 0 24px;
  background-color: var(--bg-white);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

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

/* Testimonials */
.testimonial-card {
  background-color: var(--bg-white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  margin: 16px;
}

.stars {
  color: #FBBF24;
  margin-bottom: 16px;
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--text-muted);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
}

.testimonial-company {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Footer */
footer {
  background-color: #05101E;
  color: #FFFFFF;
  padding: 80px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-col h4 {
  color: var(--bg-white);
  margin-bottom: 24px;
  font-size: 1.25rem;
}

.footer-col p {
  color: #A0ABC0;
  margin-bottom: 16px;
}

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

.footer-links a {
  color: #A0ABC0;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.footer-bottom p {
  color: #A0ABC0;
  font-size: 0.875rem;
}

/* Floating Elements */
.float-whatsapp {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  animation: pulse 2s infinite;
}

.float-whatsapp:hover {
  color: #FFF;
  transform: scale(1.1);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 45px;
  height: 45px;
  background-color: var(--primary-color);
  color: #FFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-md);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--accent-color);
  color: #FFF;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Content Pages */
.page-header {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 80px 0;
  text-align: center;
}

.page-header h1 {
  color: var(--bg-white);
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.content-section {
  padding: 60px 0;
}

.content-section p {
  margin-bottom: 24px;
  font-size: 1.125rem;
}

.content-section ul {
  list-style-type: disc;
  padding-left: 24px;
  margin-bottom: 24px;
}

.content-section li {
  margin-bottom: 12px;
}

.content-section h2 {
  margin-top: 40px;
  margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
  }

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

  .process-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .process-wrapper::before {
    display: none;
  }

  .process-step {
    width: 100%;
    max-width: 300px;
  }

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

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--bg-white);
    padding: 24px;
    box-shadow: var(--shadow-md);
    align-items: flex-start;
  }

  .nav-cta.active {
    display: block;
    position: absolute;
    top: calc(100% + 200px);
    left: 24px;
    z-index: 101;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 16px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero-text h1 {
    font-size: 2.25rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

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

  /* Center text and elements on mobile */
  section,
  .hero-text,
  .content-section,
  .footer-col {
    text-align: center;
  }

  section p,
  section h2,
  section h3 {
    text-align: center;
  }

  ul {
    list-style-position: inside;
  }

  .hero-bullets {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-bullets li {
    justify-content: center;
    text-align: center;
  }

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

  .grid-2>div>ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .grid-2>div>ul>li {
    justify-content: center;
    text-align: center;
  }

  .content-section ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .accordion-header {
    text-align: left;
  }

  .footer-links {
    padding-left: 0;
  }

  .footer-col .logo {
    justify-content: center;
  }

  .footer-links li {
    justify-content: center;
    display: flex;
  }

  .industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Fix alignments for form and contact info on mobile */
  .form-group label,
  .form-control,
  .form-message,
  .form-group {
    text-align: left !important;
  }

  .contact-info-item {
    justify-content: center !important;
  }

  .contact-info-item>div:last-child {
    text-align: left !important;
  }
}