:root {
  --primary-light-blue: #009FE3;
  --primary-dark-blue: #006EDC;
  --primary-text-dark: #333333;
  --light-grey-bg: #F7F7F7;
  --white: #FFFFFF;
  --font-primary: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

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

body {
  font-family: var(--font-primary);
  color: var(--primary-text-dark);
  background-color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* Typography Hierarchy */
h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 5rem 0;
}

.bg-light {
  background-color: var(--light-grey-bg);
}

.bg-blue {
  background-color: var(--primary-dark-blue);
  color: var(--white);
}

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

/* Header & Nav */
.site-header {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--white);
  transition: all 0.3s ease-in-out;
}

.site-header.sticky {
  position: fixed;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo-lockup {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 60px;
  transition: all 0.3s ease-in-out;
}

.site-header.sticky .logo-img {
  height: 48px;
}

.logo-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Desktop Nav */
.desktop-nav {
  display: none;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.desktop-nav a {
  font-weight: 500;
  position: relative;
  color: var(--primary-text-dark);
  transition: color 0.3s ease;
}

.desktop-nav a:hover {
  color: var(--primary-dark-blue);
}

.desktop-nav a.nav-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--primary-dark-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.desktop-nav a.nav-link:hover::after {
  transform: scaleX(1);
}

/* Services Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 0.5rem 0;
  z-index: 10;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
}

.dropdown-menu a:hover {
  background-color: var(--light-grey-bg);
}

/* Header Actions */
.header-actions {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary-text-dark);
}

.phone-link:hover {
  color: var(--primary-dark-blue);
}

/* Mobile Header Actions */
.mobile-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-icon-btn {
  background: var(--primary-dark-blue);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.2s;
}

.mobile-icon-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hamburger-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-text-dark);
  transition: all 0.3s;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.mobile-nav-overlay.active {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

.close-nav-btn {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--primary-text-dark);
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: auto;
}

.mobile-nav-list a {
  font-size: 1.5rem;
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none;
  font-family: inherit;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-light-blue), var(--primary-dark-blue));
  color: var(--white);
  background-size: 200% auto;
}

.btn-primary:hover {
  background-position: right center;
  box-shadow: 0 4px 12px rgba(0, 110, 220, 0.3);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-secondary {
  background: var(--primary-dark-blue);
  color: var(--white);
}

.btn-secondary:hover {
  background: var(--primary-light-blue);
  box-shadow: 0 4px 12px rgba(0, 110, 220, 0.2);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-dark-blue);
  color: var(--primary-dark-blue);
}

.btn-outline:hover {
  background: var(--primary-dark-blue);
  color: var(--white);
}

/* Text Links */
.link-tertiary {
  color: var(--primary-dark-blue);
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.link-tertiary::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--primary-dark-blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.link-tertiary:hover::after {
  transform: scaleX(1);
}

/* Hero Component */
.hero-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

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

.hero-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-content {
  background: rgba(255, 255, 255, 0.95);
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 600px;
}

.hero-content h1 {
  font-size: 2.5rem;
}

.hero-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

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

label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary-text-dark);
}

input, select, textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  background-color: var(--white);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary-light-blue);
  box-shadow: 0 0 0 3px rgba(0, 159, 227, 0.2);
}

/* Service Cards Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

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

.service-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-content h3 {
  margin-bottom: 1rem;
}

.service-content p {
  color: #666;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-content .link-tertiary {
  align-self: flex-start;
  margin-top: auto;
}

/* Service Detail Block */
.service-detail-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  align-items: center;
}

.service-detail-img img {
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-block {
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.testimonial-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.testimonial-quote {
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #555;
  position: relative;
  z-index: 1;
}

.testimonial-quote::before {
  content: '"';
  font-size: 4rem;
  color: rgba(0, 159, 227, 0.1);
  position: absolute;
  top: -1.5rem;
  left: -1rem;
  z-index: -1;
  font-family: serif;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 700;
  color: var(--primary-dark-blue);
}

.author-rating {
  color: #FFD700;
  letter-spacing: 2px;
  font-size: 1.2rem;
}

/* Features List */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

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

.feature-icon {
  background: rgba(0, 159, 227, 0.1);
  color: var(--primary-dark-blue);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  text-align: center;
  background: var(--white);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--light-grey-bg);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.team-role {
  color: var(--primary-light-blue);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Locations List */
.locations-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.location-region h3 {
  color: var(--primary-dark-blue);
  border-bottom: 2px solid var(--primary-light-blue);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.location-region ul {
  list-style: none;
}

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

/* Contact Details */
.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.contact-detail-icon {
  color: var(--primary-dark-blue);
  margin-top: 0.25rem;
}

.contact-detail-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.contact-detail-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.contact-detail-item a {
  color: var(--primary-text-dark);
  transition: color 0.3s;
}

.contact-detail-item a:hover {
  color: var(--primary-light-blue);
}

/* Footer */
.site-footer {
  background-color: var(--primary-text-dark);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer-logo {
  height: 48px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-col p {
  color: #ccc;
}

.footer-col ul {
  list-style: none;
}

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

.footer-col a {
  color: #ccc;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--primary-light-blue);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

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

.social-links a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-links a:hover {
  background: var(--primary-light-blue);
  color: var(--white);
  transform: scale(1.1) translateY(-2px);
}

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

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  color: var(--primary-light-blue);
  font-weight: 500;
}

/* Animations */
.fade-in-section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, visibility;
}

.fade-in-section.is-visible {
  opacity: 1;
  transform: none;
}

/* Page Hero */
.page-hero {
  position: relative;
  padding: 6rem 0;
  background-color: var(--light-grey-bg);
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  padding: 3rem;
  border-radius: 1rem;
  display: inline-block;
}

/* Desktop Media Queries */
@media (min-width: 768px) {
  h1 { font-size: 3.5rem; }
  
  .desktop-nav { display: block; }
  .header-actions { display: flex; }
  .mobile-header-actions, .hamburger-btn { display: none; }
  
  .form-row { grid-template-columns: 1fr 1fr; }
  
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .locations-list { grid-template-columns: repeat(2, 1fr); }
  
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
  
  .contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .hero-content {
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  
  .service-detail-block {
    grid-template-columns: 1fr 1fr;
  }
  
  .service-detail-block:nth-child(even) .service-detail-content {
    order: -1;
  }
}
