/* 
 * Prevention Protocols Ltd - Deployment-Ready CSS
 * Fixed version with comprehensive fallbacks for hosting compatibility
 */

/* Font fallbacks - even if Google Fonts fail to load */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Comprehensive CSS Variables with hard-coded fallbacks */
:root {
  --background: #ffffff;
  --foreground: #27272a;
  --muted: #f8fafc;
  --muted-foreground: #64748b;
  --popover: #ffffff;
  --popover-foreground: #27272a;
  --card: #ffffff;
  --card-foreground: #27272a;
  --border: #e2e8f0;
  --input: #e2e8f0;
  --primary: hsl(240, 46%, 50%);
  --primary-foreground: #ffffff;
  --secondary: #0d2e63;
  --secondary-foreground: #ffffff;
  --accent: #3b82f6;
  --accent-foreground: #ffffff;
  --destructive: #ef4444;
  --destructive-foreground: #ffffff;
  --ring: #8b5cf6;
  --radius: 0.5rem;
  
  /* Custom brand colors */
  --brand-purple: #8b5cf6;
  --brand-blue: #8895d6;
  --dark-navy: #0d2e63;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', system-ui, sans-serif;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  background-color: #ffffff;
  background-color: var(--background);
  color: #27272a;
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* COMPREHENSIVE ICON SIZE CONTROL - Fix ALL oversized icons */

/* Global icon constraint - all SVGs default to reasonable size */
svg {
  width: 1.5rem !important;
  height: 1.5rem !important;
  max-width: 1.5rem !important;
  max-height: 1.5rem !important;
  display: inline-block !important;
}

/* Navbar icons */
.navbar svg,
.nav-link svg,
.mobile-menu svg {
  width: 1.25rem !important;
  height: 1.25rem !important;
  max-width: 1.25rem !important;
  max-height: 1.25rem !important;
}

/* Hero section icons */
.hero svg,
.hero-content svg,
.cta-button svg {
  width: 1.25rem !important;
  height: 1.25rem !important;
  max-width: 1.25rem !important;
  max-height: 1.25rem !important;
}

/* About/methodology icons - allow proper sizing for methodology icons */
.about-list-icon,
.methodology-step .step-icon svg {
  width: 1.5rem !important;
  height: 1.5rem !important;
  max-width: 1.5rem !important;
  max-height: 1.5rem !important;
}

/* Service section icons */
.service-icon {
  width: 3rem;
  height: 3rem;
  background-color: hsl(240, 46%, 50%);
  background-color: var(--primary);
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-right: 1rem;
}

.service-icon svg {
  width: 1.5rem !important;
  height: 1.5rem !important;
  color: #ffffff;
  color: white;
  max-width: 1.5rem !important;
  max-height: 1.5rem !important;
}

.service-card svg,
.feature-icon {
  width: 1.5rem !important;
  height: 1.5rem !important;
  max-width: 1.5rem !important;
  max-height: 1.5rem !important;
}

/* Investigation section icons */
.investigations-icon svg {
  width: 1.5rem !important;
  height: 1.5rem !important;
  max-width: 1.5rem !important;
  max-height: 1.5rem !important;
}

/* Contact section icons */
.contact-icon svg {
  width: 1.25rem !important;
  height: 1.25rem !important;
  max-width: 1.25rem !important;
  max-height: 1.25rem !important;
}

/* Why choose us check icons */
.check-icon {
  width: 1rem !important;
  height: 1rem !important;
  max-width: 1rem !important;
  max-height: 1rem !important;
}

/* Footer icons */
.footer svg,
.social-icon,
.footer-link svg {
  width: 1.25rem !important;
  height: 1.25rem !important;
  max-width: 1.25rem !important;
  max-height: 1.25rem !important;
}

/* Button icons */
.btn svg,
.btn-icon,
.button svg {
  width: 1rem !important;
  height: 1rem !important;
  max-width: 1rem !important;
  max-height: 1rem !important;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Utility Classes */
.hidden {
  display: none;
}

.rounded-image {
  border-radius: 0.75rem;
  -webkit-border-radius: 0.75rem;
  -moz-border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  width: 100%;
  height: auto;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: #0d2e63;
  background-color: var(--secondary);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  -moz-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .nav-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-container {
    padding: 0 2rem;
  }
}

.nav-content {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: center;
  -webkit-align-items: center;
  height: 4rem;
}

.nav-logo {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  align-items: center;
  -webkit-align-items: center;
}

.logo-img {
  height: 2rem;
  width: auto;
  max-width: none;
}

.desktop-nav {
  display: none;
  align-items: center;
  -webkit-align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
  }
}

.nav-link {
  color: white;
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #d1d5db;
}

.mobile-nav {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none;
  }
}

.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  gap: 0.25rem;
}

.hamburger-line {
  width: 1.5rem;
  height: 2px;
  background-color: white;
  background-color: #ffffff;
  border-radius: 1px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #0d2e63;
  background-color: var(--secondary);
  display: none;
  flex-direction: column;
  -webkit-flex-direction: column;
  padding: 1rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.mobile-menu.show {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
}

.mobile-nav-link {
  color: white;
  color: #ffffff;
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.mobile-nav-link:hover {
  color: #d1d5db;
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  overflow: hidden;
  color: white;
  color: #ffffff;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 46, 99, 0.8) 0%, rgba(139, 92, 246, 0.6) 100%);
  background: -webkit-linear-gradient(135deg, rgba(13, 46, 99, 0.8) 0%, rgba(139, 92, 246, 0.6) 100%);
  background: -moz-linear-gradient(135deg, rgba(13, 46, 99, 0.8) 0%, rgba(139, 92, 246, 0.6) 100%);
  z-index: 2;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 1rem;
}

.hero-container {
  max-width: 48rem;
}

.hero-logo {
  margin-bottom: 1.5rem;
}

.hero-logo-img {
  height: 3rem;
  width: auto;
  max-width: none;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
  -webkit-filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
  -moz-filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}

@media (min-width: 768px) {
  .hero-logo-img {
    height: 4rem;
  }
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
  -webkit-filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
  -moz-filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: 300;
  opacity: 0.9;
  filter: opacity(0.9);
  -webkit-filter: opacity(0.9);
  -moz-filter: opacity(0.9);
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

.hero-buttons {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
    -webkit-flex-direction: row;
    justify-content: center;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  height: auto;
  text-align: center;
}

.btn-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.5rem;
}

.btn-primary {
  background-color: #ffffff;
  background-color: white;
  color: #8b5cf6;
  color: var(--primary);
}

.btn-primary:hover {
  background-color: #f9fafb;
}

.btn-outline {
  border: 2px solid #ffffff;
  border: 2px solid white;
  color: #ffffff;
  color: white;
  background-color: transparent;
}

.btn-outline:hover {
  background-color: #ffffff;
  background-color: white;
  color: #8b5cf6;
  color: var(--primary);
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0d2e63;
  color: var(--secondary);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.about-content {
  display: grid;
  gap: 3rem;
  align-items: center;
  -webkit-align-items: center;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

.about-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d2e63;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.about-text {
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

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

.about-list-item {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  align-items: center;
  -webkit-align-items: center;
  margin-bottom: 0.75rem;
  color: #4b5563;
}

.about-list-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #8895d6;
  color: var(--brand-blue);
  margin-right: 0.75rem;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}

.about-image {
  border-radius: 0.75rem;
  -webkit-border-radius: 0.75rem;
  -moz-border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

/* Methodology Section - Match React Website */
.methodology-section {
  background-color: #ffffff;
  background-color: white;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 2rem;
}

@media (min-width: 768px) {
  .methodology-section {
    padding: 3rem;
  }
}

.methodology-header {
  text-align: center;
  margin-bottom: 3rem;
}

.methodology-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d2e63;
  color: var(--secondary);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .methodology-title {
    font-size: 1.875rem;
  }
}

.methodology-subtitle {
  color: #6b7280;
  max-width: 42rem;
  margin: 0 auto;
}

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

@media (min-width: 768px) {
  .methodology-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.methodology-step {
  text-align: center;
}

.step-icon {
  width: 4rem;
  height: 4rem;
  background-color: hsl(240, 46%, 50%);
  background-color: var(--primary);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin: 0 auto 1rem;
}

.step-icon svg {
  width: 1.5rem !important;
  height: 1.5rem !important;
  color: #ffffff;
  color: white;
}

.step-title {
  font-weight: 600;
  color: #0d2e63;
  color: var(--secondary);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.step-description {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Services Section */
.services-section {
  padding: 5rem 0;
  background-color: #ffffff;
  background-color: white;
}

/* Complete Security Solutions Section */
.complete-security-section {
  margin-top: 4rem;
  background-color: #0d2e63;
  background-color: var(--secondary);
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  padding: 2rem;
  color: #ffffff;
  color: white;
}

@media (min-width: 768px) {
  .complete-security-section {
    padding: 3rem;
  }
}

.complete-security-header {
  text-align: center;
  margin-bottom: 2rem;
}

.complete-security-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  color: white;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .complete-security-title {
    font-size: 1.875rem;
  }
}

.complete-security-subtitle {
  color: rgba(255, 255, 255, 0.9);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.6;
}

.complete-security-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

@media (min-width: 768px) {
  .complete-security-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.security-service {
  text-align: center;
}

.security-icon {
  width: 3rem !important;
  height: 3rem !important;
  color: #8895d6;
  color: var(--accent);
  margin: 0 auto 1rem;
  max-width: 3rem !important;
  max-height: 3rem !important;
}

.security-service-title {
  font-weight: 600;
  color: #ffffff;
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.security-service-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

/* Investigations Section - Full Width Blue Box */
.investigations-section {
  margin-bottom: 6rem;
}

.investigations-card {
  background-color: #0d2e63;
  background-color: var(--secondary);
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  -webkit-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.investigations-content {
  display: grid;
  gap: 0;
  align-items: center;
  -webkit-align-items: center;
}

@media (min-width: 1024px) {
  .investigations-content {
    grid-template-columns: 1.5fr 1fr;
  }
}

.investigations-text {
  padding: 2rem;
  color: #ffffff;
  color: white;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-justify-content: center;
}

@media (min-width: 768px) {
  .investigations-text {
    padding: 3rem;
  }
}

.investigations-header {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  align-items: center;
  -webkit-align-items: center;
  margin-bottom: 1.5rem;
}

.investigations-icon {
  width: 3rem;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  margin-right: 1rem;
}

.investigations-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #ffffff;
  color: white;
}

.investigations-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #ffffff;
  color: white;
  margin: 0;
}

.investigations-description {
  margin-bottom: 1.5rem;
}

.investigations-description p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  line-height: 1.7;
  font-size: 1rem;
}

.investigations-btn {
  display: inline-flex;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  align-items: center;
  -webkit-align-items: center;
  background-color: #ffffff;
  background-color: white;
  color: #0d2e63;
  color: var(--secondary);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  text-decoration: none;
  -webkit-transition: background-color 0.2s ease;
  -moz-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  gap: 0.5rem;
}

.investigations-btn:hover {
  background-color: #f9fafb;
}

.btn-arrow {
  width: 1rem;
  height: 1rem;
}



.investigations-image {
  border-radius: 0.75rem;
  -webkit-border-radius: 0.75rem;
  -moz-border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.investigations-img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  -o-object-fit: cover;
}

/* Service Cards Grid */
.services-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-card {
  background-color: #ffffff;
  background-color: white;
  border-radius: 0.75rem;
  -webkit-border-radius: 0.75rem;
  -moz-border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  -webkit-transition: transform 0.2s ease;
  -moz-transition: transform 0.2s ease;
  -o-transition: transform 0.2s ease;
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
}

.service-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

.service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(13, 46, 99, 0.8) 0%, rgba(139, 92, 246, 0.6) 100%);
  background: -webkit-linear-gradient(135deg, rgba(13, 46, 99, 0.8) 0%, rgba(139, 92, 246, 0.6) 100%);
  background: -moz-linear-gradient(135deg, rgba(13, 46, 99, 0.8) 0%, rgba(139, 92, 246, 0.6) 100%);
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  color: #ffffff;
  color: white;
}

.service-content {
  padding: 2rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d2e63;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.service-description {
  color: #4b5563;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-features {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
}

.service-features li {
  margin-bottom: 0.75rem;
  color: #6b7280;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  align-items: flex-start;
  -webkit-align-items: flex-start;
}

.service-features li svg.check-icon {
  width: 1rem !important;
  height: 1rem !important;
  color: hsl(240, 46%, 50%);
  color: var(--primary);
  margin-top: 0.125rem;
  margin-right: 0.75rem;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
  max-width: 1rem !important;
  max-height: 1rem !important;
}

.service-feature {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  align-items: center;
  -webkit-align-items: center;
  margin-bottom: 0.5rem;
  color: #4b5563;
}

.feature-icon {
  width: 1rem;
  height: 1rem;
  color: #8895d6;
  color: var(--brand-blue);
  margin-right: 0.75rem;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}

.additional-title {
  font-size: 1rem;
  font-weight: 600;
  color: #0d2e63;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.additional-description {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Contact Section */
.contact-section {
  padding: 5rem 0;
  background-color: #f9fafb;
}

/* Why Choose Us Section */
.why-choose-us {
  background-color: #0d2e63;
  background-color: var(--secondary);
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  padding: 2rem;
  color: #ffffff;
  color: white;
  margin-top: 2rem;
}

.why-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  color: white;
  margin-bottom: 1rem;
  margin: 0 0 1rem 0;
}

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

.why-item {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  align-items: flex-start;
  -webkit-align-items: flex-start;
  margin-bottom: 0.75rem;
  color: #ffffff;
  color: white;
}

.why-item:last-child {
  margin-bottom: 0;
}

.check-icon {
  width: 1rem;
  height: 1rem;
  color: #8895d6;
  color: var(--brand-blue);
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}

.contact-content {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* Contact Form */
.contact-form-container {
  background-color: #ffffff;
  background-color: white;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  -moz-border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 2rem;
}

.contact-form {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}

.form-label {
  font-weight: 500;
  color: #0d2e63;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border: 1px solid var(--border);
  border-radius: 0.375rem;
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  font-size: 1rem;
  -webkit-transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -moz-transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -o-transition: border-color 0.2s ease, box-shadow 0.2s ease;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background-color: #ffffff;
  background-color: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #8b5cf6;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
  -webkit-box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
  -moz-box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 6rem;
}

.form-submit-btn {
  background-color: #8b5cf6;
  background-color: var(--primary);
  color: #ffffff;
  color: white;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  -moz-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  gap: 0.5rem;
}

.form-submit-btn:hover {
  background-color: #7c3aed;
}

.form-submit-btn:disabled {
  opacity: 0.5;
  filter: opacity(0.5);
  -webkit-filter: opacity(0.5);
  -moz-filter: opacity(0.5);
  cursor: not-allowed;
}

/* Contact Info */
.contact-info-container {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  gap: 2rem;
}

.contact-image {
  border-radius: 0.75rem;
  -webkit-border-radius: 0.75rem;
  -moz-border-radius: 0.75rem;
  overflow: hidden;
}

.contact-img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  -o-object-fit: cover;
}

.contact-details {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  align-items: center;
  -webkit-align-items: center;
  gap: 1rem;
}

.contact-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: #8895d6;
  background-color: var(--brand-blue);
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}

.contact-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #ffffff;
  color: white;
}

.contact-info {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
}

.contact-label {
  font-weight: 600;
  color: #0d2e63;
  color: var(--secondary);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
}

.contact-value {
  color: #4b5563;
  font-size: 1rem;
}

.contact-value a {
  color: #4b5563;
  text-decoration: none;
}

.contact-value a:hover {
  color: #8b5cf6;
  color: var(--primary);
}

/* Footer */
.footer {
  background-color: #0d2e63;
  background-color: var(--secondary);
  color: #ffffff;
  color: white;
  padding: 3rem 0 2rem;
}

.footer-content {
  text-align: center;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: 2.5rem;
  width: auto;
  max-width: none;
  margin: 0 auto;
}

.footer-text {
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-links {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  justify-content: center;
  -webkit-justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  -moz-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #ffffff;
  color: white;
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
}

/* Toast Notifications */
.toast {
  position: fixed;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  -webkit-transform: translateX(-50%) translateY(-20px);
  -moz-transform: translateX(-50%) translateY(-20px);
  z-index: 100;
  background-color: #ffffff;
  background-color: white;
  border: 1px solid #e2e8f0;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 1rem;
  max-width: 20rem;
  /* Hidden state - slide up from top */
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}

.toast.show {
  -webkit-transform: translateX(-50%) translateY(0);
  -moz-transform: translateX(-50%) translateY(0);
  transform: translateX(-50%) translateY(0);
}

.toast-success {
  border-left: 4px solid #10b981;
}

.toast-error {
  border-left: 4px solid #ef4444;
  border-left: 4px solid var(--destructive);
}

.toast-title {
  font-weight: 600;
  color: #0d2e63;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.toast-description {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 100;
  background-color: #ffffff;
  background-color: white;
  border: 1px solid #e2e8f0;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  -webkit-border-radius: 0.75rem;
  -moz-border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  max-width: 24rem;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
}

.cookie-consent.show {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  transform: translateY(0);
}

.cookie-title {
  font-weight: 600;
  color: #0d2e63;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.cookie-description {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.cookie-buttons {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  -webkit-transition: background-color 0.2s ease;
  -moz-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.cookie-btn-accept {
  background-color: #8895d6;
  background-color: var(--brand-blue);
  color: #ffffff;
  color: white;
}

.cookie-btn-accept:hover {
  background-color: #6d7bc7;
}

.cookie-btn-essential {
  background-color: #f3f4f6;
  color: #4b5563;
}

.cookie-btn-essential:hover {
  background-color: #e5e7eb;
}

.cookie-btn-customize {
  background-color: transparent;
  color: #8895d6;
  color: var(--brand-blue);
  text-decoration: underline;
}

.cookie-btn-customize:hover {
  color: #6d7bc7;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  -webkit-align-items: center;
  justify-content: center;
  -webkit-justify-content: center;
  padding: 1rem;
}

.cookie-modal.show {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
}

.cookie-modal-content {
  background-color: #ffffff;
  background-color: white;
  border-radius: 0.75rem;
  -webkit-border-radius: 0.75rem;
  -moz-border-radius: 0.75rem;
  padding: 2rem;
  max-width: 32rem;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal-header {
  margin-bottom: 1.5rem;
}

.cookie-modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0d2e63;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.cookie-modal-description {
  color: #6b7280;
  font-size: 0.875rem;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
}

.cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cookie-category-header {
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: center;
  -webkit-align-items: center;
  margin-bottom: 0.5rem;
}

.cookie-category-title {
  font-weight: 600;
  color: #0d2e63;
  color: var(--secondary);
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 3rem;
  height: 1.5rem;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #d1d5db;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  border-radius: 1.5rem;
  -webkit-border-radius: 1.5rem;
  -moz-border-radius: 1.5rem;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 1.125rem;
  width: 1.125rem;
  left: 0.1875rem;
  bottom: 0.1875rem;
  background-color: #ffffff;
  background-color: white;
  -webkit-transition: transform 0.3s ease;
  -moz-transition: transform 0.3s ease;
  -o-transition: transform 0.3s ease;
  transition: transform 0.3s ease;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
}

input:checked + .cookie-slider {
  background-color: #8895d6;
  background-color: var(--brand-blue);
}

input:checked + .cookie-slider:before {
  -webkit-transform: translateX(1.5rem);
  -moz-transform: translateX(1.5rem);
  transform: translateX(1.5rem);
}

.cookie-category-description {
  color: #6b7280;
  font-size: 0.875rem;
}

.cookie-modal-footer {
  margin-top: 2rem;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  gap: 1rem;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}

.cookie-modal-btn {
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  -webkit-border-radius: 0.375rem;
  -moz-border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid #d1d5db;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.cookie-modal-btn-save {
  background-color: #8895d6;
  background-color: var(--brand-blue);
  color: #ffffff;
  color: white;
  border-color: #8895d6;
  border-color: var(--brand-blue);
}

.cookie-modal-btn-save:hover {
  background-color: #6d7bc7;
}

.cookie-modal-btn-cancel {
  background-color: #ffffff;
  background-color: white;
  color: #4b5563;
}

.cookie-modal-btn-cancel:hover {
  background-color: #f9fafb;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Ensure images don't break layout */
.hero-image,
.about-img,
.service-img,
.contact-img,
.investigations-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

/* Fallback for older browsers */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  .hero-image,
  .about-img,
  .service-img,
  .contact-img,
  .investigations-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

/* Print styles */
@media print {
  .navbar,
  .cookie-consent,
  .toast {
    display: none !important;
  }
  
  .hero-section {
    height: auto !important;
    min-height: auto !important;
  }
  
  body {
    background-color: white !important;
    color: black !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .btn {
    border: 2px solid currentColor;
  }
  
  .service-card,
  .methodology-card,
  .contact-form-container {
    border: 1px solid #000;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Contact Section Styles */
.contact-section {
  padding: 5rem 0;
  background-color: #f9fafb;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* Contact Form */
.contact-form-container {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.contact-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d2e63;
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

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

.form-label {
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  transition: all 0.2s;
  outline: none;
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  box-sizing: border-box;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: #8895d6;
  box-shadow: 0 0 0 3px rgba(136, 149, 214, 0.1);
}

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

.form-submit-btn {
  width: 100%;
  background-color: #0d2e63;
  color: white;
  font-weight: 600;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.form-submit-btn:hover {
  background-color: rgba(13, 46, 99, 0.9);
}

.btn-icon {
  width: 1rem;
  height: 1rem;
}

/* Contact Information */
.contact-info-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.contact-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.contact-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-info {
  padding: 2rem;
}

.contact-info-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d2e63;
  margin-bottom: 1.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.contact-icon {
  width: 2.5rem !important;
  height: 2.5rem !important;
  background-color: #8895d6 !important;
  border-radius: 0.5rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  margin-top: 0.25rem;
  padding: 0.5rem !important;
  box-sizing: border-box !important;
}

.contact-icon svg {
  width: 1.25rem !important;
  height: 1.25rem !important;
  color: white !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 2 !important;
  flex-shrink: 0 !important;
}

.contact-details-text {
  flex: 1;
}

.contact-label {
  font-weight: 500;
  color: #0d2e63;
  margin-bottom: 0.25rem;
}

.contact-value {
  color: #6b7280;
  line-height: 1.4;
}

/* Why Choose Us */
.why-choose-us {
  background-color: #0d2e63;
  border-radius: 1rem;
  padding: 2rem;
  color: white;
}

.why-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: white;
}

.check-icon {
  width: 1rem;
  height: 1rem;
  color: #8895d6;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* Footer Styles - React Matching */
.bg-secondary {
  background-color: #0d2e63;
}

.text-white {
  color: white;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.grid {
  display: grid;
}

@media (min-width: 768px) {
  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gap-8 {
  gap: 2rem;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

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

.h-8 {
  height: 2rem;
}

.w-auto {
  width: auto;
}

.text-white\/80 {
  color: rgba(255, 255, 255, 0.8);
}

/* Footer specific link styling */
.space-y-2 a {
  color: rgba(255, 255, 255, 0.8);
}

.space-y-2 a:hover {
  color: white;
}

.space-x-4 > :not([hidden]) ~ :not([hidden]) {
  margin-left: 1rem;
}

.text-white\/60 {
  color: rgba(255, 255, 255, 0.6);
}

.hover\:text-white:hover {
  color: white;
}

.transition-colors {
  transition: color 0.15s ease-in-out;
}

.duration-200 {
  transition-duration: 200ms;
}

.h-6 {
  height: 1.5rem;
}

.w-6 {
  width: 1.5rem;
}

.font-semibold {
  font-weight: 600;
}

.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  margin-top: 0.5rem;
}

.border-t {
  border-top-width: 1px;
}

.border-white\/20 {
  border-color: rgba(255, 255, 255, 0.2);
}

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

.pt-8 {
  padding-top: 2rem;
}

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

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

.text-sm {
  font-size: 0.875rem;
}
