/* ==========================================================================
   AXION UAE - Premium Website Design
   Brand Colors: #0066CC (Primary), #003366 (Secondary), #FFD700 (Accent)
   ========================================================================== */

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* ==========================================================================
   Typography - BRAND COMPLIANT
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #003366; /* Secondary Blue for ALL headings */
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: 3rem; font-weight: 900; }
h2 { font-size: 2.5rem; font-weight: 800; }
h3 { font-size: 2rem; font-weight: 700; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1.125rem; }

p {
  margin-bottom: 1rem;
  color: #555555;
}

a {
  color: #0066CC; /* Primary Blue for ALL links */
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #004499;
  text-decoration: underline;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.text-accent { color: #FFD700 !important; } /* Gold accent */

.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #003366;
}

.section-subtitle {
  font-size: 1.5rem;
  text-align: center;
  color: #003366;
  font-weight: 600;
  margin-bottom: 2rem;
}

/* ==========================================================================
   Buttons - BRAND COMPLIANT
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none !important;
  white-space: nowrap;
}

.btn-primary {
  background-color: #0066CC;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
}

.btn-primary:hover {
  background-color: #004499;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
  color: #ffffff;
  text-decoration: none;
}

.btn-secondary {
  background-color: transparent;
  color: #0066CC;
  border: 2px solid #0066CC;
}

.btn-secondary:hover {
  background-color: #0066CC;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-accent {
  background-color: #FFD700;
  color: #003366;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  font-weight: 700;
}

.btn-accent:hover {
  background-color: #FFC700;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
  color: #003366;
  text-decoration: none;
}

/* White button variant for dark backgrounds */
.btn-secondary-white {
  background-color: transparent !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
  padding: 16px 32px !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  border-radius: 50px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.btn-secondary-white:hover {
  background-color: #ffffff !important;
  color: #003366 !important;
  transform: translateY(-2px) !important;
  text-decoration: none !important;
}

/* ==========================================================================
   Header - BRAND COMPLIANT
   ========================================================================== */

.header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: #003366;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: #003366;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link:hover {
  color: #0066CC;
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FFD700;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Dropdown Menu Styles */
.has-dropdown {
  position: relative;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  vertical-align: middle;
  margin-left: 0.25rem;
}

.has-dropdown:hover .dropdown-arrow,
.has-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 0.5rem 0;
  margin-top: 1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  list-style: none;
  z-index: 100;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  position: relative;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  color: #003366;
  text-decoration: none;
  font-weight: 400;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: #f5f9ff;
  color: #0066CC;
  padding-left: 1.75rem;
}

/* Sub-dropdown Styles */
.has-sub-dropdown {
  position: relative;
}

.sub-dropdown-menu {
  position: absolute;
  left: 100%;
  top: 0;
  min-width: 240px;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 0.5rem 0;
  margin-left: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  list-style: none;
  z-index: 101;
}

.has-sub-dropdown:hover .sub-dropdown-menu,
.has-sub-dropdown.active .sub-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.sub-dropdown-menu a {
  font-size: 0.9rem;
  padding: 0.6rem 1.25rem;
}

.sub-dropdown-menu a:hover {
  padding-left: 1.5rem;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #003366;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Ensure nav links with dropdowns align properly */
.nav-link {
  display: flex;
  align-items: center;
}

/* ==========================================================================
   Form Styles
   ========================================================================== */

/* Form message styles */
.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  animation: slideIn 0.3s ease-out;
}

.form-message svg {
  flex-shrink: 0;
}

.form-success {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}

.form-error {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Honeypot field (anti-spam) */
input[name="website"] {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

/* Contact Page Styles */
.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-form {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #003366;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.contact-widget {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}

.contact-widget h3 {
  margin-bottom: 1.5rem;
  color: #003366;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item svg {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-item strong {
  display: block;
  color: #003366;
  margin-bottom: 0.25rem;
}

.contact-item a {
  color: #0066cc;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.business-hours {
  list-style: none;
  padding: 0;
}

.business-hours li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.hours-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: #666;
}

.cta-widget {
  background: linear-gradient(135deg, #0066cc 0%, #003366 100%);
  color: white;
}

.cta-widget h3,
.cta-widget p {
  color: white;
}

.map-container {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.faq-item h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #003366;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Mobile Navigation System
   ========================================================================== */

/* Desktop Navigation Alignment Fixes */
@media (min-width: 769px) {
  .nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin: 0 auto;
    padding: 0;
  }
  
  .nav-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
  }
  
  .header .btn-primary {
    flex-shrink: 0;
    margin-left: 2rem;
  }
  
  .logo {
    flex-shrink: 0;
  }
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1002;
  }
  
  .mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #003366;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  
  .mobile-menu-toggle span:nth-child(2) {
    margin: 4px 0;
  }
  
  /* Hamburger to X animation */
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  
  /* Mobile menu drawer */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
    padding: 80px 0 2rem;
    display: flex !important;
    flex-direction: column;
    gap: 0;
  }
  
  .nav-menu.active {
    transform: translateX(-320px);
  }
  
  /* Mobile menu items */
  .nav-menu > li {
    border-bottom: 1px solid rgba(0, 51, 102, 0.1);
  }
  
  .nav-menu .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    color: #003366;
    text-decoration: none;
    transition: background-color 0.2s ease;
  }
  
  .nav-menu .nav-link:hover,
  .nav-menu .nav-link:focus {
    background-color: rgba(0, 102, 204, 0.05);
  }
  
  /* Mobile dropdown handling */
  .has-dropdown .dropdown-arrow {
    transition: transform 0.3s ease;
  }
  
  .has-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }
  
  /* Mobile dropdown menu */
  .dropdown-menu {
    display: none;
    position: static;
    width: 100%;
    background: rgba(0, 51, 102, 0.05);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0;
    margin: 0;
  }
  
  .has-dropdown.active .dropdown-menu {
    display: block;
  }
  
  .dropdown-menu li {
    border-bottom: 1px solid rgba(0, 51, 102, 0.05);
  }
  
  .dropdown-menu a {
    padding: 0.75rem 1.5rem 0.75rem 2.5rem;
    font-size: 0.9rem;
  }
  
  /* Mobile sub-dropdown */
  .sub-dropdown-menu {
    display: none;
    position: static;
    background: rgba(0, 51, 102, 0.08);
    box-shadow: none;
    padding: 0;
    margin: 0;
  }
  
  .has-sub-dropdown.active .sub-dropdown-menu {
    display: block;
  }
  
  .sub-dropdown-menu a {
    padding-left: 3.5rem;
    font-size: 0.85rem;
  }
  
  /* Keep CTA button visible but reposition */
  .header .btn-primary {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    margin-right: 0.5rem;
  }
  
  /* Adjust header layout for mobile */
  .nav-wrapper {
    padding: 0 1rem;
  }
  
  /* Logo adjustments */
  .logo {
    font-size: 1.25rem;
  }
  
  .logo span:last-child {
    display: none;
  }
}

/* Overlay for mobile menu */
.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.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Body scroll lock when menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Ensure header stays on top */
.header {
  z-index: 999;
}

/* Tablet adjustments */
@media (max-width: 992px) and (min-width: 769px) {
  .nav-menu {
    gap: 1.5rem;
  }
  
  .nav-link {
    font-size: 0.95rem;
  }
  
  .header .btn-primary {
    padding: 0.6rem 1.2rem;
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   Hero Section - BRAND COMPLIANT
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: transparent;
  overflow: hidden;
  margin-top: 70px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 204, 0.75) 0%,
    rgba(0, 51, 102, 0.8) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  padding: 2rem 0;
}

.hero-title {
  font-size: 3.5rem;
  color: #ffffff !important; /* White on dark background */
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 2rem;
  color: #ffffff !important;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.hero-tagline {
  color: #ffffff;
  font-size: 1.125rem;
  opacity: 0.9;
}

/* ==========================================================================
   Why Dubai Section - BRAND COMPLIANT
   ========================================================================== */

.why-dubai {
  background-color: #f8f9fa;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.benefit-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.15);
}

.benefit-icon {
  font-size: 3rem;
  color: #0066CC;
  font-weight: 900;
  margin-bottom: 1rem;
  display: block;
}

.benefit-card h3 {
  font-size: 1.25rem;
  color: #003366;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  color: #666666;
  font-size: 0.95rem;
}

.section-conclusion {
  text-align: center;
  font-size: 1.125rem;
  color: #555555;
  max-width: 800px;
  margin: 2rem auto 0;
}

/* ==========================================================================
   Services Section - BRAND COMPLIANT
   ========================================================================== */

.services {
  background-color: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #0066CC 0%, #003366 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 102, 204, 0.2);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  display: block;
}

.service-card h3 {
  color: #003366;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p,
.service-card li {
  color: #666666;
  margin-bottom: 1rem;
}

.service-card ul {
  list-style: none;
  padding-left: 0;
}

.service-card li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}

.service-card li::before {
  content: '•';
  color: #0066CC;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.service-link {
  color: #0066CC;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
  margin-top: auto;
}

.service-link:hover {
  gap: 1rem;
  color: #004499;
  text-decoration: none;
}

/* ==========================================================================
   Business Options Section - BRAND COMPLIANT
   ========================================================================== */

.business-options {
  background-color: #f8f9fa;
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  align-items: stretch;
}

.option-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.option-card:hover {
  border-color: #0066CC;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
  background: #fafbfc;
}

.option-card.featured {
  background: linear-gradient(135deg, #0066CC 0%, #003366 100%);
  border: none;
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 102, 204, 0.3);
}

.option-card.featured h3 {
  color: #ffffff !important;
}

.option-card.featured > p {
  color: rgba(255, 255, 255, 0.95) !important;
}

.option-card.featured .option-price {
  color: #003366 !important;
  background: #FFD700 !important;
  font-weight: 900;
}

.option-card.featured .option-features {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.option-card.featured .option-features li {
  color: rgba(255, 255, 255, 0.95) !important;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.option-badge {
  position: absolute;
  top: 20px;
  right: -50px;
  background: #FFD700;
  color: #003366;
  padding: 0.5rem 4rem;
  transform: rotate(45deg);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.option-card h3 {
  color: #003366;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  line-height: 1.2;
}

.option-price {
  font-size: 1.5rem;
  color: #0066CC;
  font-weight: 800;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: #f0f7ff;
  border-radius: 8px;
  display: inline-block;
}

.option-card > p {
  color: #4b5563;
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.option-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  flex-grow: 1;
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 12px;
}

.option-features li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: #374151;
  font-size: 0.9375rem;
  line-height: 1.6;
  border-bottom: 1px solid #e5e7eb;
}

.option-features li:last-child {
  border-bottom: none;
}

.option-features li::before {
  content: '✓';
  position: absolute;
  left: 0.5rem;
  color: #0066CC;
  font-weight: bold;
  font-size: 1.125rem;
  top: 0.75rem;
}

.option-card.featured .option-features li::before {
  color: #FFD700;
}

/* ==========================================================================
   Pricing Section - BRAND COMPLIANT
   ========================================================================== */

.pricing {
  background-color: #ffffff;
}

.pricing-factors {
  list-style: none;
  padding: 0;
  margin: 2rem auto;
  max-width: 800px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.pricing-factors li {
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  padding-left: 2.5rem;
  position: relative;
}

.pricing-factors li::before {
  content: '•';
  position: absolute;
  left: 1rem;
  color: #0066CC;
  font-size: 1.5rem;
  font-weight: bold;
}

.pricing-tables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin: 3rem 0;
}

.pricing-table h4 {
  color: #003366;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.pricing-table table {
  width: 100%;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.pricing-table td {
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table td:first-child {
  font-weight: 600;
  color: #003366;
}

.pricing-table td:last-child {
  text-align: right;
  color: #0066CC;
  font-weight: 700;
}

.pricing-cta {
  text-align: center;
  font-size: 1.125rem;
  color: #555555;
  margin: 2rem 0;
}

.cta-button-wrapper {
  text-align: center;
  margin-top: 2rem;
}

/* ==========================================================================
   Process Section - BRAND COMPLIANT
   ========================================================================== */

.process {
  background-color: #f8f9fa;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  position: relative;
}

.timeline-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 70px;
  height: 70px;
  background: #ffffff;
  color: #0066CC;
  border: 3px solid #0066CC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: 0 5px 20px rgba(0, 102, 204, 0.2);
  transition: all 0.3s ease;
}

.timeline-step:hover .step-number {
  background: #0066CC;
  color: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(0, 102, 204, 0.4);
}

.timeline-step h4 {
  color: #003366;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.timeline-step p {
  color: #666666;
  font-size: 0.95rem;
}

/* ==========================================================================
   Packages Section - BRAND COMPLIANT
   ========================================================================== */

.packages {
  background-color: #ffffff;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.package-card {
  background: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.package-card:hover {
  border-color: #0066CC;
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
}

.package-card h3 {
  color: #003366;
  margin-bottom: 1rem;
}

.package-price {
  font-size: 1.25rem;
  color: #0066CC;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.package-features {
  list-style: none;
  padding: 0;
}

.package-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
  padding-left: 1.5rem;
  position: relative;
  color: #666666;
}

.package-features li:last-child {
  border-bottom: none;
}

.package-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0066CC;
  font-weight: bold;
}

/* ==========================================================================
   Testimonials Section - BRAND COMPLIANT
   ========================================================================== */

.testimonials {
  background-color: #f8f9fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.testimonial-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #0066CC;
}

.testimonial-rating {
  color: #FFD700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  color: #555555;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.testimonial-author strong {
  display: block;
  color: #003366;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.testimonial-author span {
  color: #666666;
  font-size: 0.9rem;
}

/* ==========================================================================
   Statistics Section - BRAND COMPLIANT
   ========================================================================== */

.statistics {
  background: linear-gradient(135deg, #003366 0%, #0066CC 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.statistics::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  animation: rotate-slow 30s linear infinite;
}

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

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 1;
}

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

.stat-item h3 {
  color: #FFD700 !important;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.stat-item p {
  color: #ffffff;
  font-size: 1.125rem;
  opacity: 0.9;
}

/* ==========================================================================
   CTA Section - BRAND COMPLIANT
   ========================================================================== */

.cta {
  background: linear-gradient(135deg, #0066CC 0%, #003366 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  animation: rotate-slow 20s linear infinite reverse;
}

.cta h2 {
  color: #ffffff !important;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta p {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

/* ==========================================================================
   Sidebar Layout & Components
   ========================================================================== */

.content-with-sidebar {
  padding: 60px 0;
  background: #f8f9fa;
}

/* Override container for content-with-sidebar */
.content-with-sidebar .container {
  padding: 0;
  max-width: 1400px; /* Increase width from 1200px */
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.main-content {
  background: white;
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  overflow: hidden;
}

.main-content .section {
  padding: 60px;  /* Restore padding now that container padding is removed */
  margin: 0;
}

.main-content .section:not(:last-child) {
  border-bottom: 1px solid #e5e7eb;
}

/* First section adjustments */
.main-content .section:first-child {
  padding-top: 60px;
}

/* Ensure full width for inner content */
.main-content h2,
.main-content h3,
.main-content p,
.main-content ul,
.main-content ol {
  max-width: 100%;
}

/* Sidebar Styles */
.sidebar {
  position: sticky;
  top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}

/* Widget Base Styles */
.widget {
  background: white;
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid #e5e7eb;
}

.widget h3 {
  font-size: 1.375rem;
  margin-bottom: 20px;
  color: #003366;
  font-weight: 700;
}

/* CTA Widget Styles */
.widget-cta {
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  border: 2px solid #0066cc;
}

.widget-intro {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 25px;
}

.cta-form .form-group {
  margin-bottom: 20px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: white;
}

.form-control:focus {
  outline: none;
  border-color: #0066cc;
  box-shadow: 0 0 0 3px rgba(0,102,204,0.1);
}

.form-control::placeholder {
  color: #9ca3af;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239ca3af' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

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

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

.form-disclaimer {
  text-align: center;
  margin-top: 15px;
  margin-bottom: 0;
}

.form-disclaimer small {
  color: #6b7280;
  font-size: 0.875rem;
}

.widget-footer {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
  margin-top: 25px;
}

.phone-link {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0066cc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: #003366;
}

/* Silo Navigation Widget */
.widget-silo-nav {
  background: #ffffff;
}

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

.silo-links li {
  border-bottom: 1px solid #e5e7eb;
}

.silo-links li:last-child {
  border-bottom: none;
}

.silo-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  color: #374151;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  margin-left: -30px;
  margin-right: -30px;
  padding-left: 53px;
}

.silo-links a:hover {
  background: #f3f4f6;
  color: #0066cc;
  border-left-color: #0066cc;
}

.silo-links li.active a {
  background: #eff6ff;
  color: #0066cc;
  border-left-color: #0066cc;
  font-weight: 600;
}

.silo-links .badge {
  background: #ffd700;
  color: #003366;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 12px;
  text-transform: uppercase;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Silo Navigation Below Content */
.silo-nav-below {
  background: #f8f9fa;
  padding: 60px 0;
}

.silo-nav-below .widget-silo-nav {
  max-width: 1200px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.silo-nav-below .silo-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

.silo-nav-below .silo-links li {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.silo-nav-below .silo-links li:hover {
  border-color: #0066cc;
  box-shadow: 0 4px 12px rgba(0,102,204,0.15);
}

.silo-nav-below .silo-links a {
  padding: 20px 24px;
  margin: 0;
  border-left: none;
}

.silo-nav-below .widget-footer {
  margin-top: 40px;
  text-align: center;
}

.silo-nav-below .btn {
  display: inline-block;
}

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

@media (max-width: 992px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .sidebar {
    position: static;
    max-height: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .widget {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .content-with-sidebar {
    padding: 40px 0;
  }
  
  .main-content .section {
    padding: 40px 25px;  /* Restore padding for mobile */
  }
  
  /* Add some margin on mobile for breathing room */
  .content-with-sidebar .container {
    padding: 0 15px;
  }
  
  .main-content .section:first-child {
    padding-top: 40px;
  }
  
  .sidebar {
    grid-template-columns: 1fr;
  }
  
  .widget {
    margin-bottom: 30px;
  }
  
  .widget:last-child {
    margin-bottom: 0;
  }
  
  .silo-nav-below .silo-links {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Footer - BRAND COMPLIANT
   ========================================================================== */

.footer {
  background: #111827;
  color: #e5e7eb;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer h4 {
  color: #ffffff !important;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 1rem;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #FFD700;
}

.footer a {
  color: #d1d5db;
  transition: color 0.3s ease;
}

.footer p {
  color: #e5e7eb;
  line-height: 1.6;
}

.footer a:hover {
  color: #0066CC;
  text-decoration: none;
}

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

.footer li {
  margin-bottom: 0.75rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .hero-subtitle { font-size: 1.5rem; }
  .section-title { font-size: 2rem; }
  
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .nav-menu {
    display: none;
  }
  
  .benefits-grid,
  .services-grid,
  .options-grid,
  .packages-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .option-card.featured {
    transform: none;
  }
}
/* ==========================================================================
   AXION UAE - Premium Design System 2.0
   Complete redesign with proper brand implementation
   ========================================================================== */

/* ==========================================================================
   Critical Fixes & Overrides
   ========================================================================== */

/* Fix hero section completely */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: transparent;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 204, 0.75) 0%,
    rgba(0, 51, 102, 0.8) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  z-index: 1;
}

.hero-bg img,
.hero-bg .hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

/* Hero overlay variant with better image visibility */
.hero-overlay {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: transparent;
}

.hero-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 102, 204, 0.75) 0%,
    rgba(0, 51, 102, 0.8) 100%
  );
  z-index: 2;
}

.hero-overlay .hero-bg {
  opacity: 1;
  z-index: 1;
}

.hero-overlay .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
}

.hero-overlay .hero-content {
  position: relative;
  z-index: 3;
}


.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 2rem 0;
}

/* Fix ALL headings with proper brand colors */
h1, h2, h3, h4, h5, h6 {
  color: #003366 !important; /* Secondary blue for ALL headings */
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 700 !important;
}

/* Hero headings exception - white on dark background */
.hero h1,
.hero h2,
.hero h3,
.hero-content h1,
.hero-content h2 {
  color: #ffffff !important;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Add gold accent to key text */
.hero h1 .text-accent,
.hero-content .text-accent {
  color: #ffd700 !important;
  font-weight: 800;
}

/* Fix ALL buttons with proper brand colors */
.btn {
  font-family: 'Inter', sans-serif !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 1rem 2rem !important;
  border-radius: 50px !important;
  transition: all 0.3s ease !important;
  border: none !important;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}

.btn-primary,
a.btn-primary {
  background: #0066cc !important;
  color: #ffffff !important;
  box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3) !important;
}

.btn-primary:hover,
a.btn-primary:hover {
  background: #004499 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4) !important;
}

.btn-secondary,
a.btn-secondary {
  background: transparent !important;
  color: #0066cc !important;
  border: 2px solid #0066cc !important;
  box-shadow: none !important;
}

.btn-secondary:hover,
a.btn-secondary:hover {
  background: #0066cc !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.btn-accent,
a.btn-accent {
  background: #ffd700 !important;
  color: #003366 !important;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3) !important;
  font-weight: 700 !important;
}

.btn-accent:hover,
a.btn-accent:hover {
  background: #ffed4e !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5) !important;
}

/* Fix navigation */
.header {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.nav-link {
  color: #003366 !important;
  font-weight: 600 !important;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #0066cc !important;
  text-decoration: none !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ffd700;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Fix service cards */
.service-card {
  background: #ffffff !important;
  border-radius: 16px !important;
  padding: 2.5rem !important;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08) !important;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #0066cc 0%, #003366 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 15px 50px rgba(0, 102, 204, 0.2) !important;
}

.service-icon {
  width: 80px !important;
  height: 80px !important;
  margin: 0 auto 1.5rem !important;
  background: linear-gradient(135deg, #0066cc 0%, #004499 100%) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  font-size: 2rem !important;
  box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3) !important;
  transition: all 0.4s ease !important;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg) !important;
  box-shadow: 0 12px 35px rgba(0, 102, 204, 0.4) !important;
}

.service-card h3 {
  color: #003366 !important;
  font-size: 1.5rem !important;
  margin-bottom: 1rem !important;
}

.service-card p {
  color: #6b7280 !important;
  line-height: 1.6 !important;
  margin-bottom: 1.5rem !important;
}

.service-link {
  color: #0066cc !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  transition: gap 0.3s ease !important;
}

.service-link:hover {
  gap: 1rem !important;
  color: #004499 !important;
}

/* Fix options cards */
.option-card {
  background: #ffffff !important;
  border: 2px solid #e5e7eb !important;
  border-radius: 16px !important;
  padding: 2rem !important;
  transition: all 0.3s ease !important;
  position: relative;
  overflow: hidden;
}

.option-card:hover {
  border-color: #0066cc !important;
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15) !important;
}

.option-card.featured {
  background: linear-gradient(135deg, #0066cc 0%, #003366 100%) !important;
  border: none !important;
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 102, 204, 0.3) !important;
}

.option-card.featured * {
  color: #ffffff !important;
}

.option-card.featured .option-features li::before {
  color: #ffd700 !important;
}

.option-badge {
  position: absolute;
  top: 20px;
  right: -40px;
  background: #ffd700 !important;
  color: #003366 !important;
  padding: 0.5rem 3rem !important;
  transform: rotate(45deg);
  font-size: 0.75rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4) !important;
}

/* Fix statistics section */
.statistics {
  background: linear-gradient(135deg, #003366 0%, #0066cc 100%) !important;
  padding: 5rem 0 !important;
  position: relative;
  overflow: hidden;
}

.statistics::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  animation: rotate-slow 30s linear infinite;
}

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

.stat-item h3 {
  color: #ffd700 !important;
  font-size: 3.5rem !important;
  font-weight: 900 !important;
  margin-bottom: 0.5rem !important;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.stat-item p {
  color: #ffffff !important;
  font-size: 1.125rem !important;
  opacity: 0.9;
}

/* Fix process timeline */
.step-number {
  width: 70px !important;
  height: 70px !important;
  background: #ffffff !important;
  color: #0066cc !important;
  border: 3px solid #0066cc !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  box-shadow: 0 5px 20px rgba(0, 102, 204, 0.2) !important;
  transition: all 0.3s ease !important;
}

.timeline-step:hover .step-number {
  background: #0066cc !important;
  color: #ffffff !important;
  transform: scale(1.1) !important;
  box-shadow: 0 8px 30px rgba(0, 102, 204, 0.4) !important;
}

/* Fix CTA section */
.cta {
  background: linear-gradient(135deg, #0066cc 0%, #003366 100%) !important;
  padding: 5rem 0 !important;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
  animation: rotate-slow 20s linear infinite reverse;
}

.cta h2 {
  color: #ffffff !important;
  font-size: 2.5rem !important;
  margin-bottom: 1rem !important;
}

.cta p {
  color: #ffffff !important;
  opacity: 0.9;
  font-size: 1.25rem !important;
  margin-bottom: 2rem !important;
}

/* Fix footer */
.footer {
  background: #111827 !important;
  color: #9ca3af !important;
}

.footer h4 {
  color: #ffffff !important;
  margin-bottom: 1.5rem !important;
  position: relative;
  padding-bottom: 1rem;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #ffd700;
}

.footer a {
  color: #9ca3af !important;
  transition: color 0.3s ease !important;
}

.footer a:hover {
  color: #0066cc !important;
  text-decoration: none !important;
}

/* Ensure all links use primary blue */
a {
  color: #0066cc !important;
  transition: color 0.3s ease;
}

a:hover {
  color: #004499 !important;
}

/* Add smooth animations */
section {
  position: relative;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive fixes */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
  }
  
  .hero h1 {
    font-size: 2rem !important;
  }
  
  .btn {
    padding: 0.875rem 1.5rem !important;
    font-size: 0.875rem !important;
  }
  
  .service-card {
    padding: 1.5rem !important;
  }
  
  .option-card.featured {
    transform: none;
  }
}

/* Ensure grids work properly */
.services-grid,
.options-grid,
.stats-grid {
  display: grid !important;
  gap: 2rem !important;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
}

.options-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
}

.stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
}

/* Final overrides to ensure brand compliance */
* {
  max-width: 100%;
}

body {
  overflow-x: hidden;
}

/* Debug - Remove after testing */
.debug-border {
  border: 2px solid red !important;
}
/* ==========================================================================
   AXION UAE - Premium Enhanced Design System
   Ultra-premium design with advanced animations and effects
   ========================================================================== */

/* Import base styles */


/* ==========================================================================
   Premium Enhancements & Animations
   ========================================================================== */

/* Advanced Typography */
@keyframes textGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none !important;
  line-height: 1;
}

.logo span:first-child {
  font-size: 2rem;
  font-weight: 900;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(45deg, #003366, #0066CC, #003366);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGradient 3s ease infinite;
  letter-spacing: -0.02em;
}

/* CTA Section Styles */
.cta-section {
  background: linear-gradient(135deg, #003366 0%, #0066CC 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-content {
  color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.cta-content h2 {
  color: white !important;
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.trust-badges-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  font-size: 1.125rem;
  font-weight: 600;
}

.trust-badge svg {
  width: 32px;
  height: 32px;
  fill: #FFD700;
  flex-shrink: 0;
}

/* Fix consultation button */
.btn-consultation {
  background: white;
  color: #003366 !important;
  border: none;
  padding: 18px 48px;
  font-weight: 700;
  font-size: 1.125rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  margin-bottom: 20px;
}

.btn-consultation:hover {
  background: #FFD700;
  color: #003366 !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .trust-badges-row {
    gap: 30px;
  }
  
  .trust-badge {
    font-size: 1rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
}

/* Trust Badges for Hero Section */
.hero-content .trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 3rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.hero-content .trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-content .trust-badge svg {
  width: 28px;
  height: 28px;
  fill: #FFD700;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Fix button text colors - Strengthen specificity */
.hero-content .btn-secondary-white,
.hero-cta .btn-secondary-white,
a.btn-secondary-white {
  color: white !important;
  border-color: white !important;
}

.hero-content .btn-secondary-white:hover,
.hero-cta .btn-secondary-white:hover,
a.btn-secondary-white:hover {
  background-color: white !important;
  color: #003366 !important;
}

/* Ensure trust badges stay in a row */
.hero-content .trust-badges {
  display: flex !important;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
}

.hero-content .trust-badge {
  white-space: nowrap !important;
}

@media (max-width: 768px) {
  .hero-content .trust-badges {
    gap: 20px;
    margin-top: 2rem;
    flex-wrap: wrap !important; /* Allow wrapping on mobile */
  }
  
  .hero-content .trust-badge {
    font-size: 0.875rem;
  }
  
  .hero-content .trust-badge svg {
    width: 24px;
    height: 24px;
  }
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Social Proof Notifications
   ========================================================================== */

.social-proof {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: white;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 350px;
  z-index: 1000;
  animation: slideInLeft 0.5s ease-out, slideOutLeft 0.5s ease-out 4.5s forwards;
  border-left: 4px solid #0066CC;
}

.social-proof svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.social-proof strong {
  display: block;
  color: #003366;
  font-weight: 600;
  margin-bottom: 2px;
}

.social-proof p {
  color: #666;
  font-size: 0.875rem;
  margin: 0;
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutLeft {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .social-proof {
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: none;
  }
}

/* ==========================================================================
   WhatsApp Float Button
   ========================================================================== */

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background-color: #20c55d;
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.5);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-float img {
    width: 25px;
    height: 25px;
  }
}