/* ===== M&O Solutions — Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --navy: #0a1628;
  --navy-light: #121f36;
  --navy-mid: #1a2d4a;
  --gold: #c9a84c;
  --gold-light: #e0c36a;
  --gold-dark: #a8872e;
  --white: #ffffff;
  --off-white: #f4f6f9;
  --gray-100: #e8ecf1;
  --gray-200: #d0d6e0;
  --gray-300: #a3aec2;
  --gray-600: #5a6a85;
  --gray-800: #2a3650;
  --success: #22c55e;
  --danger: #ef4444;
  --shadow-sm: 0 1px 3px rgba(10, 22, 40, .08);
  --shadow-md: 0 4px 20px rgba(10, 22, 40, .12);
  --shadow-lg: 0 12px 40px rgba(10, 22, 40, .18);
  --shadow-gold: 0 4px 30px rgba(201, 168, 76, .25);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

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

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-color: var(--gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

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

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

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

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

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

.btn-navy:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 22, 40, .92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 168, 76, .15);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 22, 40, .98);
  box-shadow: var(--shadow-lg);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1320px;
  margin: 0 auto;
  height: 80px;
}

.nav-logo img {
  height: 55px;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-links a {
  color: var(--gray-200);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: .9rem;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-phone {
  color: var(--gold);
  font-weight: 600;
  font-size: .9rem;
}

.nav-phone svg {
  width: 16px;
  height: 16px;
  margin-right: 4px;
  vertical-align: middle;
}

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

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  background: var(--navy);
  padding: 24px;
  border-top: 1px solid rgba(201, 168, 76, .2);
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.mobile-nav.open {
  display: block;
  animation: slideDown .3s ease;
}

.mobile-nav a {
  display: block;
  color: var(--gray-200);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  font-size: 1rem;
}

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

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}

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

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 22, 40, .85) 0%, rgba(10, 22, 40, .5) 50%, rgba(10, 22, 40, .7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 120px 0 80px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  color: var(--gray-200);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(201, 168, 76, .3);
}

.hero-stat h3 {
  color: var(--gold);
  font-size: 2.2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
}

.hero-stat p {
  color: var(--gray-300);
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SECTION UTILITIES ===== */
.section {
  padding: 100px 0;
}

.section-dark {
  background: var(--navy);
}

.section-light {
  background: var(--off-white);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-header .label {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--gray-600);
  margin-top: 16px;
  font-size: 1.05rem;
}

.section-header-dark h2 {
  color: var(--white);
}

.section-header-dark p {
  color: var(--gray-300);
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

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

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

.service-card .icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-card .icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray-600);
  font-size: .92rem;
}

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.why-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.why-item .num {
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-item h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.why-item p {
  color: var(--gray-600);
  font-size: .88rem;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(201, 168, 76, .06);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--gray-300);
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

.cta-banner .btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== COVERAGE MAP ===== */
.coverage {
  text-align: center;
}

.coverage-image {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.coverage-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.coverage-stat {
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
}

.coverage-stat h3 {
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 2rem;
}

.coverage-stat p {
  color: var(--gray-600);
  font-size: .85rem;
  margin-top: 4px;
}

/* ===== TESTIMONIAL ===== */
.testimonials-slider {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-card {
  background: var(--white);
  padding: 48px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-card .quote {
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

.testimonial-card p {
  font-size: 1.1rem;
  color: var(--gray-600);
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--navy);
}

.testimonial-card .role {
  color: var(--gray-300);
  font-size: .85rem;
}

/* ===== PAGE HERO (sub pages) ===== */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(201, 168, 76, .08), transparent 60%);
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}

.page-hero p {
  color: var(--gray-300);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
  position: relative;
}

.page-hero .breadcrumb {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
  font-size: .85rem;
  color: var(--gray-300);
  position: relative;
}

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

/* ===== FORMS ===== */
.form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-info h2 {
  margin-bottom: 16px;
}

.form-info p {
  color: var(--gray-600);
  margin-bottom: 24px;
}

.form-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.form-info-item svg {
  width: 22px;
  min-width: 22px;
  color: var(--gold);
  margin-top: 2px;
}

.form-info-item span {
  color: var(--gray-600);
  font-size: .92rem;
}

.form-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.form-card h3 {
  margin-bottom: 24px;
  text-align: center;
}

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

.form-group {
  margin-bottom: 18px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: .85rem;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.form-group label .req {
  color: var(--danger);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  transition: var(--transition);
  background: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .15);
  background: var(--white);
}

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

.form-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* ===== FORM CHECKBOX ===== */
.form-checkbox {
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(201, 168, 76, 0.05);
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
  margin-top: 2px;
}

.form-checkbox label {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--gray-600);
  cursor: pointer;
  text-transform: none;
  letter-spacing: normal;
  font-weight: 400;
}

.form-checkbox label a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success.show {
  display: block;
}

.form-success svg {
  width: 64px;
  height: 64px;
  color: var(--success);
  margin: 0 auto 16px;
}

.form-success h3 {
  margin-bottom: 8px;
}

.form-success p {
  color: var(--gray-600);
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  height: 440px;
  object-fit: cover;
  width: 100%;
}

.about-text .label {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  color: var(--gray-600);
  margin-bottom: 16px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.value-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(201, 168, 76, .15);
}

.value-card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(201, 168, 76, .1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card .icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.value-card h3 {
  color: var(--white);
  margin-bottom: 8px;
}

.value-card p {
  color: var(--gray-300);
  font-size: .9rem;
}

/* ===== CONTACT ===== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.contact-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

.contact-card .icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-card .icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.contact-card p {
  color: var(--gray-600);
  font-size: .9rem;
}

.contact-card a {
  color: var(--gold);
  font-weight: 600;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy);
  color: var(--gray-300);
  padding: 80px 0 0;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand p {
  color: var(--gray-300);
  margin: 16px 0;
  font-size: .9rem;
  max-width: 300px;
}

.footer-brand img {
  height: 50px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.footer-social a:hover svg {
  color: var(--navy);
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col a {
  display: block;
  color: var(--gray-300);
  padding: 5px 0;
  font-size: .9rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: .82rem;
  color: var(--gray-600);
}

.footer-bottom a {
  color: var(--gray-300);
}

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

.footer-legal {
  display: flex;
  gap: 24px;
}

/* ===== FAQ ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-column h3 {
  color: var(--navy);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.faq-item {
  border-bottom: 1px solid var(--gray-100);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  width: 100%;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-question .faq-icon {
  width: 28px;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 1.2rem;
  color: var(--gold);
}

.faq-item.open .faq-question .faq-icon {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  color: var(--gray-600);
  font-size: .92rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ===== DOWNLOAD CARD ===== */
.download-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--white);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-md);
  transition: var(--transition);
  margin-top: 24px;
}

.download-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.download-card .dl-icon {
  width: 56px;
  min-width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-card .dl-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.download-card .dl-info h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.download-card .dl-info p {
  color: var(--gray-600);
  font-size: .82rem;
  margin: 0;
}

.download-card .btn {
  margin-left: auto;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .download-card {
    flex-direction: column;
    text-align: center;
  }

  .download-card .btn {
    margin-left: 0;
  }
}

/* ===== LEADERSHIP MESSAGE ===== */
.leadership-card {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  padding: 48px 48px 48px 0;
}

.leadership-photo-col {
  background: linear-gradient(160deg, var(--navy), var(--navy-mid));
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 28px;
  gap: 20px;
  border-radius: 0 0 0 0;
  min-height: 100%;
  position: relative;
}

.leadership-photo-col::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
}

.leadership-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid var(--gold);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  flex-shrink: 0;
}

.leadership-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.leadership-id {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.leadership-id strong {
  color: var(--white);
  font-size: 1.05rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}

.leadership-id span {
  color: var(--gold);
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.leadership-company {
  color: rgba(255,255,255,.55) !important;
  font-size: .78rem !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.leadership-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 8px;
}

.leadership-pull-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
  line-height: 1.7;
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  background: rgba(201, 168, 76, .05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.leadership-body-text p {
  color: var(--gray-600);
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.leadership-body-text p:last-child {
  margin-bottom: 0;
}

.leadership-commitment-title {
  font-weight: 700 !important;
  color: var(--navy) !important;
}

.leadership-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.leadership-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-600);
  font-size: .92rem;
}

.leadership-list li::before {
  content: '';
  width: 8px;
  min-width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.leadership-signature {
  margin-top: 8px;
}

.sig-line {
  width: 80px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 12px;
}

.leadership-signature p {
  color: var(--navy);
  font-size: .95rem;
  line-height: 1.6;
}

.leadership-signature em {
  color: var(--gray-600);
  font-size: .88rem;
}

/* Leadership Tabs */
.leadership-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.ltab-btn {
  padding: 12px 28px;
  border: 2px solid var(--gray-100);
  background: var(--white);
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .3px;
}

.ltab-btn:hover {
  border-color: var(--gold);
  color: var(--navy);
}

.ltab-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--gold);
  box-shadow: var(--shadow-md);
}

/* Team avatar — wide landscape to show full group photo without cropping */
.leadership-avatar--team {
  border-radius: 8px !important;
  width: 100% !important;
  height: auto !important;
  border: 2px solid var(--gold) !important;
  background: rgba(0, 0, 0, 0.2) !important;
  overflow: hidden;
}

.leadership-avatar--team img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  display: block;
}

@media (max-width: 1024px) {
  .leadership-card {
    grid-template-columns: 220px 1fr;
    gap: 40px;
    padding-right: 36px;
  }
}

@media (max-width: 768px) {
  .leadership-card {
    grid-template-columns: 1fr;
    padding: 0 0 36px 0;
    gap: 0;
  }

  .leadership-photo-col {
    padding: 40px 28px;
    border-radius: 0;
    min-height: auto;
  }

  .leadership-photo-col::after {
    display: none;
  }

  .leadership-content {
    padding: 32px 24px 0;
  }
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

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

@media (max-width: 768px) {

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

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-content {
    padding: 0;
  }

  .hero-stats {
    gap: 16px;
  }

  .hero-stat h3 {
    font-size: 1.6rem;
  }

  .section {
    padding: 64px 0;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }

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

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

  .btn {
    padding: 12px 24px;
    font-size: .85rem;
  }

  .form-card {
    padding: 28px 20px;
  }
}