/* NOVAVIRE TECHNOLOGIES - COMPLETE STYLES WITH PERFECT NAVBAR */
:root {
  --primary: #136C8A;        /* Logo dark teal-blue */
  --primary-light: #1D8BB0;  /* Lighter teal */
  --secondary: #00B8C8;      /* Tagline aqua */
  --accent: #FFFFFF;         /* White background */
  --gray-light: #F3F4F6;     /* Light gray sections */
  --text-dark: #1F2933;      /* Dark gray text */
  --text-mid: #6B7280;       /* Mid gray */
  --text-light: #9CA3AF;     /* Light gray */
  --white: #FFFFFF;
  --shadow: 0 10px 30px rgba(19, 108, 138, 0.18);
  --shadow-hover: 0 20px 50px rgba(19, 108, 138, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
  background: var(--accent);
}

/* ===============================================
   NAVBAR - PERFECT LOGO FIT
   =============================================== */
.navbar {
  background: linear-gradient(135deg, #136C8A 0%, #1D8BB0 70%, #00B8C8 100%) !important;
  backdrop-filter: blur(20px);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 0.6rem 0 !important;
  box-shadow: 0 8px 32px rgba(19, 108, 138, 0.4) !important;
  height: auto !important;
}

.nav-container {
  max-width: 1400px !important;
  margin: 0 auto;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0.5rem 2.5rem !important;
  gap: 3rem !important;
  min-height: 70px !important;
}

.logo {
  display: flex !important;
  align-items: center !important;
  gap: 0.8rem !important;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}

.logo-img {
  height: 52px !important;
  width: auto !important;
  min-width: 140px !important;
  max-width: 200px !important;
  object-fit: contain !important;
}

.nav-menu {
  display: flex !important;
  list-style: none !important;
  gap: 1.2rem !important;
  flex: 1 !important;
  justify-content: flex-end !important;
  align-items: center !important;
  margin: 0 !important;
  padding: 0 !important;
  flex-wrap: nowrap !important;
}

.nav-link {
  color: #FFFFFF !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 25px !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  border: 2px solid transparent !important;
  display: inline-block !important;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(0, 184, 200, 0.4) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

/* ===============================================
   HERO SECTIONS
   =============================================== */
.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--accent);
  position: relative;
  padding: 80px 2rem 0;
  min-height: calc(100vh - 80px);
}

.page-hero {
  height: 60vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--accent);
  position: relative;
  margin-top: 80px;
  padding: 2rem;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(19, 108, 138, 0.75), rgba(29, 139, 176, 0.6), rgba(0, 184, 200, 0.4)) !important;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.hero h1 {
  font-size: clamp(2.2rem, 7vw, 5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: var(--accent);
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--accent);
}

.hero p,
.page-hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2rem;
  opacity: 0.95;
  font-weight: 400;
  line-height: 1.7;
  color: var(--accent);
}

.hero-buttons {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}

/* ===============================================
   BUTTONS
   =============================================== */
.btn {
  padding: 1.1rem 2.5rem;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(19, 108, 138, 0.2);
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), #00D4E6);
  color: var(--primary);
  box-shadow: 0 8px 25px rgba(0, 184, 200, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 184, 200, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background: var(--accent);
  color: var(--primary);
}

.btn-primary-large {
  padding: 1.3rem 3rem;
  font-size: 1.05rem;
}

/* ===============================================
   CONTAINER & SECTIONS
   =============================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

h1,
h2,
h3,
h4 {
  color: var(--primary);
  font-weight: 700;
}

/* ===============================================
   TRUST / STATS SECTION
   =============================================== */
.trust-section {
  padding: 5rem 2rem;
  background: var(--gray-light);
}

.trust-section h2 {
  text-align: center;
  color: var(--primary);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom: 3.5rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
  text-align: center;
}

.trust-item {
  padding: 2rem 1rem;
  background: var(--accent);
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.trust-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.trust-item h4 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.trust-item p {
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 500;
}

/* ===============================================
   WHY CHOOSE / FEATURES
   =============================================== */
.why-choose {
  padding: 6rem 2rem;
  background: var(--accent);
}

.why-choose h2 {
  text-align: center;
  color: var(--primary);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 4rem;
}

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

.feature-card {
  background: var(--accent);
  padding: 2.8rem 2.2rem;
  border-radius: 20px;
  border-left: 5px solid var(--secondary);
  transition: all 0.4s ease;
  box-shadow: var(--shadow);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  margin-bottom: 1.2rem;
}

.feature-card h3 {
  color: var(--primary);
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-mid);
  line-height: 1.7;
  font-size: 0.98rem;
}

/* ===============================================
   SERVICES OVERVIEW
   =============================================== */
.services-overview {
  padding: 5rem 2rem;
  background: var(--gray-light);
}

.services-overview h2 {
  text-align: center;
  color: var(--primary);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom: 3.5rem;
}

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

.service-box {
  background: var(--accent);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border-top: 5px solid var(--secondary);
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

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

.service-box h3 {
  color: var(--primary);
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
}

.service-box p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ===============================================
   VALIDATION APPROACHES
   =============================================== */
.approaches {
  padding: 5rem 2rem;
  background: var(--accent);
}

.approaches h2 {
  text-align: center;
  color: var(--primary);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom: 3.5rem;
}

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

.approach-card {
  background: var(--gray-light);
  padding: 2.5rem;
  border-radius: 20px;
  border-top: 4px solid var(--secondary);
}

.approach-card.highlight {
  background: linear-gradient(135deg, var(--secondary) 0%, rgba(0, 184, 200, 0.15) 100%);
  border-top-color: var(--primary);
}

.approach-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.approach-card p {
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.approach-card ul {
  list-style: none;
}

.approach-card li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.approach-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

/* ===============================================
   CTA SECTION
   =============================================== */
.cta-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--white);
}

.cta-section p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* ===============================================
   MISSION & VISION
   =============================================== */
.mission-vision {
  padding: 5rem 2rem;
  background: var(--accent);
}

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

.mv-card {
  background: var(--gray-light);
  padding: 2.5rem;
  border-radius: 20px;
  border-left: 6px solid var(--secondary);
  box-shadow: var(--shadow);
}

.mv-card h3 {
  color: var(--primary);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  margin-bottom: 1.5rem;
}

.mv-card p {
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===============================================
   VALUES SECTION
   =============================================== */
.values-section {
  padding: 5rem 2rem;
  background: var(--gray-light);
}

.values-section h2 {
  text-align: center;
  color: var(--primary);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom: 3.5rem;
}

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

.value-item {
  background: var(--accent);
  padding: 2rem 1.5rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--secondary);
}

.value-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.value-item h4 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.value-item p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ===============================================
   TEAM SECTION
   =============================================== */
.team-section {
  padding: 5rem 2rem;
  background: var(--accent);
}

.team-section h2 {
  text-align: center;
  color: var(--primary);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 3rem;
}

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

.team-member {
  background: var(--accent);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
  border-top: 4px solid var(--secondary);
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.team-member img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.team-member h4 {
  color: var(--primary);
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: clamp(1rem, 3vw, 1.2rem);
}

.team-member p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ===============================================
   SERVICE DETAIL
   =============================================== */
.service-detail {
  padding: 5rem 2rem;
  background: var(--accent);
}

.service-detail.alt {
  background: var(--gray-light);
}

.service-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}

.service-layout.reverse {
  direction: rtl;
}

.service-layout.reverse > * {
  direction: ltr;
}

.service-text h2 {
  color: var(--primary);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 1.5rem;
}

.service-desc {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.service-text h3 {
  color: var(--primary);
  font-size: clamp(1.2rem, 3vw, 1.4rem);
  margin: 2rem 0 1rem;
}

.service-list {
  list-style: none;
}

.service-list li {
  padding: 0.8rem 0 0.8rem 2rem;
  position: relative;
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 0.95rem;
}

.service-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

.service-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

/* ===============================================
   EXPERTISE SECTION
   =============================================== */
.expertise-section {
  padding: 5rem 2rem;
  background: var(--accent);
}

.expertise-section h2 {
  text-align: center;
  color: var(--primary);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom: 3.5rem;
}

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

.expertise-card {
  background: var(--gray-light);
  padding: 2rem;
  border-radius: 16px;
  border-left: 5px solid var(--secondary);
  box-shadow: var(--shadow);
}

.expertise-card h3 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.expertise-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* ===============================================
   COMPLIANCE SECTION
   =============================================== */
.compliance-section {
  padding: 5rem 2rem;
  background: var(--gray-light);
}

.compliance-section h2 {
  text-align: center;
  color: var(--primary);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  margin-bottom: 3.5rem;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.compliance-item {
  background: var(--accent);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--secondary);
}

.compliance-item h4 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.compliance-item ul {
  list-style: none;
}

.compliance-item li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.compliance-item li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

/* ===============================================
   CONTACT SECTION
   =============================================== */
.contact-wrapper {
  padding: 5rem 2rem;
  background: var(--accent);
}

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

.contact-info h2 {
  color: var(--primary);
  font-size: clamp(1.6rem, 4vw, 2rem);
  margin-bottom: 2rem;
}

.info-block {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--secondary);
}

.info-block h4 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.info-block p {
  color: var(--text-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.contact-form {
  background: var(--gray-light);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border-left: 6px solid var(--secondary);
}

.contact-form h2 {
  color: var(--primary);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--secondary);
  border-radius: 12px;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
  color: var(--text-dark);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(19, 108, 138, 0.1);
}

/* ===============================================
   FOOTER - PROPERLY FORMATTED
   =============================================== */
.footer {
  background: #0F4F65;
  color: var(--white);
  padding: 3rem 2rem 1rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-section h4 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  margin-bottom: 1rem;
  color: var(--secondary);
  font-weight: 700;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  font-size: 0.95rem;
}

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

.footer-section li {
  margin-bottom: 0.8rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s;
  font-size: 0.95rem;
  text-decoration: none;
}

.footer-section a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 184, 200, 0.2);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* ===============================================
   RESPONSIVE BREAKPOINTS
   =============================================== */

/* TABLET - 900px */
@media (max-width: 900px) {
  .nav-container {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0.5rem 1.5rem !important;
    gap: 1.5rem !important;
  }

  .logo {
    flex: 0 0 auto;
  }

  .nav-menu {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 0.8rem;
    gap: 0.8rem !important;
  }

  .nav-link {
    padding: 0.4rem 0.8rem !important;
    font-size: 0.85rem !important;
  }
}

/* TABLET - 768px */
@media (max-width: 768px) {
  .navbar {
    padding: 0.5rem 0 !important;
  }

  .nav-container {
    padding: 0.4rem 1.5rem !important;
  }

  .logo-img {
    height: 44px !important;
    min-width: 120px !important;
  }

  .hero,
  .page-hero {
    padding: 60px 1.5rem 0;
  }

  .trust-section,
  .why-choose,
  .services-overview,
  .approaches,
  .cta-section,
  .mission-vision,
  .values-section,
  .team-section,
  .service-detail,
  .expertise-section,
  .compliance-section,
  .contact-wrapper,
  .footer {
    padding: 3rem 1.5rem;
  }

  .container {
    padding: 0 1.5rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }

  .hero p,
  .page-hero p {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }

  .btn {
    padding: 1rem 2rem;
    font-size: 0.95rem;
    width: 100%;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

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

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

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

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

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

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

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

  .service-layout.reverse {
    direction: ltr;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* MOBILE - 480px */
@media (max-width: 480px) {
  .nav-container {
    padding: 0.4rem 1rem !important;
    gap: 1rem !important;
  }

  .logo-img {
    height: 36px !important;
    min-width: 90px !important;
  }

  .nav-menu {
    gap: 0.5rem !important;
  }

  .nav-link {
    padding: 0.3rem 0.6rem !important;
    font-size: 0.8rem !important;
  }

  .hero,
  .page-hero {
    padding: 60px 1rem 0;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .trust-section,
  .why-choose,
  .services-overview,
  .approaches,
  .cta-section,
  .mission-vision,
  .values-section,
  .team-section,
  .service-detail,
  .expertise-section,
  .compliance-section,
  .contact-wrapper,
  .footer {
    padding: 2.5rem 1rem;
  }

  .container {
    padding: 0 1rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
  }

  .btn {
    padding: 0.9rem 1.5rem;
    font-size: 0.9rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .footer-content {
    gap: 1.5rem;
  }
}
