/* ============================================
   ABBS PU College — Premium Theme
   Palette: Deep Navy + Gold Accent + Ivory
   ============================================ */
:root {
  --navy: #0b1f3a;
  --navy-2: #14315a;
  --navy-deep: #06142a;
  --gold: #c9a961;
  --gold-2: #b8954a;
  --gold-light: #e8d8a8;
  --ivory: #faf7f2;
  --cream: #f4ede0;
  --ink: #1a2230;
  --muted: #5a6478;
  --line: #e6dfd1;
  --shadow-sm: 0 2px 12px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 8px 30px rgba(11, 31, 58, 0.10);
  --shadow-lg: 0 20px 60px rgba(11, 31, 58, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-2); text-decoration: none; transition: all .3s ease; }
a:hover { color: var(--navy); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
h1 { font-size: 52px; font-weight: 800; }
h2 { font-size: 40px; }
h3 { font-size: 26px; }
h4 { font-size: 20px; }
h5 { font-size: 17px; }
p  { margin-bottom: 16px; color: #3a4456; }
ul { margin: 0 0 16px 22px; }
ul li { margin-bottom: 6px; }
strong { color: var(--navy); font-weight: 600; }
em { color: var(--gold-2); font-style: normal; font-weight: 500; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ============ TOPBAR ============ */
.topbar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(201, 169, 97, 0.12);
  height: 42px;
  display: flex;
  align-items: center;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.topbar a { color: rgba(255, 255, 255, 0.85); }
.topbar a:hover { color: var(--gold); }
.topbar .info { display: flex; align-items: center; gap: 24px; }
.topbar .info span {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.topbar .info i {
  margin-right: 8px;
  color: var(--gold);
  font-size: 11px;
}
.topbar .info .addr { color: rgba(255, 255, 255, 0.55); }
.topbar .social-wrap { display: flex; align-items: center; }
.topbar .social { display: inline-flex; align-items: center; }
.topbar .social a {
  margin-left: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  transition: color .25s ease;
}
.topbar .social a:hover { color: var(--gold); }
.topbar .topbar-cta {
  margin-left: 20px;
  padding: 6px 18px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all .25s ease;
}
.topbar .topbar-cta:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ============ HEADER ============ */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 0 rgba(11, 31, 58, 0.04);
  transition: all .3s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(11, 31, 58, 0.08);
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 28px;
  gap: 20px;
}
.logo { flex-shrink: 0; }
.logo img {
  max-height: 58px;
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
}
.logo a { display: flex; align-items: center; }

/* Nav */
.main-nav { display: flex; align-items: center; }
.main-nav ul { list-style: none; display: flex; margin: 0; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block;
  padding: 22px 16px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  position: relative;
}
.main-nav > ul > li > a::after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all .35s cubic-bezier(.25,.46,.45,.94);
  transform: translateX(-50%);
}
.main-nav > ul > li:hover > a::after,
.main-nav > ul > li.active > a::after {
  width: 26px;
}
.main-nav > ul > li:hover > a,
.main-nav > ul > li.active > a {
  color: var(--gold-2);
}
.main-nav .has-sub > a::after {
  display: none;
}
.main-nav .has-sub > a {
  padding-right: 22px;
}
.main-nav .has-sub > a::before {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  opacity: .5;
}

.main-nav .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 250px;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--gold);
  display: none;
  list-style: none;
  margin: 0;
  padding: 12px 0;
  z-index: 100;
  border-radius: 0 0 4px 4px;
}
.main-nav li:hover > .submenu { display: block; animation: fadeDown .25s ease; }
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.main-nav .submenu li a {
  display: block;
  padding: 11px 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3px;
  border-left: 2px solid transparent;
}
.main-nav .submenu li a:hover {
  background: var(--ivory);
  color: var(--gold-2);
  border-left-color: var(--gold);
  padding-left: 26px;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--navy);
  background: none;
  border: none;
}

/* ============ HERO / SLIDER ============ */
.hero {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  background: var(--navy-deep);
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease-in-out, transform 8s ease-out;
  transform: scale(1.05);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(6, 20, 42, 0.85) 0%, rgba(11, 31, 58, 0.7) 60%, rgba(11, 31, 58, 0.55) 100%);
}
.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 640px;
  z-index: 2;
  padding: 100px 0;
}
.hero-content .container { color: #fff; max-width: 820px; }
.hero-content .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
  padding-left: 60px;
}
.hero-content .eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 46px;
  height: 1px;
  background: var(--gold);
}
.hero-content h1 {
  font-size: 60px;
  color: #fff;
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 620px;
}

.btn {
  display: inline-block;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 0;
  border: 1.5px solid var(--gold);
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
}
.btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(11, 31, 58, 0.25);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-outline:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* Hero arrows */
.hero-arrows button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: 56px; height: 56px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 3;
  transition: all .3s ease;
}
.hero-arrows .prev { left: 32px; }
.hero-arrows .next { right: 32px; }
.hero-arrows button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.hero-dots {
  position: absolute;
  bottom: 32px;
  left: 0; right: 0;
  text-align: center;
  z-index: 3;
}
.hero-dots span {
  display: inline-block;
  width: 36px; height: 3px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0 4px;
  cursor: pointer;
  transition: all .3s ease;
}
.hero-dots span.active {
  background: var(--gold);
}

/* ============ QUICK INFO STRIP ============ */
.quick-strip {
  background: #fff;
  margin-top: -60px;
  position: relative;
  z-index: 5;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--gold);
}
.quick-strip .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.quick-strip .item {
  padding: 36px 30px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid var(--line);
  position: relative;
  transition: all .3s ease;
}
.quick-strip .item:last-child { border-right: none; }
.quick-strip .item:hover { background: var(--ivory); }
.quick-strip .item .ico {
  flex-shrink: 0;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: var(--ivory);
  border: 1px solid var(--gold);
  color: var(--gold-2);
  font-size: 22px;
}
.quick-strip .item .text small {
  color: var(--gold-2);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.quick-strip .item .text strong {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--navy);
  font-weight: 700;
  display: block;
  line-height: 1.2;
}

/* ============ ORNAMENT DIVIDER ============ */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 50px;
  max-width: 240px;
}
.ornament::before, .ornament::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.ornament .diamond {
  width: 10px; height: 10px;
  margin: 0 14px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ============ NUMBERED FEATURES (Why Us) ============ */
.why-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-us-img {
  position: relative;
}
.why-us-img img {
  border-radius: 2px;
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.why-us-img .stat-card {
  position: absolute;
  bottom: -40px;
  right: -30px;
  background: var(--navy);
  color: #fff;
  padding: 30px 36px;
  text-align: center;
  border-bottom: 4px solid var(--gold);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
}
.why-us-img .stat-card .num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.why-us-img .stat-card .lbl {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 6px;
}
.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.why-list li {
  display: flex;
  gap: 22px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.why-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.why-list .num {
  flex-shrink: 0;
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
  font-style: italic;
  width: 50px;
}
.why-list h4 {
  margin-bottom: 8px;
  font-size: 22px;
  color: var(--navy);
}
.why-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

/* ============ TESTIMONIAL / PRINCIPAL MESSAGE ============ */
.principal-msg {
  background:
    linear-gradient(135deg, rgba(6, 20, 42, 0.94), rgba(11, 31, 58, 0.85)),
    url('../images/DSC_0365ec73.jpg') center/cover fixed;
  color: #fff;
  padding: 110px 0;
  position: relative;
}
.principal-msg::before {
  content: "\201C";
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-size: 200px;
  color: var(--gold);
  opacity: 0.18;
  line-height: 1;
}
.principal-msg .container {
  max-width: 880px;
  text-align: center;
  position: relative;
}
.principal-msg .quote {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 36px;
}
.principal-msg .author {
  display: inline-block;
  position: relative;
  padding-top: 22px;
}
.principal-msg .author::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 1px;
  background: var(--gold);
}
.principal-msg .author strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 4px;
}
.principal-msg .author span {
  font-size: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
}

/* ============ ENHANCED CTA WITH IMAGE ============ */
.cta-imagery {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(6, 20, 42, 0.85) 0%, rgba(11, 31, 58, 0.7) 100%),
    url('../images/home-banner3.jpg') center/cover;
  padding: 120px 0;
  color: #fff;
  text-align: center;
}
.cta-imagery::before {
  content: "";
  position: absolute;
  top: 30px; left: 30px; right: 30px; bottom: 30px;
  border: 1px solid rgba(201, 169, 97, 0.3);
  pointer-events: none;
}
.cta-imagery .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  padding: 0 60px;
  position: relative;
}
.cta-imagery .eyebrow::before, .cta-imagery .eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px; height: 1px;
  background: var(--gold);
}
.cta-imagery .eyebrow::before { left: 0; }
.cta-imagery .eyebrow::after { right: 0; }
.cta-imagery h2 {
  color: #fff;
  font-size: 48px;
  margin-bottom: 18px;
}
.cta-imagery p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ ANNOUNCEMENT BAR ============ */
.announce-bar {
  background: var(--navy);
  color: #fff;
  padding: 22px 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}
.announce-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.announce-bar .ann-list {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 300;
  letter-spacing: 0.3px;
}
.announce-bar .ann-list strong {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  margin-right: 14px;
  font-size: 15px;
}
.announce-bar .ann-list span { margin-right: 20px; }
.announce-bar .btn {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  padding: 12px 28px;
  font-size: 12px;
}
.announce-bar .btn:hover {
  background: #fff;
  border-color: #fff;
  color: var(--navy);
}

/* ============ SECTIONS ============ */
.section { padding: 110px 0; position: relative; }
.section-light { background: var(--ivory); }
.section-dark { background: var(--navy); color: #fff; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p { color: rgba(255, 255, 255, 0.8); }

.section-title {
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.section-title small {
  color: var(--gold-2);
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 500;
  font-size: 12px;
  display: block;
  margin-bottom: 16px;
  position: relative;
  padding: 0 80px;
}
.section-title small::before,
.section-title small::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px; height: 1px;
  background: var(--gold);
}
.section-title small::before { left: 0; }
.section-title small::after { right: 0; }
.section-title h2 {
  font-size: 44px;
  color: var(--navy);
  margin-bottom: 18px;
}
.section-title p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 300;
  margin: 0 auto;
  max-width: 560px;
}

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.two-col .col-img {
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.two-col .col-img::after {
  content: "";
  position: absolute;
  top: 18px; left: 18px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  z-index: -1;
  border-radius: 2px;
}
.two-col h2 small {
  color: var(--gold-2);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  display: block;
  margin-bottom: 16px;
  text-transform: uppercase;
  padding-left: 50px;
  position: relative;
}
.two-col h2 small::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 36px; height: 1px;
  background: var(--gold);
}
.two-col h2 {
  font-size: 42px;
  margin-bottom: 24px;
  line-height: 1.2;
}

/* Feature boxes / courses */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.feature-box {
  background: #fff;
  padding: 44px 32px;
  text-align: center;
  border: 1px solid var(--line);
  transition: all .4s cubic-bezier(.25,.46,.45,.94);
  position: relative;
  overflow: hidden;
}
.feature-box::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}
.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-box:hover::before { transform: scaleX(1); }
.feature-box .icon {
  width: 80px; height: 80px;
  border: 1px solid var(--gold);
  background: var(--ivory);
  color: var(--gold-2);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all .35s ease;
  position: relative;
}
.feature-box:hover .icon {
  background: var(--gold);
  color: #fff;
  transform: rotate(360deg);
}
.feature-box h3 {
  font-size: 21px;
  margin-bottom: 12px;
  color: var(--navy);
}
.feature-box p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* Course cards — premium */
.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.course-card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all .4s ease;
  position: relative;
}
.course-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.course-card .head {
  background: var(--navy);
  color: #fff;
  padding: 50px 28px 38px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.course-card .head::before {
  content: "";
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
}
.course-card .head h3 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 6px;
  font-weight: 700;
  letter-spacing: 2px;
  position: relative;
}
.course-card .head p {
  color: var(--gold);
  margin: 0;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  position: relative;
}
.course-card .body { padding: 32px 28px; }
.course-card .body p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
}
.course-card .body strong {
  display: block;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-weight: 600;
}

/* Stats */
.stats {
  background: var(--navy-deep);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 169, 97, 0.08) 0%, transparent 70%);
}
.stats .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
  position: relative;
}
.stats .grid > div {
  position: relative;
  padding: 0 20px;
}
.stats .grid > div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 60%;
  background: rgba(201, 169, 97, 0.2);
}
.stats .num {
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}
.stats .lbl {
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Page banner */
.page-banner {
  background:
    linear-gradient(135deg, rgba(6, 20, 42, 0.92), rgba(11, 31, 58, 0.85)),
    url('../images/main-02.jpg') center/cover;
  color: #fff;
  padding: 110px 0 90px;
  text-align: center;
  position: relative;
}
.page-banner::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.page-banner h1 {
  color: #fff;
  font-size: 56px;
  margin-bottom: 14px;
  font-weight: 700;
}
.page-banner .crumbs {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.page-banner .crumbs a {
  color: var(--gold);
  position: relative;
}
.page-banner .crumbs a:hover { color: #fff; }

/* Content blocks */
.content-block { margin-bottom: 50px; }
.content-block h2 {
  color: var(--navy);
  font-size: 36px;
  position: relative;
  padding-bottom: 18px;
  margin-bottom: 24px;
}
.content-block h2::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 60px; height: 2px;
  background: var(--gold);
}
.content-block h3 {
  color: var(--navy);
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 14px;
}
.content-block p { color: #45506b; line-height: 1.85; }
.content-block ul { padding-left: 22px; }
.content-block ul li {
  margin-bottom: 10px;
  color: #45506b;
}
.content-block ul li::marker { color: var(--gold); }

/* Sidebar layout */
.with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
}
.sidebar {
  background: var(--ivory);
  padding: 32px 28px;
  border-radius: 2px;
  align-self: start;
  border-top: 3px solid var(--gold);
  position: sticky;
  top: 110px;
}
.sidebar h3 {
  font-size: 20px;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
}
.sidebar ul {
  list-style: none;
  margin: 0;
}
.sidebar ul li a {
  display: block;
  padding: 12px 0;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  position: relative;
  padding-left: 18px;
  transition: all .25s ease;
}
.sidebar ul li a::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
  transition: transform .25s ease;
}
.sidebar ul li:last-child a { border-bottom: none; }
.sidebar ul li a:hover {
  color: var(--gold-2);
  padding-left: 24px;
}
.sidebar ul li a:hover::before { transform: translateX(4px); }

/* Forms */
.form-group { margin-bottom: 20px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  transition: all .25s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #98a3b8; }

/* Contact info cards */
.contact-info {
  background: #fff;
  padding: 32px;
  margin-bottom: 22px;
  border: 1px solid var(--line);
  transition: all .35s ease;
  border-left: 3px solid var(--gold);
}
.contact-info:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.contact-info h3 {
  color: var(--navy);
  font-size: 20px;
  margin-bottom: 14px;
}
.contact-info i { color: var(--gold-2); width: 28px; }
.contact-row {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  align-items: flex-start;
  color: #45506b;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.gallery-grid .item {
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--navy);
  cursor: pointer;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
}
.gallery-grid .item:hover img { transform: scale(1.1); }
.gallery-grid .item::after {
  content: "\f067";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 31, 58, 0);
  color: rgba(255, 255, 255, 0);
  transition: all .4s ease;
  font-size: 20px;
}
.gallery-grid .item:hover::after {
  background: rgba(11, 31, 58, 0.5);
  color: var(--gold);
  font-size: 28px;
}

/* Blog cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.blog-card {
  background: #fff;
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all .4s ease;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.blog-card .img {
  height: 240px;
  background: #eee center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.blog-card .img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 31, 58, 0.4) 100%);
}
.blog-card .body { padding: 30px 28px; }
.blog-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-card .meta {
  font-size: 11px;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}
.blog-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.blog-card a.read-more {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-2);
  position: relative;
  padding-bottom: 4px;
}
.blog-card a.read-more::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.blog-card a.read-more:hover::after { transform: scaleX(1); }

/* CTA Block */
.cta-block {
  background: var(--navy);
  color: #fff;
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%);
}
.cta-block .container { position: relative; }
.cta-block h2 {
  color: #fff;
  font-size: 42px;
  margin-bottom: 18px;
}
.cta-block p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 17px;
  margin-bottom: 32px;
  font-weight: 300;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 90px 0 0;
  font-size: 14px;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
}
.site-footer .grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 60px;
}
.site-footer h4 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 14px;
}
.site-footer h4::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 1px;
  background: var(--gold);
}
.site-footer p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.85;
  font-size: 14px;
}
.site-footer ul { list-style: none; margin: 0; }
.site-footer ul li { margin-bottom: 12px; }
.site-footer ul li a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  position: relative;
  padding-left: 16px;
  transition: all .25s ease;
}
.site-footer ul li a::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
  transition: transform .25s ease;
}
.site-footer ul li a:hover {
  color: var(--gold);
  padding-left: 22px;
}
.site-footer ul li a:hover::before { transform: translateX(4px); }
.site-footer .contact-row {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
}
.site-footer .contact-row i {
  color: var(--gold);
  margin-right: 10px;
  margin-top: 4px;
}
.copyright {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  letter-spacing: 0.5px;
}
.copyright .gold-divider {
  color: var(--gold);
  margin: 0 8px;
}
.social-links a {
  display: inline-flex;
  width: 38px; height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 13px;
  transition: all .3s ease;
}
.social-links a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-3px);
}

/* ============ FAQ (AEO) ============ */
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  margin-bottom: 14px;
  transition: all .25s ease;
}
.faq-item[open] {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 32px; height: 32px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 300;
  transition: all .25s ease;
}
.faq-item[open] summary::after {
  content: "−";
  background: var(--gold);
  color: #fff;
  transform: rotate(180deg);
}
.faq-item .answer {
  padding: 0 28px 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

/* ============ CRO: STICKY MOBILE CTA ============ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 998;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  padding: 10px 14px;
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.2);
}
.sticky-cta .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.sticky-cta a {
  padding: 12px 8px;
  text-align: center;
  color: var(--navy);
  background: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.sticky-cta a.ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.sticky-cta a:hover { background: #fff; color: var(--navy); }
.sticky-cta a.ghost:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ============ CRO: TRUST BADGES ============ */
.trust-row {
  background: var(--ivory);
  padding: 36px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-row .grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
}
.trust-row .item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}
.trust-row .item i {
  color: var(--gold);
  font-size: 22px;
}
.trust-row .item strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  font-family: 'Playfair Display', serif;
}

/* Float buttons */
.float-cta {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.float-cta a {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transition: all .3s ease;
}
.float-cta a.call {
  background: var(--gold);
  color: var(--navy);
}
.float-cta a:hover {
  transform: translateY(-4px) scale(1.05);
}

/* ============ RESPONSIVE ============ */
/* Responsive */
@media (max-width: 1024px) {
  .quick-strip { margin-top: 0; }
  .quick-strip .grid { grid-template-columns: 1fr; }
  .quick-strip .item { border-right: none; border-bottom: 1px solid var(--line); }
  .quick-strip .item:last-child { border-bottom: none; }
  .why-us { grid-template-columns: 1fr; gap: 60px; }
  .why-us-img .stat-card { right: 20px; bottom: -30px; min-width: 180px; padding: 22px 28px; }
  .why-us-img .stat-card .num { font-size: 44px; }
  .principal-msg { padding: 80px 0; }
  .principal-msg .quote { font-size: 22px; }
  .cta-imagery { padding: 80px 0; }
  .cta-imagery h2 { font-size: 34px; }
}
@media (max-width: 1024px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    display: none;
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
  .main-nav.open { display: block; }
  .main-nav > ul { flex-direction: column; }
  .main-nav > ul > li > a {
    padding: 16px 28px;
    border-bottom: 1px solid var(--line);
  }
  .main-nav > ul > li > a::after { display: none; }
  .main-nav .has-sub > a::before { right: 30px; }
  .main-nav .submenu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 8px 0 8px 28px;
    display: block;
    border-top: none;
  }
  .main-nav .submenu li a {
    padding: 10px 28px;
    color: var(--muted);
  }
  .hero, .hero-content { min-height: 540px; }
  .hero-content { padding: 80px 0; }
  .hero-content h1 { font-size: 36px; }
  .hero-content p { font-size: 16px; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col h2 { font-size: 32px; }
  .with-sidebar { grid-template-columns: 1fr; gap: 40px; }
  .sidebar { position: static; }
  .site-footer .grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  h1 { font-size: 38px; }
  h2 { font-size: 32px; }
  .section { padding: 80px 0; }
  .section-title h2 { font-size: 32px; }
  .page-banner { padding: 80px 0 60px; }
  .page-banner h1 { font-size: 40px; }
  .stats .grid > div::after { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .container { padding: 0 20px; }
  .topbar { height: auto; padding: 8px 0; }
  .topbar .container { flex-wrap: wrap; gap: 6px; justify-content: center; }
  .topbar .info { gap: 14px; font-size: 12px; }
  .topbar .info .addr { display: none; }
  .topbar .social a { margin-left: 8px; }
  .topbar .topbar-cta { display: none; }
  .site-header .container { padding: 14px 20px; }
  .logo img { max-height: 50px; }
  .hero, .hero-content { min-height: 520px; }
  .hero-content { padding: 70px 0; }
  .hero-content h1 { font-size: 28px; line-height: 1.2; }
  .hero-content .eyebrow { font-size: 11px; padding-left: 40px; }
  .hero-content .eyebrow::before { width: 28px; }
  .hero-arrows button { width: 42px; height: 42px; }
  .hero-arrows .prev { left: 14px; }
  .hero-arrows .next { right: 14px; }
  .btn { padding: 14px 26px; font-size: 12px; }
  .section { padding: 60px 0; }
  .section-title { margin-bottom: 40px; }
  .section-title h2 { font-size: 26px; }
  .section-title small { padding: 0 40px; letter-spacing: 3px; }
  .section-title small::before, .section-title small::after { width: 28px; }
  h1 { font-size: 28px; }
  h2 { font-size: 26px; }
  h3 { font-size: 21px; }
  .stats .num { font-size: 42px; }
  .site-footer .grid { grid-template-columns: 1fr; }
  .page-banner h1 { font-size: 32px; }
  .two-col h2 { font-size: 26px; }
  .announce-bar .container { flex-direction: column; text-align: center; }
  .sticky-cta { display: block; }
  body { padding-bottom: 76px; }
  .float-cta { bottom: 84px; }
  .trust-row .grid { flex-direction: column; gap: 22px; }
}
