* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #1a5490;
  --secondary-color: #2196F3;
  --accent-color: #FFC107;
  --gold-color: #d4af37;
  --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;
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

/* ========================================
   CONTAINER - FIXED
   ======================================== */
.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Top Bar Content */
.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header Content */
.header-content {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  position: relative;
  padding: 15px 40px;
  gap: 20px;
  max-width: 1600px;
  margin: 0 auto;
}

/* Services Content */
.services-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Contact Container */
.contact-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Footer Content */
.footer-content {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

/* Features Content */
.features-content {
  max-width: 1400px;
  margin: 0 auto;
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
  background: var(--dark-bg);
  color: var(--text-light);
  padding: 10px 0;
  font-size: 14px;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-links a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.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;
}

.logo-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
}

.logo-section img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex: 0 1 auto;
}

.header-nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  padding: 10px 0;
  transition: all 0.3s;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.header-nav-link:hover {
  color: var(--secondary-color);
}

.header-contact {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
  text-align: right;
  margin-left: 20px;
}

.header-contact-text {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  line-height: 1.4;
  gap: 10px;
}

.header-contact-text .header-nav-link {
  padding: 2px 0;
  justify-content: flex-end;
}

.header-contact-text a.header-nav-link {
  color: var(--primary-color);
  font-weight: 700;
}

.header-contact-text a.header-nav-link:hover {
  color: var(--secondary-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;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--primary-color);
  justify-self: end;
  z-index: 1002;
  padding: 8px;
  transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
  color: var(--secondary-color);
}

.mobile-menu-toggle i {
  transition: transform 0.3s ease;
}

/* Header Dropdown */
.header-dropdown {
  position: relative;
}

.header-dropdown .dropdown-trigger i {
  transition: transform 0.3s ease;
  font-size: 12px;
}

.header-dropdown:hover .dropdown-trigger i {
  transform: rotate(180deg);
}

.header-dropdown-content {
  position: absolute;
  top: calc(100% + 15px);
  left: -20px;
  background: white;
  min-width: 300px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 10px 0;
  z-index: 1000;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.header-dropdown:hover .header-dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header-dropdown-content::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 40px;
  width: 12px;
  height: 12px;
  background: white;
  transform: rotate(45deg);
  border-left: 1px solid rgba(0, 0, 0, 0.04);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.header-dropdown-content a {
  color: var(--text-dark);
  text-decoration: none;
  padding: 14px 25px 14px 45px;
  display: block;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.2s ease;
  position: relative;
  border-left: none;
}

.header-dropdown-content a::before {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  opacity: 0;
  transition: all 0.2s ease;
  color: var(--secondary-color);
}

.header-dropdown-content a:hover {
  background: #f8f9fa;
  color: var(--primary-color);
  padding-left: 50px;
}

.header-dropdown-content a:hover::before {
  opacity: 1;
  left: 25px;
}

/* Header Contact Section */
.header-contact-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.phone-icon {
  font-size: 24px;
  color: var(--secondary-color);
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-size: 14px;
  color: #666;
}

.contact-number {
  font-size: 18px;
  z-index: 1001;
}

/* ========================================
   MOBILE NAVIGATION - PROFESSIONAL DRAWER
   ======================================== */
.navigation {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: white;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.navigation.active {
  right: 0;
}

/* Mobile Menu Header - Fixed Top Section */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background: white;
  border-bottom: 2px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 10;
  gap: 15px;
}

.mobile-menu-header .logo-section {
  flex-shrink: 0;
}

.mobile-menu-header .logo-section img {
  max-height: 45px;
  width: auto;
}

/* Mobile Phone Section - Center Block */
.mobile-phone {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

.mobile-phone-label {
  font-size: 12px;
  color: #666;
  font-weight: 500;
  line-height: 1.2;
}

.mobile-phone-number {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1.2;
}

.mobile-phone-number:hover {
  color: var(--secondary-color);
}

/* Mobile Close Button */
.mobile-close-btn {
  background: none;
  border: none;
  font-size: 28px;
  color: var(--text-dark);
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.mobile-close-btn:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}

/* Mobile Navigation Content */
.nav-content {
  display: flex;
  flex-direction: column;
  padding: 0;
  min-height: calc(100vh - 80px);
}

/* Mobile Navigation Links */
.mobile-nav-item {
  padding: 18px 24px;
  display: block;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  cursor: pointer;
  background: white;
}

.mobile-nav-item:hover,
.mobile-nav-item:active {
  background: #f8f9fa;
  color: var(--primary-color);
  padding-left: 30px;
}

.mobile-nav-item i {
  margin-right: 12px;
  width: 20px;
  text-align: center;
  color: var(--secondary-color);
}

/* Mobile Dropdown Container */
.mobile-dropdown-container {
  width: 100%;
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.mobile-dropdown-toggle i.fa-chevron-down {
  transition: transform 0.3s ease;
  font-size: 14px;
  color: var(--primary-color);
  margin-right: 0;
  margin-left: auto;
}

.mobile-dropdown-toggle.active i.fa-chevron-down {
  transform: rotate(180deg);
}

/* Mobile Dropdown Content */
.mobile-dropdown-content {
  display: none;
  background: #f8f9fa;
  width: 100%;
}

.mobile-dropdown-content.active {
  display: block;
}

.mobile-nav-item.sub-link {
  padding: 16px 24px 16px 48px;
  font-size: 15px;
  border-bottom: 1px solid #e5e7eb;
  color: #555;
  background: #f8f9fa;
  font-weight: 400;
}

.mobile-nav-item.sub-link:hover {
  background: #e5e7eb;
  color: var(--primary-color);
  padding-left: 52px;
}

.mobile-nav-item.sub-link:last-child {
  border-bottom: none;
}

/* Mobile Contact CTA Section - Bottom */
.mobile-contact-bottom {
  padding: 24px;
  margin-top: auto;
  border-top: 2px solid #f0f0f0;
  background: #f8f9fa;
}

.mobile-contact-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 18px;
  transition: color 0.3s ease;
  padding: 12px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.mobile-contact-cta:hover {
  color: var(--secondary-color);
}

.mobile-contact-cta i {
  color: var(--accent-color);
  font-size: 20px;
}

.mobile-contact-bottom .cta-button {
  display: block;
  text-align: center;
  width: 100%;
  padding: 14px;
  font-size: 16px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

/* ========================================
   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: calc(100vh - 290px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero>* {
  position: relative;
  z-index: 2;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%),
    radial-gradient(circle at 25% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 75% 50%, rgba(16, 185, 129, 0.06) 0%, transparent 45%),
    radial-gradient(circle at center, transparent 20%, rgba(0, 0, 0, 0.75) 100%);
  animation: gradientShift 15s ease infinite;
  z-index: 1;
}

@keyframes gradientShift {

  0%,
  100% {
    opacity: 0.55;
  }

  50% {
    opacity: 0.75;
  }
}

.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 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-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  box-shadow: none;
}

.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;
}

.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;
}

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
  background: linear-gradient(180deg, #f0f4f8 0%, #ffffff 100%);
  padding: 80px 20px;
}

.services-grid-new {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.service-card-new {
  background: transparent;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  position: relative;
}

.service-card-new:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-color: #9ca3af;
  background: rgba(255, 255, 255, 0.95);
}

.service-icon-new {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.service-icon-new i {
  font-size: 90px;
  color: var(--primary-color);
}

.service-icon-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.service-title-new {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-link-new {
  font-size: 14px;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  margin-top: auto;
}

.service-link-new:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* ========================================
   FEATURES SECTION - WHY CHOOSE SAFEPRO
   ======================================== */
.features {
  background: #f5f7fa;
  padding: 80px 20px;
}

.features-content {
  max-width: 1300px;
  margin: 0 auto;
}

.features .section-title {
  text-align: center;
  margin-bottom: 30px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 20px;
}

/* Feature Card - Premium Layout */
.feature-card {
  background: transparent;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 30px 35px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 140px;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
  background: white;
}

/* Feature Icon Styling */
.feature-icon-box {
  width: 70px;
  height: 70px;
  min-width: 70px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-right: 0;
}

.feature-icon {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.feature-icon-box.gold {
  background: none;
}

/* Feature Text Styling */
.feature-text {
  flex: 1;
}

.feature-text h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1a3a5c;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.feature-text p {
  font-size: 16px;
  color: #64748b;
  line-height: 1.7;
  margin: 0;
}

/* Helper for icons with overlays (if any remaining) */
.feature-dollar-icon,
.feature-star {
  display: none;
}

/* ========================================
   AWARDS SECTION
   ======================================== */
.awards {
  background-color: #f5f5f5;
  padding: 80px 20px;
  text-align: center;
}

.awards-content {
  max-width: 1200px;
  margin: 0 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);
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
  background: #0f2847;
  padding: 80px 20px;
  color: white;
  position: relative;
}

/* Gray vertical divider line */
.contact-divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-50%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Left Side */
.contact-left {
  padding-right: 40px;
}

.contact-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
  color: white;
  font-family: var(--font-serif), 'Poppins', sans-serif;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
}

.contact-subtitle {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}

.contact-phone i {
  font-size: 20px;
  color: white;
}

.contact-phone strong {
  color: white;
  font-weight: 700;
}

/* Right Side - Form */
.contact-form-wrapper {
  background: transparent;
  padding: 0;
  padding-left: 40px;
}

.form-title {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 30px;
  font-family: var(--font-serif), 'Poppins', sans-serif;
}

.contact-form .form-row {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  gap: 20px;
}

.form-row {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3px;
}

.submit-row {
  border-bottom: none;
}

.contact-form .form-row label {
  font-size: 18px;
  font-weight: 400;
  color: white;
  min-width: 120px;
  text-align: left;
}

.contact-form .form-input {
  flex: 1;
  padding: 12px 16px;
  background: #f8f9fa;
  border: none;
  color: #333;
  font-size: 15px;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-family: var(--font-sans);
}

.contact-form .form-input:focus {
  outline: 2px solid var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
  background: white;
}

.contact-form 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 12px center;
  background-size: 10px;
  padding-right: 35px;
  background-color: #f8f9fa;
  cursor: pointer;
}

.contact-form .form-textarea {
  resize: vertical;
  min-height: 100px;
  font-family: var(--font-sans);
}

.submit-btn {
  background: var(--primary-color);
  color: white;
  border: none;
  flex: 1;
  padding: 14px 45px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-sans);
}

.submit-btn:hover {
  background: var(--hover-color);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 84, 144, 0.3);
}

/* ========================================
   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);
}

/* ========================================
   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;
}

.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;
}

.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;
  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);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: #1f1f1f;
  color: #ffffff;
  padding: 80px 20px 30px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-column {
  position: relative;
}

/* Vertical divider lines between columns */
.footer-column:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -30px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.footer-column h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: var(--font-sans);
  letter-spacing: 0.5px;
}

.footer-brand-name {
  font-size: 17px;
  font-weight: 400;
  color: #e0e0e0;
  margin-bottom: 2px;
  line-height: 1.5;
  display: block;
}

.footer-company-info {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 25px;
  margin-bottom: 25px;
}

.footer-subheading {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 2px;
  font-family: var(--font-sans);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links li {
  position: relative;
  padding-left: 18px;
}

.footer-links li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #999;
  font-size: 16px;
}

.footer-links li a {
  color: #cccccc;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease, padding-left 0.3s ease;
  display: inline-block;
  line-height: 1.3;
}

.footer-links li a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-address {
  margin-top: 5px;
}

.footer-address p {
  font-size: 16px;
  color: #cccccc;
  margin-bottom: 10px;
  line-height: 1.7;
}

.footer-address i {
  margin-right: 10px;
  color: #999;
  font-size: 15px;
  width: 18px;
  text-align: center;
}

.footer-bottom {
  padding-top: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 35px;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-copyright {
  font-size: 15px;
  color: #999;
  margin: 0;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: #999;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s ease;
  position: relative;
}

.footer-bottom-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: #ffffff;
  transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

.footer-bottom-links a:hover::after {
  width: 100%;
}

.footer-bottom-links .separator {
  color: rgba(255, 255, 255, 0.3);
}

.footer-disclaimer {
  padding-top: 35px;
  text-align: center;
}

.footer-disclaimer p {
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Large Desktops - 1400px+ */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }

  .header-content {
    padding: 20px 40px;
  }

  .logo-section img {
    max-height: 70px;
  }

  .header-nav-link {
    font-size: 21px;
  }
}

/* Desktop - 1240px to 1400px */
@media (min-width: 1240px) and (max-width: 1399px) {
  .header-nav {
    gap: 18px;
  }

  .header-nav-link {
    font-size: 19px;
  }

  .services-grid-new {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Tablet Large - 1024px to 1239px */
@media (min-width: 1024px) and (max-width: 1239px) {
  .top-bar {
    font-size: 13px;
  }

  .header-content {
    padding: 15px 24px;
  }

  .logo-section img {
    max-height: 55px;
  }

  .header-nav {
    gap: 15px;
  }

  .header-nav-link {
    font-size: 18px;
  }

  .header-contact-text .header-nav-link {
    font-size: 13px;
  }

  .header-contact-text a.header-nav-link {
    font-size: 15px;
  }

  .services-grid-new {
    grid-template-columns: repeat(4, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop Only Utility */
@media (min-width: 1024px) {
  .desktop-only {
    display: flex !important;
  }
}

/* TABLET & MOBILE BREAKPOINT - 1023px and below */
@media (max-width: 1023px) {

  /* Hide Top Bar */
  .top-bar {
    display: none;
  }

  /* Show Mobile Menu Toggle */
  .mobile-menu-toggle {
    display: block;
  }

  /* Enable Mobile Navigation */
  .navigation {
    display: block;
  }

  /* Hide Desktop Navigation */
  .header-nav {
    display: none !important;
  }

  .desktop-only {
    display: none !important;
  }

  /* Header Grid - Mobile Layout */
  .header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    padding: 12px 16px;
  }

  .logo-section {
    order: 1;
  }

  .header-contact {
    order: 2;
    justify-self: center;
    text-align: center;
  }

  .mobile-menu-toggle {
    order: 3;
  }

  /* Mobile Header Contact Styling */
  .header-contact-text {
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }

  .header-contact-text .header-nav-link {
    font-size: 13px;
    padding: 0;
    line-height: 1.2;
  }

  .header-contact-text a.header-nav-link {
    font-size: 15px;
    font-weight: 700;
  }

  .logo-section img {
    max-height: 50px;
  }

  .services-grid-new {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .footer-column:nth-child(2)::after {
    display: none;
  }

  .footer-column:nth-child(3) {
    grid-column: 1 / -1;
  }

  .footer-column:nth-child(3)::after {
    display: none;
  }

  .contact-grid {
    gap: 60px;
  }

  .contact-left {
    padding-right: 20px;
  }

  .contact-form-wrapper {
    padding-left: 20px;
  }
}

/* Tablet - 768px to 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  .navigation {
    width: 340px;
  }

  .logo-section img {
    max-height: 52px;
  }

  .header-contact-text .header-nav-link {
    font-size: 14px;
  }

  .header-contact-text a.header-nav-link {
    font-size: 16px;
  }

  .services-grid-new {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Footer Tablet Layout */
  .footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-column:nth-child(3) {
    grid-column: 1 / -1;
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
  }

  .footer-column:nth-child(2)::after {
    display: none;
  }
}

/* Mobile & Tablet - 900px and below */
@media (max-width: 900px) {
  .contact-divider {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-left {
    text-align: left;
    padding-right: 0;
  }

  .contact-form-wrapper {
    padding-left: 0;
  }

  .contact-phone {
    justify-content: flex-start;
  }

  .contact-form .form-row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .contact-form .form-row label {
    min-width: auto;
  }

  .submit-btn {
    width: 100%;
    margin-left: 0;
  }

  .contact-title {
    font-size: 36px;
  }

  .contact-subtitle {
    font-size: 18px;
  }

  .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;
  }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
  .services-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 50px 20px 20px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 30px;
  }

  .footer-column:not(:last-child)::after {
    display: none;
  }

  .footer-column h3 {
    font-size: 20px;
  }

  .footer-brand-name {
    font-size: 16px;
  }

  .footer-subheading {
    font-size: 18px;
    margin-top: 30px;
  }

  .footer-links li a {
    font-size: 15px;
  }

  .footer-address p {
    font-size: 15px;
  }

  .footer-bottom-row {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-copyright {
    border-right: none;
    padding-right: 0;
  }

  .footer-bottom-links {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-bottom-links .separator {
    display: none;
  }

  .footer-disclaimer {
    padding-top: 20px;
    text-align: left;
  }

  .footer-disclaimer p {
    font-size: 13px;
  }
}

/* Mobile - 620px to 767px */
@media (min-width: 620px) and (max-width: 767px) {
  .navigation {
    width: 300px;
  }

  .logo-section img {
    max-height: 48px;
  }

  .header-contact-text .header-nav-link {
    font-size: 13px;
  }

  .header-contact-text a.header-nav-link {
    font-size: 15px;
  }

  .mobile-phone-number {
    font-size: 16px;
  }
}

/* Small Mobile - Below 620px */
@media (max-width: 619px) {
  .header-content {
    padding: 10px 12px;
    gap: 8px;
  }

  .logo-section img {
    max-height: 42px;
  }

  .navigation {
    width: 280px;
  }

  .mobile-menu-header {
    padding: 12px 16px;
  }

  .mobile-menu-header .logo-section img {
    max-height: 40px;
  }

  .mobile-phone-label {
    font-size: 11px;
  }

  .mobile-phone-number {
    font-size: 15px;
  }

  .mobile-nav-item {
    padding: 16px 20px;
    font-size: 16px;
  }

  .mobile-nav-item.sub-link {
    padding: 14px 20px 14px 40px;
    font-size: 14px;
  }

  .mobile-contact-bottom {
    padding: 20px;
  }

  .mobile-contact-cta {
    font-size: 16px;
    padding: 10px;
  }

  .header-contact-text .header-nav-link {
    font-size: 11px;
  }

  .header-contact-text a.header-nav-link {
    font-size: 13px;
  }

  .contact-section {
    padding: 60px 20px;
  }

  .contact-title {
    font-size: 30px;
  }

  .form-title {
    font-size: 20px;
  }

  .feature-card {
    padding: 20px;
  }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
  .services-grid-new {
    grid-template-columns: 1fr;
  }
}

/* Extra Small Mobile - Below 400px */
@media (max-width: 399px) {
  .logo-section img {
    max-height: 38px;
  }

  .navigation {
    width: 100%;
    max-width: 280px;
  }

  .mobile-menu-header .logo-section img {
    max-height: 35px;
  }

  .mobile-phone-number {
    font-size: 14px;
  }

  .mobile-nav-item {
    font-size: 15px;
  }

  .mobile-contact-cta {
    font-size: 15px;
  }
}

/* Landscape Mobile Optimization */
@media (max-height: 500px) and (orientation: landscape) {
  .mobile-menu-header {
    padding: 10px 16px;
  }

  .mobile-nav-item {
    padding: 12px 20px;
  }

  .mobile-contact-bottom {
    padding: 16px 20px;
  }
}