/* ============================================================
   LexVest Advisory — Main Stylesheet
   Color Palette:
   Primary   #0A1B3D (Midnight Navy)
   Secondary #B22222 (Crimson Red)
   Tertiary  #708090 (Slate Grey)
   BG        #F9F9F9 (Off-White/Pearl)
============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&family=Raleway:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --navy: #0A1B3D;
  --navy-light: #112249;
  --crimson: #B22222;
  --crimson-dark: #8B1A1A;
  --slate: #708090;
  --slate-light: #9AAAB8;
  --bg: #F9F9F9;
  --white: #FFFFFF;
  --dark: #0d0d0d;
  --gold: #C9A84C;
  --font-heading: "Raleway", sans-serif;
  --font-body: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-accent: "Poppins", sans-serif;
  --shadow-sm: 0 2px 12px rgba(10, 27, 61, 0.08);
  --shadow-md: 0 8px 32px rgba(10, 27, 61, 0.14);
  --shadow-lg: 0 20px 60px rgba(10, 27, 61, 0.18);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 50px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--navy);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  color: var(--navy);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 600px;
  line-height: 1.8;
}

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

.text-center .section-subtitle {
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--crimson);
  color: var(--white);
  border-color: var(--crimson);
}

.btn-primary:hover {
  background: var(--crimson-dark);
  border-color: var(--crimson-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(178, 34, 34, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

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

section {
  padding: 90px 0;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--crimson);
  margin: 1.25rem 0 1.75rem;
}

.divider.center {
  margin: 1.25rem auto 1.75rem;
}

/* ---------- Scroll Animations ---------- */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos="fade-left"] {
  transform: translateX(-30px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-right"] {
  transform: translateX(30px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="zoom-in"] {
  transform: scale(0.92);
}

[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
}

/* ============================================================
   NAVBAR
============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: transparent;
  /* background-color: var(--white); */
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

#navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 24px rgba(10, 27, 61, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 1rem;
}

.nav-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  /* filter: brightness(0) invert(1); */
  transition: var(--transition);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.nav-links>li {
  position: relative;
}

.nav-links>li>a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  min-width: 520px;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  transform: translateX(-50%) translateY(8px);
  border-top: 3px solid var(--crimson);
}

.nav-links>li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}

.nav-dropdown a i {
  color: var(--crimson);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.nav-dropdown a:hover {
  background: rgba(10, 27, 61, 0.05);
  color: var(--crimson);
}

.nav-cta {
  flex-shrink: 0;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hidden by default; enabled in mobile breakpoint */
.mobile-menu {
  display: none;
}

/* ============================================================
   HERO
============================================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--white);
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 27, 61, 0.88) 0%, rgba(10, 27, 61, 0.78) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 2rem 1.5rem;
}

.hero-content h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 800;
  line-height: 1.15;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-content h1 em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--font-accent);
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 580px;
  margin: 0 auto 2.25rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.hero-dot.active {
  background: var(--crimson);
  transform: scale(1.3);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll span {
  writing-mode: vertical-rl;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.3);
}

/* Stats bar */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(10, 27, 61, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.25rem 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
  text-align: center;
}

/* ============================================================
   ABOUT
============================================================ */
#about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
}

.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 200px;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-md);
}

.about-years-badge {
  position: absolute;
  top: 2rem;
  left: -1.5rem;
  background: var(--crimson);
  color: var(--white);
  padding: 1.2rem 1.5rem;
  border-radius: 6px;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-years-badge .num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-years-badge .lbl {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-content {}

.about-vm {
  margin: 2rem 0;
  display: grid;
  gap: 1.25rem;
}

.vm-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border: 1px solid rgba(10, 27, 61, 0.08);
  border-radius: 6px;
  transition: var(--transition);
}

.vm-card:hover {
  border-color: var(--crimson);
  box-shadow: var(--shadow-sm);
}

.vm-icon {
  width: 44px;
  height: 44px;
  background: rgba(178, 34, 34, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--crimson);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.vm-body h4 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.vm-body p {
  font-size: 0.875rem;
  color: var(--slate);
}

/* Values */
#values {
  background: var(--bg);
  padding-top: 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  position: relative;
  padding: 2.5rem 1.75rem;
  border-radius: 6px;
  background: var(--white);
  border: 1px solid rgba(10, 27, 61, 0.08);
  overflow: hidden;
  transition: var(--transition);
  text-align: center;
  cursor: default;
}

.value-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.value-card:hover::before {
  transform: translateY(0);
}

.value-card>* {
  position: relative;
  z-index: 1;
}

.value-card:hover .value-icon,
.value-card:hover h3,
.value-card:hover p {
  color: var(--white);
}

.value-icon {
  font-size: 2.2rem;
  color: var(--crimson);
  margin-bottom: 1.2rem;
  transition: color 0.35s ease;
}

.value-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  transition: color 0.35s ease;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--slate);
  transition: color 0.35s ease;
}

.value-card:hover p {
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   SERVICES
============================================================ */
#services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--bg);
  border: 1px solid rgba(10, 27, 61, 0.07);
  border-radius: 6px;
  padding: 2rem 1.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(178, 34, 34, 0.2);
}

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

.service-icon {
  width: 54px;
  height: 54px;
  background: rgba(10, 27, 61, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--crimson);
  color: var(--white);
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.865rem;
  color: var(--slate);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--crimson);
  transition: var(--transition);
}

.service-link:hover {
  gap: 0.7rem;
}

/* ============================================================
   WHY CHOOSE US
============================================================ */
#why-us {
  background: var(--navy);
  color: var(--white);
}

#why-us .section-title {
  color: var(--white);
}

#why-us .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}

.why-img {
  position: relative;
}

.why-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 6px;
  opacity: 0.85;
}

.why-img::before {
  content: '';
  position: absolute;
  inset: -1rem -1rem 1rem 1rem;
  border: 2px solid rgba(178, 34, 34, 0.4);
  border-radius: 6px;
  z-index: -1;
}

.why-features {
  display: grid;
  gap: 1.5rem;
}

.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  transition: var(--transition);
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(178, 34, 34, 0.4);
}

.why-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--crimson);
  line-height: 1;
  min-width: 40px;
}

.why-body h4 {
  color: var(--white);
  margin-bottom: 0.35rem;
}

.why-body p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   TESTIMONIALS
============================================================ */
#testimonials {
  background: var(--bg);
}

.testimonials-slider {
  position: relative;
  margin-top: 3rem;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(10, 27, 61, 0.08);
  border-radius: 8px;
  padding: 2.5rem;
  min-width: calc(33.333% - 1rem);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.testimonial-card.center {
  transform: scale(1.06);
  box-shadow: var(--shadow-lg);
  border-color: rgba(178, 34, 34, 0.2);
  z-index: 2;
}

.testimonial-card .quote-icon {
  font-size: 3.5rem;
  color: var(--crimson);
  opacity: 0.2;
  line-height: 1;
  font-family: Georgia, serif;
  margin-bottom: 0.75rem;
}

.testimonial-text {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.8;
  margin-bottom: 1.75rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--crimson);
}

.author-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
}

.author-info span {
  font-size: 0.8rem;
  color: var(--slate);
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--navy);
  color: var(--white);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(10, 27, 61, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--crimson);
  transform: scale(1.3);
}

/* ============================================================
   CTA SECTION
============================================================ */
#cta-section {
  position: relative;
  padding: 120px 0;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

#cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 27, 61, 0.92) 0%, rgba(178, 34, 34, 0.7) 100%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-inner h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.btn-cta {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  font-size: 0.95rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
}

.btn-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* ============================================================
   FAQS
============================================================ */
#faqs {
  background: var(--white);
}

.faqs-wrap {
  max-width: 780px;
  margin: 3rem auto 0;
}

.faq-item {
  border: 1px solid rgba(10, 27, 61, 0.1);
  border-radius: 6px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: rgba(178, 34, 34, 0.3);
  box-shadow: var(--shadow-sm);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  gap: 1rem;
  user-select: none;
}

.faq-q:hover {
  color: var(--crimson);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(178, 34, 34, 0.1);
  color: var(--crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform 0.35s ease, background 0.35s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--crimson);
  color: var(--white);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-a p {
  padding: 0 1.5rem 1.35rem;
  color: var(--slate);
  font-size: 0.925rem;
  line-height: 1.8;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

/* ============================================================
   CONTACT
============================================================ */
#contact {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info h3 {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

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

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 0.3rem;
}

.contact-item-text span {
  font-size: 0.925rem;
  color: var(--slate);
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid var(--navy);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  transition: var(--transition);
}

.map-btn:hover {
  background: var(--navy);
  color: var(--white);
}

/* Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

.contact-form-wrap h3 {
  font-size: 1.3rem;
  margin-bottom: 1.75rem;
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(10, 27, 61, 0.15);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--bg);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 0 3px rgba(178, 34, 34, 0.1);
}

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

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: #2e7d32;
}

.form-success i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

/* ============================================================
   FOOTER
============================================================ */
#footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding: 5rem 0 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo img {
  height: 100px;
  /* filter: brightness(0) invert(1); */
  /* margin-bottom: 1.25rem; */
}

.footer-logo p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--crimson);
  border-color: var(--crimson);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  font-weight: 700;
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--crimson);
  margin-top: 0.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: var(--transition);
}

.footer-links a::before {
  content: '›';
  color: var(--crimson);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item i {
  color: var(--crimson);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   TEAM PAGE
============================================================ */
.page-hero {
  background: var(--navy);
  padding: 160px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(178, 34, 34, 0.15) 0%, transparent 70%);
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 550px;
  margin: 1rem auto 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.3);
}

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

.team-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

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

.team-img-wrap {
  position: relative;
  overflow: hidden;
}

.team-img-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.06);
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 27, 61, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .team-overlay {
  opacity: 1;
}

.team-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}

.team-social-link:hover {
  background: var(--crimson);
  border-color: var(--crimson);
}

.team-info {
  padding: 1.5rem 1.25rem 1.75rem;
}

.team-info h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.team-position {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 0;
}

/* ============================================================
   SERVICES DETAIL PAGE
============================================================ */
.services-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  margin-top: 3rem;
  align-items: start;
}

.services-sidebar {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}

.sidebar-title {
  background: var(--navy);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  font-family: var(--font-body);
}

.sidebar-list {}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  border-bottom: 1px solid rgba(10, 27, 61, 0.06);
  transition: var(--transition);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate);
}

.sidebar-item i {
  color: var(--slate);
  font-size: 1rem;
  transition: color 0.3s;
  width: 20px;
}

.sidebar-item:hover {
  background: rgba(10, 27, 61, 0.03);
  color: var(--navy);
}

.sidebar-item.active {
  background: rgba(178, 34, 34, 0.06);
  color: var(--crimson);
  border-left: 3px solid var(--crimson);
}

.sidebar-item.active i {
  color: var(--crimson);
}

.service-detail-panel {}

.service-detail {
  display: none;
  background: var(--white);
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  animation: fadeInPanel 0.35s ease;
}

.service-detail.active {
  display: block;
}

@keyframes fadeInPanel {
  from {
    opacity: 0;
    transform: translateX(12px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.detail-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(10, 27, 61, 0.08);
}

.detail-icon {
  width: 60px;
  height: 60px;
  background: rgba(178, 34, 34, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--crimson);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.detail-header h2 {
  font-size: 1.75rem;
}

.detail-header p {
  font-size: 0.875rem;
  color: var(--crimson);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.detail-body p {
  color: var(--slate);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.detail-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.75rem 0;
}

.detail-feature {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
}

.detail-feature i {
  color: var(--crimson);
}

.detail-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.detail-cta {
  background: rgba(10, 27, 61, 0.04);
  border-radius: 6px;
  padding: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.detail-cta p {
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}

/* ============================================================
   ADMIN PAGE
============================================================ */
.admin-body {
  background: #f0f2f5;
  min-height: 100vh;
}

.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}

.admin-login-card {
  background: var(--white);
  border-radius: 10px;
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.admin-login-card img {
  height: 60px;
  margin: 0 auto 1.5rem;
}

.admin-login-card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.admin-login-card p {
  font-size: 0.875rem;
  color: var(--slate);
  margin-bottom: 2rem;
}

.admin-header {
  background: var(--navy);
  color: var(--white);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

.admin-header img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.admin-header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admin-logout {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.45rem 1rem;
  border-radius: var(--radius);
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.admin-logout:hover {
  background: var(--crimson);
  border-color: var(--crimson);
}

.admin-main {
  max-width: 1300px;
  margin: 0 auto;
  padding: 2rem;
}

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

.admin-stat-card {
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admin-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.admin-stat-icon.navy {
  background: rgba(10, 27, 61, 0.1);
  color: var(--navy);
}

.admin-stat-icon.crimson {
  background: rgba(178, 34, 34, 0.1);
  color: var(--crimson);
}

.admin-stat-icon.gold {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold);
}

.admin-stat-icon.green {
  background: rgba(46, 125, 50, 0.1);
  color: #2e7d32;
}

.admin-stat-info strong {
  display: block;
  font-size: 1.6rem;
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1;
}

.admin-stat-info span {
  font-size: 0.8rem;
  color: var(--slate);
}

.admin-table-wrap {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.admin-table-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(10, 27, 61, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-table-header h3 {
  font-size: 1rem;
}

.admin-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(10, 27, 61, 0.15);
  border-radius: var(--radius);
  padding: 0.5rem 0.85rem;
}

.admin-search input {
  border: none;
  outline: none;
  font-size: 0.875rem;
  color: var(--navy);
  width: 200px;
  background: transparent;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.admin-table th {
  background: rgba(10, 27, 61, 0.03);
  padding: 0.85rem 1rem;
  text-align: left;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 700;
  border-bottom: 1px solid rgba(10, 27, 61, 0.08);
}

.admin-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(10, 27, 61, 0.05);
  color: var(--navy);
  vertical-align: top;
}

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

.admin-table tr:hover td {
  background: rgba(10, 27, 61, 0.02);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.badge-new {
  background: rgba(10, 27, 61, 0.08);
  color: var(--navy);
}

.badge-review {
  background: rgba(201, 168, 76, 0.15);
  color: #996600;
}

.badge-done {
  background: rgba(46, 125, 50, 0.1);
  color: #2e7d32;
}

.view-btn {
  background: none;
  border: 1px solid rgba(10, 27, 61, 0.2);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.78rem;
  cursor: pointer;
  color: var(--navy);
  transition: var(--transition);
}

.view-btn:hover {
  background: var(--navy);
  color: var(--white);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: 10px;
  padding: 2.5rem;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
}

.modal-header h3 {
  font-size: 1.2rem;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--slate);
}

.modal-close:hover {
  color: var(--crimson);
}

.modal-field {
  margin-bottom: 1.25rem;
}

.modal-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 0.35rem;
}

.modal-field p {
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--bg);
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(10, 27, 61, 0.08);
}

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

@media (max-width: 1100px) {

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

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

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .hero-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {

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

  .about-img-accent {
    display: none;
  }

  .about-years-badge {
    left: 1rem;
  }

  .why-img {
    display: none;
  }

  .admin-stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .services-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  section {
    padding: 65px 0;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  body.mobile-menu-open #navToggle {
    opacity: 0;
    pointer-events: none;
  }

  /* Mobile menu — must sit above #navbar (z-index: 1000) or close button is blocked */
  .mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 1rem 1.25rem 1.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-menu.open {
    transform: translateX(0);
  }

  .mobile-menu>div:first-child {
    position: sticky;
    top: 0;
    background: var(--navy);
    z-index: 10;
    padding: 0.35rem 0 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 1rem !important;
  }

  .mobile-close-btn {
    position: relative;
    z-index: 11;
    flex-shrink: 0;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--white);
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-close-btn span {
    position: relative;
    width: 18px;
    height: 18px;
    display: block;
  }

  .mobile-close-btn span::before,
  .mobile-close-btn span::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--white);
  }

  .mobile-close-btn span::before {
    transform: rotate(45deg);
  }

  .mobile-close-btn span::after {
    transform: rotate(-45deg);
  }

  .mobile-close-btn:hover {
    border-color: rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-menu a {
    display: block;
    color: var(--white);
    font-size: 1.15rem;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.35;
    padding: 0.8rem 0.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
  }

  .mobile-services-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 1.15rem;
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.35;
    padding: 0.8rem 0.2rem;
    cursor: pointer;
    text-align: left;
  }

  .mobile-services-toggle i {
    font-size: 0.9rem;
    transition: transform 0.25s ease;
  }

  .mobile-services-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
  }

  .mobile-services-submenu {
    display: none;
  }

  .mobile-services-submenu.open {
    display: block;
  }

  .mobile-menu a:hover {
    color: var(--gold);
    padding-left: 0.6rem;
  }

  .mobile-menu .mobile-sub {
    font-size: 0.98rem;
    font-family: var(--font-body);
    font-weight: 500;
    line-height: 1.45;
    padding: 0.5rem 0.2rem 0.5rem 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    border-bottom-color: rgba(255, 255, 255, 0.05);
  }

  .mobile-cta-wrap {
    margin-top: 1.2rem;
    padding-top: 0.7rem;
  }

  .hero-stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-img-main {
    height: 320px;
  }

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

  .testimonial-card {
    min-width: 85vw;
  }

  .testimonial-card.center {
    transform: scale(1);
  }

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

  .footer-main {
    grid-template-columns: 1fr;
  }

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

  .admin-stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

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

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

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

  .admin-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats-inner {
    grid-template-columns: 1fr 1fr;
  }

  .stat-number {
    font-size: 1.4rem;
  }
}