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

:root {
  --navy: #1a1f2e;
  --navy-dark: #11151f;
  --navy-mid: #222840;
  --gold: #b8962e;
  --gold-light: #d4ae4a;
  --gold-dark: #9a7a20;
  --rust: #cc0000;
  --rust-light: #e00000;
  --white: #ffffff;
  --gray: #f5f5f5;
  --gray-mid: #e0e0e0;
  --gray-dark: #666;
  --text: #1a1f2e;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-placeholder {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--navy);
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
  padding: 4px;
}

.nav-brand {
  color: var(--white);
}

.nav-brand .name {
  font-family: Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.nav-brand .sub {
  font-size: 0.65rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.82rem;
  padding: 6px 10px;
  border-radius: 4px;
  transition: 0.2s;
  white-space: nowrap;
}

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

.nav-cta {
  background: var(--rust) !important;
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 8px 16px !important;
  border-radius: 4px !important;
}

.nav-cta:hover {
  background: var(--rust-light) !important;
}

.nav-cta-gold {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

.nav-cta-gold:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}

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

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--navy-dark);
  z-index: 998;
  padding: 16px 24px;
  border-bottom: 2px solid var(--gold);
}

.mobile-menu a {
  display: block;
  color: var(--white);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.mobile-menu a:last-child {
  border: none;
}

.mobile-menu .m-cta {
  color: var(--gold) !important;
  font-weight: 700;
}

.mobile-menu .m-cta-gold {
  color: var(--gold-light) !important;
  font-weight: 700;
}

.hero {
  margin-top: 70px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 60%, #1a3a6b 100%);
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.veteran-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 24px;
}

.veteran-badge i {
  color: var(--gold);
  font-size: 16px;
}

.veteran-badge span {
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
  margin-bottom: 32px;
}

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

.btn-primary {
  background: var(--rust);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.2s;
  display: inline-block;
  border: 2px solid var(--rust);
}

.btn-primary:hover {
  background: var(--rust-light);
  border-color: var(--rust-light);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: 0.2s;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.hero-img-box {
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid var(--gold);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--navy-dark);
}

.hero-slider::before,
.hero-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 18%;
  pointer-events: none;
}

.hero-slider::before {
  left: 0;
  background: linear-gradient(90deg, rgba(17, 21, 31, 0.38), transparent);
}

.hero-slider::after {
  right: 0;
  background: linear-gradient(270deg, rgba(17, 21, 31, 0.38), transparent);
}

.hero-slider-track {
  height: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  width: 100%;
  animation: heroSlider 28s linear infinite;
}

.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slider:hover .hero-slider-track {
  animation-play-state: paused;
}

.hero-trust {
  margin-top: 16px;
  background: var(--white);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.trust-item {
  text-align: center;
  flex: 1;
}

.trust-item i {
  font-size: 22px;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}

.trust-item .t-label {
  font-size: 0.68rem;
  color: var(--gray-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.img-placeholder {
  width: 100%;
  background: linear-gradient(135deg, #1e3d6b, #2a5298);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  text-align: center;
  gap: 8px;
}

.img-placeholder i {
  font-size: 48px;
  opacity: 0.3;
}

.gold-divider {
  height: 4px;
  background: linear-gradient(90deg,
      var(--gold-dark),
      var(--gold),
      var(--gold-light),
      var(--gold),
      var(--gold-dark));
  opacity: 0.3;
}

@keyframes heroSlider {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-400%);
  }
}

section {
  padding: 80px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-family: Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray-dark);
  max-width: 620px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 48px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-sub {
  margin: 0 auto;
}

.services-bg {
  background: var(--gray);
}

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

.service-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  transition: 0.3s;
  border-bottom: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-bottom-color: var(--gold);
}

.service-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.service-img i {
  font-size: 52px;
  color: rgba(255, 255, 255, 0.55);
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-img .s-label {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.63rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.service-body {
  padding: 20px;
}

.service-body h3 {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-body p {
  font-size: 0.84rem;
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: 14px;
}

.service-body ul {
  list-style: none;
  padding: 0;
}

.service-body ul li {
  font-size: 0.8rem;
  color: var(--gray-dark);
  padding: 3px 0 3px 18px;
  position: relative;
}

.service-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.82rem;
  margin-top: 14px;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}

.service-link i {
  font-size: 14px;
}

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

.why-card {
  padding: 28px;
  border-radius: 10px;
  border: 1px solid var(--gray-mid);
  text-align: center;
  transition: 0.2s;
}

.why-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.15);
}

.why-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.why-icon-wrap i {
  font-size: 26px;
  color: var(--gold-dark);
}

.why-card h3 {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.84rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

.access-bg {
  background: var(--navy);
}

.access-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.access-content .section-title {
  color: var(--white);
}

.access-content .section-sub {
  color: rgba(255, 255, 255, 0.75);
}

.access-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.access-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 12px;
  border-left: 3px solid var(--gold);
}

.access-item i {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 1px;
}

.access-item h4 {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.access-item p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.access-cta {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-gold {
  background: #cc0000;
  color: var(--white);
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.2s;
  border: 2px solid #cc0000;
  display: inline-block;
}

.btn-gold:hover {
  background: #e00000;
  border-color: #e00000;
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: 0.2s;
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: inline-block;
}

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

.investor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.inv-card {
  border: 2px solid var(--gray-mid);
  border-radius: 10px;
  padding: 28px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.inv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: 0.3s;
  transform-origin: left;
}

.inv-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.15);
}

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

.inv-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(10, 31, 68, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.inv-icon-wrap i {
  font-size: 24px;
  color: var(--navy);
}

.inv-card h3 {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.inv-card p {
  font-size: 0.84rem;
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: 14px;
}

.inv-card ul {
  list-style: none;
  padding: 0;
}

.inv-card ul li {
  font-size: 0.8rem;
  color: var(--gray-dark);
  padding: 3px 0 3px 16px;
  position: relative;
}

.inv-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.investor-cta-bar {
  margin-top: 48px;
  background: var(--navy);
  border-radius: 12px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  border: 2px solid rgba(201, 168, 76, 0.3);
}

.investor-cta-bar h3 {
  font-family: Georgia, serif;
  font-size: 1.4rem;
  color: var(--white);
}

.investor-cta-bar p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin-top: 4px;
}

.portfolio-bg {
  background: var(--gray);
}

.filter-btn {
  background: var(--white);
  border: 2px solid var(--gray-mid);
  border-radius: 20px;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  transition: 0.2s;
  font-family: "Segoe UI", Arial, sans-serif;
}

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

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

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.portfolio-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.portfolio-card.hidden {
  display: none;
}

.portfolio-imgs {
  position: relative;
  display: flex;
  height: 200px;
  overflow: hidden;
}

.showcase-half {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.showcase-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .showcase-half img {
  transform: scale(1.05);
}

.sc-split {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  transform: translateX(-50%);
  width: 2px;
  background: linear-gradient(to bottom,
      rgba(184, 149, 63, 0) 0%,
      rgba(184, 149, 63, 0.85) 20%,
      rgba(184, 149, 63, 0.85) 80%,
      rgba(184, 149, 63, 0) 100%);
  z-index: 3;
}

.sc-split-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
  box-shadow: 0 2px 12px rgba(184, 149, 63, 0.5);
}

.sc-tag {
  position: absolute;
  bottom: 10px;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  z-index: 2;
}

.sc-before {
  left: 10px;
  background: rgba(11, 31, 58, 0.82);
  color: rgba(255, 255, 255, 0.95);
}

.sc-after {
  right: 10px;
  background: rgba(184, 149, 63, 0.9);
  color: var(--white);
}

.portfolio-info {
  padding: 20px;
}

.portfolio-info h3 {
  font-family: Georgia, serif;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.portfolio-meta {
  display: flex;
  gap: 14px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.p-meta-item {
  font-size: 0.75rem;
  color: var(--gray-dark);
  display: flex;
  align-items: center;
  gap: 4px;
}

.p-meta-item i {
  font-size: 14px;
  color: var(--gold-dark);
}

.portfolio-info p {
  font-size: 0.82rem;
  color: var(--gray-dark);
  line-height: 1.6;
}

.portfolio-cta {
  margin-top: 40px;
  text-align: center;
}

.testimonials-bg {
  background: var(--navy);
}

.testimonials-bg .section-title {
  color: var(--white);
}

.testimonials-bg .section-sub {
  color: rgba(255, 255, 255, 0.7);
}

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

.testi-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 10px;
  padding: 28px;
}

.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.stars i {
  font-size: 16px;
  color: var(--gold);
}

.testi-card blockquote {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.author-info .name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.88rem;
}

.author-info .loc {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.google-badge {
  margin-top: 40px;
  text-align: center;
}

.google-badge span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 8px 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.google-badge i {
  font-size: 16px;
  color: var(--gold);
}

.faq-bg {
  background: var(--gray);
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 0;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
}

.faq-card summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  color: var(--navy);
  font-weight: 700;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  content: "+";
  color: var(--gold-dark);
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}

.faq-card[open] summary::after {
  content: "-";
}

.faq-card p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--gray-dark);
  font-size: 0.9rem;
  line-height: 1.7;
}

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

.about-values {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-val {
  background: var(--gray);
  border-radius: 6px;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.about-val i {
  font-size: 20px;
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 1px;
}

.about-val h4 {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}

.about-val p {
  font-size: 0.77rem;
  color: var(--gray-dark);
  line-height: 1.5;
}

.areas-bg {
  background: var(--gray);
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.area-pill {
  background: var(--white);
  border: 2px solid var(--gray-mid);
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 0.84rem;
  color: var(--navy);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.2s;
}

.area-pill:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
}

.area-pill i {
  font-size: 15px;
  color: var(--gold-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}

.contact-info h3 {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info>p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.c-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.c-icon {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.c-icon i {
  font-size: 18px;
  color: var(--gold);
}

.c-text .label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-dark);
}

.c-text .val {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 600;
  margin-top: 2px;
}

.vet-badge-large {
  background: var(--navy);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 2px solid var(--gold);
}

.vet-badge-large i {
  font-size: 32px;
  color: var(--gold);
  flex-shrink: 0;
}

.vet-badge-large h4 {
  color: var(--white);
  font-weight: 700;
  font-size: 0.95rem;
}

.vet-badge-large p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  margin-top: 3px;
}

.contact-form {
  background: var(--gray);
  border-radius: 12px;
  padding: 36px;
  border: 1px solid var(--gray-mid);
}

.contact-form h3 {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 24px;
}

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

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid var(--gray-mid);
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  transition: 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
}

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

.form-submit {
  margin-top: 8px;
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  font-family: "Segoe UI", Arial, sans-serif;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit i {
  font-size: 18px;
}

.form-submit:hover {
  background: var(--navy-mid);
}

.form-note {
  font-size: 0.75rem;
  color: var(--gray-dark);
  margin-top: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.form-note i {
  font-size: 14px;
  color: var(--gold-dark);
}

footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 60px 24px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .f-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-brand .logo-placeholder {
  width: 40px;
  height: 40px;
  font-size: 9px;
}

.footer-brand .brand-name {
  font-family: Georgia, serif;
  font-size: 0.95rem;
  color: var(--white);
}

.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-brand .tagline-badge {
  color: var(--gold-light);
  font-style: italic;
  font-size: 0.8rem;
  border-left: 2px solid var(--gold);
  padding-left: 10px;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.82rem;
  transition: 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-vet {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 0.72rem;
  color: var(--gold-light);
}

.footer-vet i {
  font-size: 14px;
}

.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 997;
  background: var(--navy-dark);
  border-top: 3px solid var(--gold);
  padding: 10px 20px;
  display: none;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.sticky-bar p {
  color: var(--white);
  font-size: 0.85rem;
  flex: 1;
}

.sticky-bar p strong {
  color: var(--gold);
}

.sticky-bar-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.sticky-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #cc0000;
  color: var(--white);
  padding: 9px 16px;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.sticky-btn i {
  font-size: 16px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    align-items: flex-start;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 24px;
    gap: 28px;
  }

  .hero-btns {
    flex-wrap: nowrap;
  }

  .hero-btns .btn-primary,
  .hero-btns .btn-secondary {
    flex: 1 1 0;
    text-align: center;
    padding: 12px 16px;
  }

  .hero-content {
    order: 1;
  }

  .hero-image {
    order: 2;
    width: 100%;
  }

  .hero-img-box {
    height: min(420px, 68vw);
  }

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

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

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

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

  .access-list {
    grid-template-columns: 1fr;
  }

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

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

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

  .investor-cta-bar {
    flex-direction: column;
    text-align: center;
  }

  .sticky-bar {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider-track {
    animation: none;
    transform: translateX(0);
  }
}

@media (max-width: 480px) {
  .hero-inner {
    padding: 32px 20px 64px;
    gap: 24px;
  }

  .hero-btns {
    gap: 8px;
  }

  .hero-btns .btn-primary,
  .hero-btns .btn-secondary {
    padding: 11px 8px;
    font-size: 0.82rem;
  }

  .hero-img-box {
    height: 300px;
  }

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

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