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

:root {
  --primary-color: #1a5490;
  --secondary-color: #2196F3;
  --accent-color: #FFC107;
  --gold-color: #FFC107;
  --dark-bg: #0d1b2a;
  --light-bg: #f8f9fa;
  --text-dark: #2c3e50;
  --text-light: #ffffff;
  --border-color: #e0e0e0;
  --hover-color: #145080;
  --success-color: #10b981;
  --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  --card-shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.12);

  /* New font variables */
  --font-sans: 'Source Sans Pro', ui-sans-serif, system-ui, sans-serif;
  --font-serif: 'Source Serif Pro', ui-serif, Georgia, serif;
  --font-mono: 'Source Code Pro', ui-monospace, monospace;
}

body {
  font-family: var(--font-sans), 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Top Bar */
.top-bar {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 10px 0;
  font-size: 14px;
}

.top-bar-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-links a {
  color: var(--text-light);
  text-decoration: none;
  margin-left: 20px;
  transition: color 0.3s;
}

.top-bar-links a:hover {
  color: var(--secondary-color);
}

/* Header */
.header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

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

.logo-section h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 1px;
  margin: 0;
}

.logo-section .tagline {
  font-size: 14px;
  color: #666;
  font-weight: 400;
  margin-top: 5px;
}

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

.header-contact {
  display: flex;
  align-items: center;
  gap: 30px;
}

.phone-number {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
}

.phone-number i {
  color: var(--gold-color);
}

.cta-button {
  background: var(--secondary-color);
  color: white;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.3);
  white-space: nowrap;
}

.cta-button:hover {
  background: #1976D2;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--primary-color);
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  color: var(--accent-color);
}

/* Navigation */
.navigation {
  display: none;
  /* Hidden on desktop */
  background: var(--primary-color);
  padding: 0;
}

.nav-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-link {
  color: white;
  text-decoration: none;
  padding: 16px 24px;
  display: inline-block;
  font-weight: 500;
  transition: all 0.3s;
  border-bottom: 3px solid transparent;
}

.nav-link:hover {
  background: var(--hover-color);
  border-bottom-color: var(--accent-color);
}

/* Mobile Navigation Styles */
@media (max-width: 1240px) {
  .mobile-menu-toggle {
    display: block;
  }

  .navigation {
    display: block;
    /* Show on mobile */
    position: fixed;
    top: 80px;
    /* Below header */
    right: -100%;
    width: 300px;
    height: calc(100vh - 80px);
    background: white;
    /* Changed to white */
    transition: right 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    padding-top: 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  }

  .navigation.active {
    right: 0;
  }

  .nav-content {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }

  .nav-link {
    color: #333;
    /* Dark text */
    padding: 18px 30px;
    border-bottom: 1px solid #f0f0f0;
    border-left: 3px solid transparent;
  }

  .nav-link:hover {
    background: #f9f9f9;
    border-left-color: var(--secondary-color);
    border-bottom-color: #f0f0f0;
    color: var(--secondary-color);
  }

  .header-content {
    padding: 15px 20px;
  }

  .logo-section h1 {
    font-size: 24px;
  }

  .logo-section .tagline {
    font-size: 12px;
  }

  .header-right {
    gap: 15px;
  }

  .header-contact {
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
  }

  .phone-number {
    font-size: 18px;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 14px;
  }
}

/* Hero Section */
.hero {
  background: url('./../hero-bg.jpg') center center/cover no-repeat;
  color: white;
  padding: 150px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 650px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* MAKE CONTENT ABOVE OVERLAY */
.hero>* {
  position: relative;
  z-index: 2;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;

  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.82) 100%),
    radial-gradient(circle at 25% 50%, rgba(255, 107, 53, 0.10) 0%, transparent 45%),
    radial-gradient(circle at 75% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 45%),
    radial-gradient(circle at center, transparent 20%, rgba(0, 0, 0, 0.85) 100%);

  animation: gradientShift 15s ease infinite;
  z-index: 1;
}

@keyframes gradientShift {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 0.85;
  }
}

.hero-badge {
  display: inline-block;
  background: var(--secondary-color);
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: fadeInUp 1s ease-out;
  box-shadow: 0 4px 20px rgba(255, 193, 7, 0.3);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--font-serif), 'Poppins', sans-serif;
  font-size: 72px;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.1;
  animation: fadeInUp 1s ease-out 0.1s both;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: -1px;
}

.hero h1 .highlight {
  color: var(--gold-color);
  font-style: italic;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero p {
  font-size: 20px;
  margin-bottom: 50px;
  opacity: 0.95;
  animation: fadeInUp 1s ease-out 0.2s both;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.3s both;
  margin-bottom: 60px;
}

.hero-button {
  padding: 16px 45px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
  position: relative;
  overflow: hidden;
  text-transform: capitalize;
}

.hero-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero-button:hover::before {
  width: 300px;
  height: 300px;
}

.hero-button span {
  position: relative;
  z-index: 1;
}

.hero-button-primary {
  background: white;
  color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.hero-button-primary:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

.hero-button-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  box-shadow: none;
}

.hero-button-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--gold-color);
  display: block;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-family: 'Poppins', sans-serif;
}

.stat-label {
  font-size: 16px;
  opacity: 0.9;
  font-weight: 500;
}

/* Features Section */
.features {
  background: white;
  padding: 100px 20px;
}

.features-content {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-family: var(--font-serif), 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--text-dark) 50%, transparent 100%);
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 80px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}

.feature-item {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
  transition: all 0.3s;
  border: none;
  position: relative;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: none;
  border-color: transparent;
}

.feature-number {
  font-size: 120px;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.08);
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  z-index: 0;
}

.feature-icon-wrapper {
  width: 100px;
  height: 100px;
  background: var(--secondary-color);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 20px rgba(26, 84, 144, 0.2);
}

.feature-icon-wrapper i {
  font-size: 48px;
  color: white;
}

.feature-item h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-dark);
  position: relative;
  z-index: 1;
}

.feature-item p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Services Section - ENHANCED */
.services {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 100px 20px;
}

.services-content {
  max-width: 1400px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* Default 4 columns */
  gap: 20px;
  margin-top: 60px;
}

@media (max-width: 1240px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns < 1240px */
  }
}

@media (max-width: 768px) {
  .services-grid {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on tablet/large phone */
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    /* Stack on phone */
  }
}

/* Hide cards 5-12 by default (show first 4) */
.service-card:nth-child(n+5) {
  display: none;
  opacity: 0;
}

.service-card:nth-child(n+5).show {
  display: flex;
  animation: cardFadeInUp 0.6s ease forwards;
}

/* Staggered animation delays for show more cards */
.service-card:nth-child(5).show {
  animation-delay: 0s;
}

.service-card:nth-child(6).show {
  animation-delay: 0.1s;
}

.service-card:nth-child(7).show {
  animation-delay: 0.2s;
}

.service-card:nth-child(8).show {
  animation-delay: 0.3s;
}

.service-card:nth-child(9).show {
  animation-delay: 0.4s;
}

.service-card:nth-child(10).show {
  animation-delay: 0.5s;
}

.service-card:nth-child(11).show {
  animation-delay: 0.6s;
}

.service-card:nth-child(12).show {
  animation-delay: 0.7s;
}

@keyframes cardFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Show More Services Button */
.show-more-container {
  text-align: center;
  margin-top: 50px;
}

.show-more-btn {
  background: var(--secondary-color);
  color: white;
  border: none;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.show-more-btn:hover {
  background: #1976D2;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
}

.show-more-btn.expanded {
  background: #1976D2;
}

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid transparent;
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--secondary-color);
}

.service-image-container {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(13, 27, 42, 0.1) 0%, rgba(13, 27, 42, 0.7) 100%);
}

.service-icon-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  font-size: 32px;
  z-index: 2;
  color: var(--secondary-color);
}

.service-content {
  padding: 28px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.service-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.4;
  text-align: left;
}

.service-description {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 15px;
  transition: gap 0.3s;
}

.service-card:hover .service-cta {
  gap: 12px;
}

/* Resources Section - MODERNIZED WITH TABS */
.resources {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a5490 100%);
  padding: 100px 20px;
  position: relative;
}

.resources-content {
  max-width: 1400px;
  margin: 0 auto;
}

.resources .section-title {
  color: white;
  margin-bottom: 15px;
}

.resources .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 50px;
}

/* Tabs Navigation - FIXED BACKDROP FILTER */
.resources-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 8px;
  border-radius: 16px;
  max-width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
  .resources-tabs {
    background: rgba(255, 255, 255, 0.25);
  }
}

.tab-button {
  padding: 12px 20px;
  background: transparent;
  border: none;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.tab-button:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.tab-button.active {
  color: white;
  background: var(--secondary-color);
  box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

@media (max-width: 768px) {
  .resources-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    max-width: 100%;
    border-radius: 12px;
    padding: 10px;

    /* Hide scrollbar for cleaner look */
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .resources-tabs::-webkit-scrollbar {
    display: none;
  }

  .tab-button {
    flex: 0 0 auto;
    font-size: 14px;
    padding: 10px 16px;
  }
}

/* Tab Content */
.tab-content {
  display: none;
  animation: fadeInScale 0.5s ease;
}

.tab-content.active {
  display: block;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Resource Cards Grid */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.resource-card {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: cardFadeInUp 0.6s ease forwards;
}

.tab-content.active .resource-card:nth-child(1) {
  animation-delay: 0s;
}

.tab-content.active .resource-card:nth-child(2) {
  animation-delay: 0.1s;
}

.tab-content.active .resource-card:nth-child(3) {
  animation-delay: 0.2s;
}

.tab-content.active .resource-card:nth-child(4) {
  animation-delay: 0.3s;
}

.tab-content.active .resource-card:nth-child(5) {
  animation-delay: 0.4s;
}

.tab-content.active .resource-card:nth-child(6) {
  animation-delay: 0.5s;
}

.resource-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--secondary-color), var(--accent-color));
  transform: scaleY(0);
  transition: transform 0.3s;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: var(--secondary-color);
}

.resource-card:hover::before {
  transform: scaleY(1);
}

.resource-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--secondary-color), #64b5f6);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 32px;
  margin-bottom: 20px;
  box-shadow: 0 8px 16px rgba(33, 150, 243, 0.3);
}

.resource-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.resource-description {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
}

.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: gap 0.3s;
}

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

.resource-links-list {
  list-style: none;
  margin-top: 20px;
}

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

.resource-links-list a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s;
  position: relative;
  padding-left: 30px;
  font-weight: 500;
}

.resource-links-list a::before {
  content: "▸";
  position: absolute;
  left: 12px;
  color: var(--secondary-color);
  font-weight: bold;
  transition: all 0.3s;
}

.resource-links-list a:hover {
  background: #f1f5f9;
  color: var(--secondary-color);
  padding-left: 35px;
}

.resource-links-list a:hover::before {
  left: 15px;
  color: var(--accent-color);
}

/* Request Call Back Section - REDESIGNED & REPOSITIONED */
.request-callback {
  background: linear-gradient(135deg, rgba(13, 27, 42, 0.95) 0%, rgba(26, 84, 144, 0.95) 100%),
    url('hero-bg.jpg') center center/cover no-repeat;
  padding: 100px 20px;
  color: white;
  position: relative;
  overflow: hidden;
}

.request-callback::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 600"><defs><linearGradient id="g" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0.05);stop-opacity:1" /></linearGradient></defs><rect width="400" height="600" fill="url(%23g)" /><circle cx="100" cy="150" r="80" fill="rgba(33,150,243,0.05)" /><circle cx="350" cy="400" r="120" fill="rgba(33,150,243,0.03)" /></svg>') no-repeat;
  pointer-events: none;
}

.request-callback-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.callback-text h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.callback-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  opacity: 0.95;
}

.callback-features {
  display: flex;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.callback-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.callback-feature-item i {
  font-size: 24px;
  color: var(--accent-color);
}

.callback-feature-item span {
  font-weight: 600;
  font-size: 14px;
}

.callback-disclaimer {
  font-size: 13px;
  opacity: 0.7;
  margin-top: 30px;
}

.callback-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(255, 255, 255, 0.98);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.callback-form h3 {
  color: var(--text-dark);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group select,
.form-group input {
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s;
}

.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.form-group label {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 500;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.captcha-container {
  margin: 15px 0;
}

.callback-btn {
  background: var(--secondary-color);
  color: white;
  border: none;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.callback-btn:hover {
  background: #1976D2;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(33, 150, 243, 0.3);
}

/* Request Quote CTA Section - NEW */
.request-quote-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.request-quote-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom center;
  background-size: cover;
  opacity: 0.6;
}

.request-quote-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.quote-cta-text {
  flex: 1;
  color: white;
}

.quote-cta-text h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.quote-cta-text p {
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
  max-width: 600px;
}

.quote-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent-color);
  color: white;
  padding: 20px 45px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  white-space: nowrap;
}

.quote-cta-button:hover {
  background: #ff5722;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
  gap: 16px;
}

.quote-cta-button i {
  font-size: 20px;
  transition: transform 0.3s;
}

.quote-cta-button:hover i {
  transform: translateX(4px);
}

/* Office Locations Section - REDESIGNED WITH BIG MAP */
.office-locations {
  background: #f8fafc;
  padding: 100px 20px;
}

.office-locations-content {
  max-width: 1400px;
  margin: 0 auto;
}

.office-locations .section-title {
  text-align: center;
  margin-bottom: 15px;
}

.office-locations .section-subtitle {
  text-align: center;
  margin-bottom: 60px;
  font-size: 18px;
  font-weight: 500;
}

.office-locations .section-subtitle i {
  color: var(--primary-color);
  margin-right: 8px;
  font-size: 20px;
}

.map-container-single {
  height: 550px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 4px solid white;
}

.map-container-single iframe {
  width: 100%;
  height: 100%;
}

.locations-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

.map-container {
  height: 700px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 4px solid white;
  position: sticky;
  top: 100px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
}

.locations-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.location-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.location-card:hover {
  transform: translateX(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border-color: var(--secondary-color);
}

.location-card-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.location-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.location-card-header h3 {
  color: white;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.location-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.location-card-body {
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.location-info {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.location-info i {
  color: var(--secondary-color);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.location-info strong {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.7;
}

.location-info p {
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.location-info a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.location-info a:hover {
  color: var(--hover-color);
  text-decoration: underline;
}



/* Responsive Design */
@media (max-width: 1024px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .header-contact {
    flex-direction: column;
    gap: 15px;
  }

  .resources-tabs {
    max-width: 100%;
  }

  .request-callback-content {
    grid-template-columns: 1fr;
  }

  .request-quote-content {
    flex-direction: column;
    text-align: center;
  }

  .quote-cta-text {
    max-width: 100%;
  }

  .quote-cta-text p {
    max-width: 100%;
  }

  .locations-layout {
    grid-template-columns: 1fr;
  }

  .map-container {
    position: static;
    height: 500px;
  }

  .map-container-single {
    height: 450px;
  }
}

@media (max-width: 768px) {

  /* Hide top bar on mobile and tablet */
  .top-bar {
    display: none;
  }

  /* Hide tagline on mobile */
  .logo-section .tagline {
    display: none;
  }

  /* Adjust header for mobile */
  .header-content {
    padding: 12px 20px;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    display: flex !important;
  }

  /* Sidebar adjust for mobile height */
  .navigation {
    top: 58px;
    height: calc(100vh - 58px);
  }

  .logo-section h1 {
    font-size: 20px;
  }

  .phone-number {
    font-size: 16px;
  }

  .header-contact {
    gap: 8px;
  }

  .hero {
    padding: 80px 20px;
    min-height: 500px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 18px;
    margin-bottom: 20px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .hero-stats {
    gap: 40px;
    margin-top: 50px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 14px;
  }

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

  .features-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .section-subtitle {
    font-size: 16px;
    margin-bottom: 60px;
  }

  .feature-number {
    font-size: 80px;
    bottom: -40px;
  }

  .feature-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
  }

  .feature-icon-wrapper i {
    font-size: 40px;
  }

  .feature-item h3 {
    font-size: 20px;
  }

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

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

  .tab-button {
    padding: 12px 20px;
    font-size: 14px;
  }

  .callback-text h2 {
    font-size: 32px;
  }

  .callback-text p {
    font-size: 15px;
  }

  .callback-features {
    flex-direction: column;
    gap: 15px;
  }

  .callback-form {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .quote-cta-text h2 {
    font-size: 32px;
  }

  .quote-cta-text p {
    font-size: 16px;
  }

  .quote-cta-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 15px;
    min-height: 400px;
  }

  .hero-badge {
    font-size: 11px;
    padding: 5px 15px;
    margin-bottom: 15px;
  }

  .hero h1 {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .hero p {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .hero-button {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
    max-width: 250px;
  }

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

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

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

  .feature-number {
    font-size: 60px;
    bottom: -35px;
  }

  .feature-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .feature-icon-wrapper i {
    font-size: 35px;
  }

  .feature-item h3 {
    font-size: 18px;
  }

  .hero-stats {
    gap: 30px;
    margin-top: 40px;
  }

  .stat-number {
    font-size: 32px;
  }

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

  .top-bar {
    display: none;
  }

  .header-content {
    padding: 12px 15px;
  }

  .logo-section h1 {
    font-size: 20px;
  }

  .logo-section .tagline {
    display: none;
  }

  .phone-number {
    font-size: 16px;
    gap: 5px;
  }

  .cta-button {
    padding: 8px 15px;
    font-size: 13px;
  }

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

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

  .resources-tabs {
    gap: 6px;
    padding: 6px;
  }

  .tab-button {
    padding: 10px 16px;
    font-size: 13px;
  }

  .quote-cta-text h2 {
    font-size: 28px;
  }

  .map-container {
    height: 400px;
  }

  .map-container-single {
    height: 350px;
  }
}

/* Updated Footer Styles */
.footer {
  background: #1a1a1a;
  color: #cccccc;
  padding: 60px 20px 30px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.footer-logo-icon {
  width: 45px;
  height: 45px;
  background: var(--gold-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #1a1a1a;
}

.footer-logo-text {
  font-size: 22px;
  font-weight: 700;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.footer-description {
  font-size: 14px;
  line-height: 1.8;
  color: #999;
  max-width: 350px;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-item i {
  color: var(--gold-color);
  font-size: 16px;
  width: 20px;
}

.footer-contact-item:hover {
  color: var(--gold-color);
}

/* Footer Column */
.footer-column h3 {
  color: var(--gold-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  font-family: 'Poppins', sans-serif;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links li a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-links li a:hover {
  color: var(--gold-color);
  padding-left: 8px;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.social-icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cccccc;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
  background: var(--gold-color);
  color: #1a1a1a;
  transform: translateY(-3px);
  border-color: var(--gold-color);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  font-size: 14px;
  color: #666;
}

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

.footer-bottom-links a {
  color: #999;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

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

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 20px 25px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-bottom: 40px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-description {
    max-width: 100%;
  }

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

  .footer-bottom-links {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .footer-logo-text {
    font-size: 20px;
  }

  .footer-logo-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .footer-column h3 {
    font-size: 16px;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .social-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}

/* Header Navigation Desktop */
.header-nav.desktop-only {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-nav.desktop-only .nav-link {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 17px;
  padding: 10px 15px;
  border-radius: 6px;
  border-bottom: 2px solid transparent;
  /* Reserve space */
  transition: all 0.3s;
}

.header-nav.desktop-only .nav-link:hover {
  background: transparent;
  color: var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
}

/* Hide desktop nav on mobile/tablet */
@media (max-width: 1240px) {
  .header-nav.desktop-only {
    display: none;
  }
}

/* Modern CTA Section */
.cta-modern-section {
  padding: 80px 20px;

}

.cta-modern-container {
  max-width: 1200px;
  margin: 0 auto;
}

.cta-modern-card {
  background: url('./../hero-bg.jpg') center center/cover no-repeat;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  color: white;
}

/* Dark overlay for text readability */
.cta-modern-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.cta-modern-content {
  flex: 1;
  position: relative;
  z-index: 2;
  padding-right: 40px;
}

.cta-modern-content h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-modern-content p {
  font-size: 18px;
  margin-bottom: 0;
  opacity: 0.9;
  max-width: 600px;
}

/* Glass Panel (Right Side) */
.cta-glass-panel {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px);
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.cta-phone-box {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
  min-width: 180px;
}

.phone-label {
  font-size: 12px;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
}

.phone-number {
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.cta-glass-btn {
  background: #111;
  color: white;
  width: 100px;
  /* Fixed width like reference square/rect */
  height: 60px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: transform 0.2s, background 0.2s;
}

.cta-glass-btn i {
  font-size: 18px;
  margin-top: 5px;
}

.cta-glass-btn:hover {
  background: #333;
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .cta-modern-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .cta-modern-content {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .cta-glass-panel {
    width: 100%;
    flex-direction: column;
  }

  .cta-phone-box,
  .cta-glass-btn {
    width: 100%;
    height: auto;
    padding: 15px;
  }
}

/* Awards Section */
.awards {
  background-color: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
}

.awards-content {
  max-width: 1200px;
  margin: 0 auto;
}

.awards-title {
  font-family: var(--font-serif), 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.awards-subtitle {
  font-size: 18px;
  color: #666;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.awards-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.award-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 220px;
}

.award-img {
  width: 160px;
  height: auto;
  transition: transform 0.3s ease;
}

.award-img:hover {
  transform: scale(1.05);
}

/* Request Call Back Section */
.callback-section {
  position: relative;
  background: url('./../hero-bg.jpg') center center/cover no-repeat;
  padding: 80px 20px;
  color: white;
}

.callback-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26, 84, 144, 0.9) 0%, rgba(13, 27, 42, 0.95) 100%);
  z-index: 1;
}

.callback-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.callback-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.callback-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  text-align: left;
}

.callback-title .highlight {
  color: var(--secondary-color);
}

.callback-desc {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 30px;
  text-align: left;
}

.callback-desc a,
.callback-optout a {
  color: white;
  text-decoration: underline;
}

.callback-optout {
  font-size: 14px;
  opacity: 0.7;
  margin-top: 40px;
  text-align: left;
}

/* Form Styles */
.callback-form-col {
  background: transparent;
}

.callback-form {
  text-align: left;
}

.form-label {
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
  font-size: 22px;
  color: var(--primary-color)
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-input {
  width: 100%;
  padding: 12px 15px;

  /* Gray input style */
  background: #f1f3f5;
  /* soft gray */
  border: 1px solid #d1d5db;
  /* light gray border */

  color: #333;
  font-size: 14px;
  border-radius: 6px;

  transition: all 0.2s ease;
}

/* Focus state */
.form-input:focus {
  background: #fff;
  border-color: #9ca3af;
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

/* Placeholder color */
.form-input::placeholder {
  color: #6b7280;
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23333%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right .7em top 50%;
  background-size: .65em auto;
}

.recaptcha-placeholder {
  width: 100%;
}

.recaptcha-box {
  background: #f9f9f9;
  border-radius: 4px;
  border: 1px solid #d3d3d3;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #000;
  max-width: 100%;
  height: 50px;
  /* Approximate height match to inputs */
}

.recaptcha-box input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.recaptcha-box label {
  font-size: 14px;
  font-weight: 500;
}

.recaptcha-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 9px;
  color: #555;
  margin-left: auto;
}

.recaptcha-logo i {
  font-size: 16px;
  color: #1A73E8;
  margin-bottom: 2px;
}

.callback-btn {
  background: var(--secondary-color);
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
  text-transform: uppercase;
  margin-top: 10px;
  width: 100%;
}

.callback-btn:hover {
  background: #1976D2;
}

@media (max-width: 900px) {
  .callback-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }
}

/* Office Locations Section */
.office-locations {
  padding: 80px 20px;
  background-color: #fff;
}

.office-locations-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.map-container-single {
  width: 100%;
  height: 450px;
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Ensure CTA container matches */
.cta-modern-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

/* Specific Mobile Adjustments */
@media (max-width: 768px) {
  .office-locations {
    padding: 60px 20px;
  }

  .map-container-single {
    height: 300px;
  }
}

/* Cities Grid - Multi-column Layout */
.cities-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 20px;
  margin-top: 25px;
}

.cities-grid li {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .cities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .cities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cities-grid {
    grid-template-columns: 1fr;
  }
}