/* ========================================
   Adeverra - Custom Styles
   ======================================== */

/* Local Font Files - Inter */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter/inter-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter/inter-medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter/inter-semibold.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter/inter-bold.woff2') format('woff2');
}

/* Local Font Files - Poppins */
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/poppins/poppins-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/poppins/poppins-medium.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/poppins/poppins-semibold.woff2') format('woff2');
}

@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/poppins/poppins-bold.woff2') format('woff2');
}

/* CSS Variables */
:root {
  --primary-cyan: #00A7CC;
  --primary-cyan-dark: #008CAD;
  --primary-orange: #E58426;
  --primary-orange-dark: #D4731F;
  --deep-blue: #1F3C6A;
  --dark-blue: #0D1B2A;
  --light-gray: #F8FAFC;
  --white: #FFFFFF;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--gray-600);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--deep-blue);
  font-weight: 700;
}

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

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

/* Custom Button Styles */
.btn-primary-custom {
  background-color: var(--primary-cyan);
  border: none;
  color: white;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary-custom:hover {
  background-color: var(--primary-cyan-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 167, 204, 0.3);
}

.btn-orange {
  background-color: var(--primary-orange);
}

.btn-orange:hover {
  background-color: var(--primary-orange-dark);
  box-shadow: 0 10px 30px rgba(229, 132, 38, 0.3);
}

.btn-outline-custom {
  background-color: transparent;
  border: 2px solid var(--gray-200);
  color: var(--deep-blue);
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-custom:hover {
  background-color: var(--gray-100);
  border-color: var(--gray-300);
  color: var(--deep-blue);
}

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

.btn-white:hover {
  background-color: var(--gray-100);
  color: var(--primary-cyan);
}

/* ========================================
   Header / Navigation
   ======================================== */
.navbar-custom {
  padding: 20px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar-custom.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}

.navbar-brand img {
  height: 80px;
  width: auto;
}

.navbar-nav .nav-link {
  color: var(--deep-blue);
  font-weight: 500;
  padding: 10px 20px;
  transition: color 0.3s ease;
}

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

.dropdown-menu {
  border: none;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  padding: 16px;
  min-width: 280px;
}

.dropdown-item {
  padding: 12px 16px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.dropdown-item:hover {
  background-color: rgba(0, 167, 204, 0.1);
}

.dropdown-item strong {
  color: var(--deep-blue);
  display: block;
  margin-bottom: 4px;
}

.dropdown-item span {
  color: var(--gray-500);
  font-size: 0.875rem;
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
  min-height: 100vh;
  padding-top: 120px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, #ffffff 0%, #F0F9FB 50%, #E8F4F8 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: rgba(0, 167, 204, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -200px;
  width: 400px;
  height: 400px;
  background: rgba(229, 132, 38, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(0, 167, 204, 0.2);
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--primary-cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary-cyan), var(--primary-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray-600);
  margin-bottom: 32px;
  max-width: 540px;
}

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

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

.trust-avatars {
  display: flex;
}

.trust-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-cyan), var(--deep-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  border: 2px solid white;
  margin-left: -8px;
}

.trust-avatar:first-child {
  margin-left: 0;
}

/* Hero Stats Card */
.hero-stats-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item.cyan { background: rgba(0, 167, 204, 0.1); }
.stat-item.orange { background: rgba(229, 132, 38, 0.1); }
.stat-item.blue { background: rgba(31, 60, 106, 0.1); }
.stat-item.gradient { background: linear-gradient(135deg, rgba(0, 167, 204, 0.1), rgba(229, 132, 38, 0.1)); }

.stat-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.stat-icon.cyan { color: var(--primary-cyan); }
.stat-icon.orange { color: var(--primary-orange); }
.stat-icon.blue { color: var(--deep-blue); }
.stat-icon.green { color: #22C55E; }

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--deep-blue);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.hot-leads-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  background: var(--primary-orange);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  animation: float 3s ease-in-out infinite;
}

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

.new-lead-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: white;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
  animation-delay: 0.5s;
}

.new-lead-icon {
  width: 48px;
  height: 48px;
  background: #DCFCE7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22C55E;
}

/* ========================================
   Stats Section
   ======================================== */
.stats-section {
  background: var(--deep-blue);
  padding: 60px 0;
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 40px 40px;
}

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

.stats-counter .value {
  font-size: 3rem;
  font-weight: 700;
  color: white;
}

.stats-counter .suffix {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-cyan);
}

.stats-counter .label {
  color: var(--gray-300);
  font-size: 1.125rem;
  margin-top: 8px;
}

.stats-counter .underline {
  width: 60px;
  height: 4px;
  background: var(--primary-orange);
  border-radius: 2px;
  margin: 12px auto 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.stats-counter:hover .underline {
  transform: scaleX(1);
}

/* ========================================
   Trusted Brands Section
   ======================================== */
.trusted-section {
  padding: 80px 0;
  background: white;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto 48px;
}

.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 80px;
  background: var(--gray-100);
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.brand-item:hover {
  background: rgba(0, 167, 204, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.brand-item span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-400);
  transition: color 0.3s ease;
}

.brand-item:hover span {
  color: var(--primary-cyan);
}

.section-divider {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-cyan), var(--primary-orange));
  border-radius: 2px;
  margin: 48px auto 0;
}

/* ========================================
   Services Section
   ======================================== */
.services-section {
  padding: 100px 0;
  background: linear-gradient(180deg, white 0%, var(--light-gray) 100%);
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-badge.cyan {
  background: rgba(0, 167, 204, 0.1);
  color: var(--primary-cyan);
}

.section-badge.orange {
  background: rgba(229, 132, 38, 0.1);
  color: var(--primary-orange);
}

.section-badge.blue {
  background: rgba(31, 60, 106, 0.1);
  color: var(--deep-blue);
}

.service-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-100);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.service-card.cyan::before { background: rgba(0, 167, 204, 0.2); }
.service-card.orange::before { background: rgba(229, 132, 38, 0.2); }
.service-card.blue::before { background: rgba(31, 60, 106, 0.2); }

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1);
}

.service-icon.cyan {
  background: rgba(0, 167, 204, 0.1);
  color: var(--primary-cyan);
}

.service-icon.orange {
  background: rgba(229, 132, 38, 0.1);
  color: var(--primary-orange);
}

.service-icon.blue {
  background: rgba(31, 60, 106, 0.1);
  color: var(--deep-blue);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--primary-cyan);
}

.service-card p {
  color: var(--gray-600);
  margin-bottom: 24px;
}

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

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--gray-600);
  font-size: 0.875rem;
}

.service-features li i {
  color: #22C55E;
}

.service-link {
  color: var(--primary-cyan);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.service-link:hover {
  gap: 12px;
  color: var(--primary-cyan-dark);
}

/* ========================================
   Global Reach Section
   ======================================== */
.global-section {
  padding: 100px 0;
  background: var(--deep-blue);
  position: relative;
  overflow: hidden;
}

.global-section::before {
  content: '';
  position: absolute;
  top: 100px;
  left: 50px;
  width: 300px;
  height: 300px;
  background: rgba(0, 167, 204, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.global-section::after {
  content: '';
  position: absolute;
  bottom: 100px;
  right: 50px;
  width: 350px;
  height: 350px;
  background: rgba(229, 132, 38, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.global-section .section-badge {
  background: rgba(0, 167, 204, 0.2);
  color: var(--primary-cyan);
}

.global-section h2 {
  color: white;
}

.global-section h2 .highlight {
  color: var(--primary-cyan);
}

.global-section p {
  color: var(--gray-300);
}

.global-stat {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.global-stat .value {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.global-stat .label {
  color: var(--gray-300);
}

.location-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  color: var(--gray-300);
  font-size: 0.875rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.location-tag:hover {
  background: rgba(0, 167, 204, 0.2);
  border-color: rgba(0, 167, 204, 0.3);
}

.location-tag i {
  color: var(--primary-orange);
}

/* Globe Visual */
.globe-visual {
  position: relative;
  width: 350px;
  height: 350px;
  margin: 0 auto;
}

.globe-ring {
  position: absolute;
  border: 2px solid;
  border-radius: 50%;
}

.globe-ring.outer {
  inset: 0;
  border-color: rgba(0, 167, 204, 0.3);
  animation: spin 20s linear infinite;
}

.globe-ring.middle {
  inset: 32px;
  border-color: rgba(229, 132, 38, 0.3);
  animation: spin 15s linear infinite reverse;
}

.globe-ring.inner {
  inset: 64px;
  border-color: rgba(255, 255, 255, 0.2);
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.globe-center {
  position: absolute;
  inset: 80px;
  background: linear-gradient(135deg, var(--primary-cyan), var(--deep-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0, 167, 204, 0.4);
}

.globe-center i {
  font-size: 4rem;
  color: white;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--light-gray) 0%, white 100%);
}

.testimonial-card {
  background: white;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-100);
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-quote-icon {
  position: absolute;
  top: 32px;
  right: 32px;
  font-size: 6rem;
  color: rgba(0, 167, 204, 0.1);
}

.testimonial-stars {
  color: var(--primary-orange);
  margin-bottom: 24px;
}

.testimonial-text {
  font-size: 1.25rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-cyan), var(--deep-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial-author-info h4 {
  font-size: 1.125rem;
  margin-bottom: 4px;
}

.testimonial-author-info p {
  color: var(--gray-500);
  font-size: 0.875rem;
  margin: 0;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.testimonial-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--primary-cyan);
  background: transparent;
  color: var(--primary-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-nav-btn:hover {
  background: var(--primary-cyan);
  color: white;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 6px;
  background: var(--gray-300);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  width: 32px;
  background: var(--primary-cyan);
}

/* ========================================
   Case Studies Section
   ======================================== */
.case-studies-section {
  padding: 100px 0;
  background: white;
}

.case-study-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--gray-100);
  transition: all 0.4s ease;
  height: 100%;
}

.case-study-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.case-study-bar {
  height: 4px;
}

.case-study-bar.cyan { background: var(--primary-cyan); }
.case-study-bar.orange { background: var(--primary-orange); }
.case-study-bar.blue { background: var(--deep-blue); }

.case-study-content {
  padding: 32px;
}

.case-study-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 24px;
  transition: transform 0.3s ease;
}

.case-study-card:hover .case-study-icon {
  transform: scale(1.1);
}

.case-study-icon.cyan {
  background: rgba(0, 167, 204, 0.1);
  color: var(--primary-cyan);
}

.case-study-icon.orange {
  background: rgba(229, 132, 38, 0.1);
  color: var(--primary-orange);
}

.case-study-icon.blue {
  background: rgba(31, 60, 106, 0.1);
  color: var(--deep-blue);
}

.case-study-category {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.case-study-card h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}

.case-study-card:hover h3 {
  color: var(--primary-cyan);
}

.case-study-result {
  background: #F0FDF4;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 24px;
}

.case-study-result p {
  color: #15803D;
  font-weight: 600;
  font-size: 0.875rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--dark-blue) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 25%;
  width: 400px;
  height: 400px;
  background: rgba(0, 167, 204, 0.2);
  border-radius: 50%;
  filter: blur(100px);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 25%;
  width: 350px;
  height: 350px;
  background: rgba(229, 132, 38, 0.2);
  border-radius: 50%;
  filter: blur(100px);
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
}

.cta-badge i {
  color: var(--primary-orange);
}

.cta-badge span {
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
}

.cta-section h2 {
  color: white;
  font-size: 3rem;
  margin-bottom: 24px;
}

.cta-section h2 .highlight {
  color: var(--primary-cyan);
}

.cta-section p {
  color: var(--gray-300);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-trust {
  margin-top: 32px;
  color: var(--gray-400);
  font-size: 0.875rem;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  background: var(--dark-blue);
  padding-top: 80px;
}

.footer-brand img {
  height: 100px;
  width: auto;
  margin-bottom: 24px;
}

.footer-description {
  color: var(--gray-400);
  margin-bottom: 32px;
  max-width: 350px;
}

.footer-newsletter h4 {
  color: white;
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  padding: 12px 20px;
  color: white;
  font-size: 0.875rem;
}

.newsletter-form input::placeholder {
  color: var(--gray-400);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-cyan);
}

.newsletter-form button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-cyan);
  border: none;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--primary-cyan-dark);
}

.footer-title {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: var(--gray-400);
  transition: color 0.3s ease;
}

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

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--gray-400);
}

.footer-contact li i {
  color: var(--primary-cyan);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  margin-top: 60px;
}

.footer-copyright {
  color: var(--gray-400);
  font-size: 0.875rem;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  color: var(--gray-400);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: var(--primary-cyan);
  color: white;
}

/* ========================================
   Page Hero (Inner Pages)
   ======================================== */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #ffffff 0%, #F0F9FB 50%, #E8F4F8 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(0, 167, 204, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: rgba(229, 132, 38, 0.1);
  border-radius: 50%;
  filter: blur(80px);
}

.page-hero.orange-theme {
  background: linear-gradient(135deg, #ffffff 0%, #FFF8F0 50%, #FEF3E8 100%);
}

.page-hero.blue-theme {
  background: linear-gradient(135deg, #ffffff 0%, #F0F4F8 50%, #E8EEF4 100%);
}

/* ========================================
   Contact Page
   ======================================== */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--light-gray);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 16px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-info-card p {
  color: var(--gray-600);
  margin: 0;
}

.contact-hours {
  background: linear-gradient(135deg, var(--deep-blue), var(--dark-blue));
  border-radius: 16px;
  padding: 24px;
  color: white;
}

.contact-hours h4 {
  color: white;
  margin-bottom: 16px;
}

.contact-hours p {
  color: var(--gray-300);
  margin-bottom: 8px;
}

.contact-form-card {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--gray-100);
}

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

.form-group label {
  display: block;
  color: var(--deep-blue);
  font-weight: 500;
  margin-bottom: 8px;
}

.form-control-custom {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control-custom:focus {
  outline: none;
  border-color: var(--primary-cyan);
}

textarea.form-control-custom {
  resize: none;
  min-height: 150px;
}

/* ========================================
   Legal Pages
   ======================================== */
.legal-content {
  padding: 80px 0;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 16px;
}

.legal-content ul {
  margin-bottom: 24px;
  padding-left: 24px;
}

.legal-content ul li {
  margin-bottom: 8px;
}

.legal-contact-box {
  background: var(--light-gray);
  border-radius: 16px;
  padding: 24px;
  margin-top: 24px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  border-radius: 12px;
  overflow: hidden;
}

.legal-table th {
  background: var(--deep-blue);
  color: white;
  padding: 16px;
  text-align: left;
  font-weight: 600;
}

.legal-table td {
  padding: 16px;
  border-bottom: 1px solid var(--gray-200);
}

.legal-table tr:nth-child(even) {
  background: var(--gray-100);
}

.rights-card {
  background: var(--light-gray);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 16px;
}

.rights-card h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.rights-card p {
  font-size: 0.875rem;
  margin: 0;
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta-section h2 {
    font-size: 2rem;
  }
  
  .navbar-brand img {
    height: 60px;
  }
  
  .footer-brand img {
    height: 80px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding-top: 100px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn-primary-custom,
  .btn-outline-custom {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats-card {
    margin-top: 40px;
  }
  
  .hot-leads-badge {
    top: -10px;
    right: 10px;
  }
  
  .new-lead-card {
    bottom: -16px;
    left: 10px;
  }
  
  .stats-counter .value {
    font-size: 2rem;
  }
  
  .stats-counter .suffix {
    font-size: 1.5rem;
  }
  
  .testimonial-card {
    padding: 24px;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-bottom .row {
    text-align: center;
  }
  
  .footer-legal,
  .footer-social {
    justify-content: center;
    margin-top: 16px;
  }
  
  .globe-visual {
    width: 280px;
    height: 280px;
  }
}
