/* RESET & BASE STYLES
============================================= */
:root {
  --primary: #0c2340;
  --primary-dark: #091b32;
  --primary-light: #1a3863;
  --accent: #e4b941;
  --accent-dark: #c69d2f;
  --text: #333333;
  --text-light: #666666;
  --text-lighter: #999999;
  --bg-light: #f8f9fa;
  --bg-dark: #122847;
  --white: #ffffff;
  --border: #e0e0e0;
  --success: #2e7d32;
  --error: #c62828;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --radius: 4px;
  --radius-lg: 8px;
  --container: 1200px;
  --header-height: 80px;
  --z-header: 1000;
  --z-dropdown: 1010;
  --z-modal: 2000;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  background-color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.75em;
  color: var(--primary);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p, ul, ol {
  margin-bottom: 1.5rem;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 8px;
  z-index: 100;
}

.skip-link:focus {
  top: 0;
}

/* INFO STRIP
============================================= */
.info-strip {
  background-color: #f8f8f8;
  padding: 8px 0;
  font-size: 0.85rem;
}

.info-strip-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.info-branding {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-logo {
  width: 24px;
  height: 24px;
}

.info-company {
  font-weight: 600;
}

.info-contacts {
  display: flex;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.info-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.info-since {
  font-weight: 600;
}

.info-right-links {
  display: flex;
  gap: 1rem;
}

.request-call-btn {
  background-color: var(--primary);
  color: white;
  padding: 4px 10px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.request-call-btn:hover {
  background-color: var(--primary-dark);
}

/* HEADER
============================================= */
.inv-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: var(--z-header);
  background-color: var(--primary);
}

.inv-header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.inv-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inv-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.inv-tagline {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-top: -6px;
  /* Fixed: Prevent abrupt appearance with proper transition */
  transition: opacity 0.3s ease;
  opacity: 1;
}

.inv-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0.5rem;
  position: relative;
  z-index: 100;
}

.inv-toggle-bars {
  width: 24px;
  height: 20px;
  position: relative;
  display: block;
}

.inv-toggle-bars span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition);
  transform-origin: center;
}

.inv-toggle-bars span:nth-child(1) {
  top: 0;
}

.inv-toggle-bars span:nth-child(2),
.inv-toggle-bars span:nth-child(3) {
  top: 9px;
}

.inv-toggle-bars span:nth-child(4) {
  bottom: 0;
}

.inv-toggle[aria-expanded="true"] .inv-toggle-bars span:nth-child(1),
.inv-toggle[aria-expanded="true"] .inv-toggle-bars span:nth-child(4) {
  opacity: 0;
}

.inv-toggle[aria-expanded="true"] .inv-toggle-bars span:nth-child(2) {
  transform: rotate(45deg);
}

.inv-toggle[aria-expanded="true"] .inv-toggle-bars span:nth-child(3) {
  transform: rotate(-45deg);
}

.inv-nav-container {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.inv-menu {
  display: flex;
  gap: 1.5rem;
}

.inv-nav-item {
  position: relative;
}

.inv-nav-link {
  color: var(--white);
  font-weight: 600;
  padding: 0.5rem 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  position: relative;
}

.inv-nav-link[aria-current="page"] {
  color: var(--accent);
}

.inv-nav-link:hover {
  color: var(--accent);
}

.inv-chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.inv-has-dropdown > .inv-nav-link::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
}

.inv-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: var(--z-dropdown);
  display: flex;
  gap: 1rem;
  margin-top: 8px;
}

.inv-has-dropdown:hover .inv-dropdown {
  opacity: 1;
  visibility: visible;
}

.inv-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--white);
  transform: rotate(45deg);
}

.inv-dropdown-group {
  flex: 1;
  min-width: 130px;
}

.inv-dropdown-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-lighter);
  margin-bottom: 0.5rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--border);
}

.inv-dropdown-link {
  display: block;
  padding: 0.25rem 0;
  color: var(--text);
  font-size: 0.9rem;
}

.inv-dropdown-link[aria-current="page"] {
  color: var(--primary);
  font-weight: 600;
}

.inv-dropdown-link:hover {
  color: var(--primary);
}

.inv-cta {
  display: inline-block;
  background-color: var(--accent);
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius);
  white-space: nowrap;
}

.inv-cta:hover {
  background-color: var(--accent-dark);
}

/* HERO SECTION
============================================= */
.ph-hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background-color: var(--primary);
  min-height: 600px;
  display: flex;
  align-items: center;
}

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

.ph-hero__gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--primary) 0%, var(--primary-light) 100%);
}

.ph-hero__glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 185, 65, 0.3) 0%, rgba(228, 185, 65, 0) 70%);
  top: -400px;
  right: -200px;
  opacity: 0.5;
  animation: pulse 8s infinite alternate;
}

@keyframes pulse {
  0% {
    opacity: 0.3;
    transform: scale(1);
  }
  100% {
    opacity: 0.5;
    transform: scale(1.1);
  }
}

.ph-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../img/grid-pattern.png');
  background-repeat: repeat;
  opacity: 0.07;
}

.ph-hero__inner {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.ph-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ph-hero__left {
  flex: 0.55;
}

.ph-hero__right {
  flex: 0.45;
  display: flex;
  justify-content: flex-end;
}

.ph-hero__title {
  color: var(--white);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.ph-hero__sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  line-height: 1.5;
  max-width: 500px;
  margin-bottom: 2.5rem;
}

.ph-hero__actions {
  display: flex;
  gap: 1rem;
}

.ph-btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
}

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

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

.ph-btn--ghost {
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
}

.ph-btn--ghost:hover {
  border-color: var(--white);
}

.ph-showcase {
  width: 100%;
  max-width: 450px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
}

.ph-showcase__card {
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.ph-showcase__card--primary {
  background: var(--accent);
  color: var(--primary-dark);
}

.ph-showcase__card h3 {
  color: inherit;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.ph-showcase__card p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.ph-mini-link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--primary-dark);
}

.ph-mini-link:hover {
  text-decoration: underline;
}

.ph-showcase__stack {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ph-mini-stat {
  flex: 1;
  background: rgba(255, 255, 255, 0.15);
  padding: 1rem;
  border-radius: var(--radius);
  text-align: center;
}

.ph-mini-stat__value {
  display: block;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.ph-mini-stat__label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.ph-showcase__note {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
}

/* STATS SECTION
============================================= */
.stats-section {
  background-color: var(--white);
  padding: 5rem 0;
}

.stats-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

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

.stat-value {
  font-size: 2.5rem;
  color: var(--primary);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.counter-suffix {
  font-size: 1.5rem;
}

.stat-label {
  color: var(--text-light);
  font-size: 1rem;
}

.badge-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.badge {
  background-color: var(--bg-light);
  padding: 0.5rem 1.25rem;
  font-weight: 600;
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text);
  letter-spacing: 0.5px;
}

/* SERVICES OVERVIEW
============================================= */
.services-overview {
  padding: 5rem 0;
  text-align: center;
}

.services-overview h2 {
  margin-bottom: 3rem;
}

.services-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.services-inner {
  display: flex;
  gap: 2rem;
  padding: 0.5rem 0;
  /* Fixed: Added will-change and smoother transition */
  will-change: transform;
  transition: transform 0.1s linear;
}

.service-card {
  flex: 0 0 300px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: left;
  transition: var(--transition);
}

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

.service-media {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.service-media--contain {
  height: 120px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.text-link {
  color: var(--primary);
  font-weight: 600;
  position: relative;
  display: inline-flex;
  align-items: center;
  transition: var(--transition);
}

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

/* PARTNERS SECTION
============================================= */
.partners-wrapper {
  padding: 4rem 0;
  background-color: var(--bg-light);
  text-align: center;
}

.partners-wrapper h2 {
  margin-bottom: 2.5rem;
}

.partners-ribbon {
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
}

.partners-track {
  display: flex;
  gap: 3rem;
  align-items: center;
  /* Fixed: Added will-change and smoother transition */
  will-change: transform;
  transition: transform 0.1s linear;
}

.partner-logo {
  flex: 0 0 auto;
  opacity: 0.7;
  transition: var(--transition);
}

.partner-logo:hover {
  opacity: 1;
}

.partners-note {
  margin-top: 1.5rem;
  color: var(--text-lighter);
  font-size: 0.85rem;
  font-style: italic;
}

/* ABOUT PREVIEW
============================================= */
.about-preview {
  padding: 5rem 0;
}

.about-flex {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-picture {
  flex: 0 0 45%;
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.about-bullets {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.about-bullets li {
  margin-bottom: 0.75rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.pillar {
  text-align: center;
  background-color: var(--bg-light);
  padding: 1rem;
  border-radius: var(--radius);
}

.pillar strong {
  display: block;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.pillar span {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* TEAM SECTION
============================================= */
.team-section {
  padding: 5rem 0;
  background-color: var(--bg-light);
}

.team-heading {
  text-align: center;
  margin-bottom: 1rem;
}

.team-intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
  color: var(--text-light);
}

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

.team-card {
  background-color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.team-card-btn {
  display: block;
  width: 100%;
  cursor: pointer;
  text-align: left;
}

.team-figure {
  width: 100%;
  overflow: hidden;
  /* Fixed: Set fixed height for team photos */
  height: 360px;
}

.team-figure img {
  width: 100%;
  height: 100%;
  /* Fixed: Use object-fit to ensure consistent display */
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.team-card:hover .team-figure img {
  transform: scale(1.05);
}

.team-meta {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--text-light);
  margin-bottom: 0;
}

.team-fallback-note {
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
  color: var(--text-light);
  font-size: 0.9rem;
}

.team-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.team-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.team-modal__backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.team-modal__dialog {
  width: 100%;
  max-width: 500px;
  background-color: var(--white);
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-md);
  transform: translateY(20px);
  transition: transform 0.3s;
}

.team-modal[aria-hidden="false"] .team-modal__dialog {
  transform: translateY(0);
}

.team-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-light);
  background: none;
  border: none;
}

.team-modal__content {
  padding: 2rem;
}

.team-modal__name {
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.team-modal__role {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.team-modal__bio {
  margin-bottom: 1.5rem;
}

.team-modal__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* CONTACT SECTION
============================================= */
.contact-preview {
  padding: 5rem 0;
}

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

.contact-block {
  flex: 1;
}

.brand-name {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.contact-info {
  margin-bottom: 2rem;
}

.contact-info li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.icon {
  flex-shrink: 0;
}

.contact-note {
  color: var(--text-light);
  font-style: italic;
}

.contact-form-modern {
  flex: 1;
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

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

.form-title {
  margin-bottom: 0.5rem;
}

.form-subtitle {
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.hp-wrap {
  position: absolute;
  left: -9999px;
  height: 0;
  width: 0;
  opacity: 0;
  overflow: hidden;
}

.form-fields {
  margin-bottom: 2rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.field-wrapper {
  position: relative;
  width: 100%;
}

.field-wrapper.full-width {
  width: 100%;
}

.field-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  opacity: 0.5;
}

.name-icon::before {
  content: "👤";
}

.mobile-icon::before {
  content: "📱";
}

.email-icon::before {
  content: "✉️";
}

.field-wrapper input, 
.field-wrapper textarea {
  width: 100%;
  padding: 1rem;
  padding-left: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background-color: var(--white);
  transition: var(--transition);
}

.field-wrapper textarea {
  resize: vertical;
  min-height: 100px;
}

.field-wrapper input:focus,
.field-wrapper textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 2px rgba(12, 35, 64, 0.1);
}

.field-wrapper label {
  position: absolute;
  left: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  transition: var(--transition);
  pointer-events: none;
}

.field-wrapper textarea + label {
  top: 1rem;
  transform: none;
}

.field-wrapper input:focus + label,
.field-wrapper input:not(:placeholder-shown) + label,
.field-wrapper textarea:focus + label,
.field-wrapper textarea:not(:placeholder-shown) + label {
  transform: translateY(-170%) scale(0.8);
  left: 1rem;
  color: var(--primary);
}

.field-hint {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background-color: var(--primary);
  color: var(--white);
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  margin-bottom: 1rem;
}

.submit-btn:hover {
  background-color: var(--primary-dark);
}

.privacy-note {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 0;
}

/* STATUS DISPLAY */
#qcStatus {
  text-align: center;
  padding: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
}

#qcStatus.success {
  color: var(--success);
  background-color: rgba(46, 125, 50, 0.1);
}

#qcStatus.error {
  color: var(--error);
  background-color: rgba(198, 40, 40, 0.1);
}

/* PAGE BANNERS
============================================= */
.page-banner {
  background-color: var(--primary);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.page-banner h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-banner p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* SERVICE DETAIL
============================================= */
.service-detail {
  padding: 4rem 0;
}

.feature-list {
  margin-bottom: 2rem;
}

.feature-list li {
  margin-bottom: 1rem;
}

.check-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.cta-box {
  background-color: var(--bg-light);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 2.5rem;
  text-align: center;
}

.cta-box p {
  margin-bottom: 1.5rem;
}

/* ABOUT PAGE
============================================= */
.about-hero-simple {
  background-color: var(--primary);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.about-hero-simple h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.9);
}

.about-stats {
  padding: 3rem 0;
  background-color: var(--bg-light);
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.about-stat {
  text-align: center;
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1rem;
  box-shadow: var(--shadow-sm);
}

.ph-counter-wrap {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.ph-counter-suffix {
  font-size: 1.5rem;
}

.about-stat-label {
  color: var(--text-light);
  margin-bottom: 0;
}

.about-content {
  padding: 4rem 0;
}

.about-content h2 {
  margin-top: 2.5rem;
}

.about-content h2:first-child {
  margin-top: 0;
}

.why-list {
  list-style: disc;
  padding-left: 1.5rem;
}

.why-list li {
  margin-bottom: 0.75rem;
}

.process-steps {
  list-style: none;
  counter-reset: process;
  margin: 2rem 0;
}

.process-steps li {
  position: relative;
  padding: 1rem 1.5rem 1rem 3.5rem;
  margin-bottom: 1rem;
  background-color: var(--bg-light);
  border-radius: var(--radius);
}

.process-steps li::before {
  counter-increment: process;
  content: counter(process);
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* SERVICE GRID
============================================= */
.services-grid-section {
  padding: 4rem 0;
}

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

.svc-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}

.svc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.svc-card h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.svc-card p {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

/* BUTTONS
============================================= */
.btn-primary {
  display: inline-block;
  background-color: var(--primary);
  color: var(--white);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

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

.btn-secondary {
  display: inline-block;
  background-color: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

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

/* FOOTER
============================================= */
footer {
  background-color: var(--bg-dark);
  color: var(--white);
  padding: 4rem 0;
  margin-top: auto;
}

.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-brand-block {
  flex: 2;
}

.footer-logo {
  max-width: 210px;
  height: auto;
  margin-bottom: 1.5rem;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.footer-contact {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  line-height: 1.7;
}

.footer-contact a {
  color: var(--accent);
}

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

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-nav a[aria-current="page"] {
  color: var(--accent);
  font-weight: 600;
}

/* CONTACT PAGE SPECIFIC
============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.contact-info-list {
  margin-bottom: 2rem;
}

.contact-info-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-list strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--primary);
}

.business-hours h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.map-section {
  padding: 4rem 0;
  background-color: var(--bg-light);
}

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

.map-embed {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* RESPONSIVE
============================================= */
@media (max-width: 1100px) {
  .ph-hero__title {
    font-size: 2.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .inv-toggle {
    display: block;
  }
  
  .inv-nav-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-md);
    z-index: 50;
    overflow-y: auto;
  }
  
  .inv-toggle[aria-expanded="true"] + .inv-nav-container {
    transform: translateX(0);
  }
  
  .inv-menu {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  
  .inv-nav-item {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }
  
  .inv-nav-link {
    color: var(--primary);
    padding: 1rem 0;
    width: 100%;
    justify-content: space-between;
  }
  
  .inv-chevron {
    transform: rotate(45deg) translateY(-2px);
    transition: var(--transition);
  }
  
  .inv-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    padding: 0;
    margin: 0 0 1rem;
    display: none;
    flex-direction: column;
    gap: 1rem;
  }
  
  .inv-dropdown::before {
    display: none;
  }
  
  .inv-has-dropdown.active .inv-chevron {
    transform: rotate(-135deg) translateY(2px);
  }
  
  .inv-has-dropdown.active .inv-dropdown {
    display: flex;
  }
  
  .inv-cta {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
  }
  
  .ph-hero__inner {
    flex-direction: column;
    gap: 3rem;
  }
  
  .ph-hero__left, 
  .ph-hero__right {
    flex: 1;
    width: 100%;
  }
  
  .ph-showcase {
    max-width: 100%;
  }
  
  .ph-hero__actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .ph-btn {
    width: 100%;
    text-align: center;
  }
  
  .about-flex {
    flex-direction: column;
    gap: 2rem;
  }
  
  .about-picture {
    flex: 0 0 100%;
  }
  
  .contact-flex {
    flex-direction: column;
    gap: 3rem;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .info-strip-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .info-right {
    width: 100%;
    justify-content: space-between;
  }
  
  .info-contacts {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .info-since {
    display: none;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .about-pillars {
    grid-template-columns: 1fr;
  }
  
  .about-stats__grid {
    grid-template-columns: 1fr;
  }
  
  .badge-container {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  
  .form-row {
    flex-direction: column;
  }
  
  .ph-hero {
    min-height: auto;
    padding: 3rem 0;
  }
  
  .ph-hero__title {
    font-size: 2rem;
  }
}