/* ============================================================
   about.css — About Page Styles
   Inherits global variables & base from style.css
   ============================================================ */

:root {
  --gold: #C9973A;
  --gold-light: #E8B25C;
  --primary: #0D1B2A;
  --cream: #F5F0E8;
}

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

body {
  font-family: "DM Sans", sans-serif;
  background: #F9F7F4;
  color: #1a1a1a;
  overflow-x: hidden;
}

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: all 0.3s ease;
  opacity: 0.6;
}

/* ── PROGRESS BAR ── */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-light));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: all 0.5s ease;
  background: rgba(13,27,42,0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,151,58,0.3), transparent);
}
.site-header.scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
  height: 68px;
}

.logo-wrap { display: flex; align-items: center; gap: 14px; }
.logo-wrap img { height: 60px; transition: all 0.4s; }
.site-header.scrolled .logo-wrap img { height: 42px; }
.logo-text {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  color: white;
  text-transform: uppercase;
}

.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.nav-active { color: var(--gold-light); }
.nav-links a:hover::after,
.nav-links a.nav-active::after { width: 100%; }
.nav-cta {
  background: var(--gold);
  color: var(--primary) !important;
  padding: 9px 22px;
  border-radius: 4px;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
}
.nav-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201,151,58,0.5);
}
.nav-cta::after { display: none !important; }

.mobile-btn {
  display: none;
  background: none;
  border: 1px solid rgba(201,151,58,0.5);
  color: white;
  width: 40px; height: 40px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.2rem;
  align-items: center;
  justify-content: center;
}
@media(max-width: 768px) {
  .nav-links { display: none; }
  .mobile-btn { display: flex; }
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: var(--primary);
  z-index: 200;
  padding: 6rem 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  border-left: 1px solid rgba(201,151,58,0.2);
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.3s, padding-left 0.3s;
}
.mobile-menu a:hover { color: var(--gold); padding-left: 8px; }
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-overlay.show { opacity: 1; pointer-events: all; }
.close-menu {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  height: 72vh;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: url('assets/images/about/hero.png') center center / cover no-repeat;
}
/* Fallback if about hero image missing */
.page-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0D1B2A 0%, #1a3050 100%);
  z-index: -1;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,27,42,0.90) 0%,
    rgba(13,27,42,0.65) 50%,
    rgba(13,27,42,0.5) 100%
  );
}

/* Breadcrumb */
.page-hero-breadcrumb {
  position: absolute;
  top: 100px;
  left: clamp(1.5rem, 5vw, 5rem);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  z-index: 10;
}
.page-hero-breadcrumb a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-hero-breadcrumb span:last-child { color: var(--gold); }
@media(max-width: 768px) { .page-hero-breadcrumb { top: 88px; } }

.page-hero-content {
  position: relative;
  z-index: 10;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  max-width: 800px;
  padding-top: 80px; /* clear fixed header */
}
@media(min-width: 768px) {
  .page-hero-content { padding-top: 0; }
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}
.page-hero-tag::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
}
@media(max-width: 767px) { .page-hero-tag { display: none; } }

.page-hero-h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: white;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}
.page-hero-h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.page-hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  right: 2.5rem;
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  color: rgba(255,255,255,0.45);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.4; }
}
@media(max-width: 768px) { .scroll-hint { display: none; } }

/* ── SECTION BASE ── */
.section { padding: 6rem clamp(1.5rem, 5vw, 5rem); }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-tag::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
}
.section-h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--primary);
}
.section-h2 em { font-style: italic; color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── STORY SECTION ── */
.story-section { background: white; }
.story-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media(max-width: 768px) {
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.story-img-wrap { position: relative; }
.story-img-main {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.story-img-badge {
  position: absolute;
  top: 1.5rem;
  left: -1.5rem;
  background: white;
  padding: 1rem;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  border-left: 3px solid var(--gold);
}
.story-img-badge img { height: 80px; display: block; }
.story-img-accent {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 60px; height: 60px;
  border: 2px solid var(--gold);
  border-radius: 4px;
  opacity: 0.4;
}
@media(max-width: 768px) {
  .story-img-badge { left: 0.5rem; }
  .story-img-accent { display: none; }
}

.story-text p {
  color: #555;
  line-height: 1.85;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.story-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,151,58,0.2);
}
.story-highlight { text-align: center; }
.sh-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.sh-label {
  font-size: 0.68rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
  line-height: 1.4;
}

/* ── STATS BAR ── */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--primary);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.stat-item {
  padding: 2rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
  transition: background 0.35s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(201,151,58,0.06); }
.stat-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 2.5rem; right: 2.5rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.stat-item:hover::after { transform: scaleX(1); }
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 6px;
}
@media(max-width: 640px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 1.4rem 1.5rem; }
}

/* ── MISSION / VISION / VALUES ── */
.mvv-section { background: var(--primary); }
.mvv-inner { max-width: 1200px; margin: 0 auto; }
.mvv-header { margin-bottom: 4rem; }
.mvv-header .section-h2 { color: white; text-align: center; }

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  overflow: hidden;
}
@media(max-width: 900px) { .mvv-grid { grid-template-columns: 1fr; gap: 1.5px; } }

.mvv-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,151,58,0.12);
  padding: 3rem 2.5rem;
  position: relative;
  transition: all 0.4s ease;
  cursor: default;
}
.mvv-card:hover {
  background: rgba(201,151,58,0.07);
  border-color: rgba(201,151,58,0.35);
  transform: translateY(-4px);
}
.mvv-card--dark {
  background: rgba(201,151,58,0.06);
  border-color: rgba(201,151,58,0.25);
}

.mvv-icon {
  width: 52px; height: 52px;
  border: 1px solid rgba(201,151,58,0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition: all 0.35s;
}
.mvv-card:hover .mvv-icon {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
}

.mvv-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201,151,58,0.15);
  line-height: 1;
  position: absolute;
  top: 1.5rem; right: 2rem;
  transition: color 0.4s;
}
.mvv-card:hover .mvv-num { color: rgba(201,151,58,0.3); }

.mvv-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}
.mvv-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.85;
}

/* ── LEADERSHIP ── */
.leadership-section { background: var(--cream); position: relative; overflow: hidden; }
.leadership-section::before {
  content: 'TEAM';
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  font-family: "Cormorant Garamond", serif;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(201,151,58,0.06);
  pointer-events: none;
  white-space: nowrap;
}
.leadership-inner { max-width: 1000px; margin: 0 auto; }
.leadership-header { margin-bottom: 4rem; }
.leadership-sub {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 520px;
  margin-top: 1rem;
}

.leadership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
@media(max-width: 680px) {
  .leadership-grid { grid-template-columns: 1fr; }
}

.leader-card {
  background: white;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(201,151,58,0.1);
  transition: all 0.4s ease;
}
.leader-card:hover {
  border-color: rgba(201,151,58,0.35);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.leader-img-wrap { position: relative; overflow: hidden; }
.leader-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.6s ease;
}
.leader-card:hover .leader-img { transform: scale(1.04); }
.leader-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: var(--gold);
  color: var(--primary);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 6px 12px;
  border-radius: 3px;
  text-transform: uppercase;
}

.leader-info { padding: 2rem; }
.leader-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}
.leader-role {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.leader-bio {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.75;
}

/* ── WHY US (reused from index) ── */
.whyus-section {
  background: #F9F7F4;
  position: relative;
  overflow: hidden;
}
.whyus-section::before {
  content: 'EXCELLENCE';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: "Cormorant Garamond", serif;
  font-size: 8rem;
  font-weight: 700;
  color: rgba(201,151,58,0.05);
  pointer-events: none;
  white-space: nowrap;
}
.whyus-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}
@media(max-width: 768px) {
  .whyus-inner { grid-template-columns: 1fr; gap: 3rem; }
}
.feature-list { display: flex; flex-direction: column; gap: 1.5rem; }
.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: white;
  border-radius: 6px;
  border: 1px solid rgba(201,151,58,0.1);
  transition: all 0.35s;
  cursor: default;
}
.feature-item:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(201,151,58,0.12);
  transform: translateX(6px);
}
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(201,151,58,0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.feature-title { font-weight: 700; font-size: 0.92rem; color: var(--primary); margin-bottom: 4px; }
.feature-desc { font-size: 0.82rem; color: #777; line-height: 1.6; }

.whyus-visual { position: relative; }
.whyus-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
}
.whyus-badge {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background: var(--primary);
  color: white;
  padding: 1.5rem 2rem;
  border-radius: 4px;
  border-left: 3px solid var(--gold);
}
.whyus-badge .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.whyus-badge .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
@media(max-width: 768px) {
  .whyus-badge { left: 0.5rem; bottom: 1rem; }
}

/* ── CERTIFICATIONS ── */
.certs-section { background: white; }
.certs-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.certs-sub {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 600px;
  margin: 1rem auto 3.5rem;
}
.certs-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.cert-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(201,151,58,0.15);
  border-radius: 6px;
  min-width: 180px;
  transition: all 0.4s;
  background: #FDFCF9;
}
.cert-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(201,151,58,0.12);
}
.cert-card img {
  height: 64px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s;
}
.cert-card:hover img { opacity: 1; }
.cert-card p {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #777;
}

/* ── CTA ── */
.cta-section { background: var(--cream); text-align: center; }
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-sub {
  color: #777;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold);
  color: var(--primary);
  padding: 14px 34px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.35s ease;
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,151,58,0.5);
}
.btn-outline-dark {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 14px 34px;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.35s ease;
}
.btn-outline-dark:hover { background: var(--primary); color: white; }

/* ── FOOTER ── */
footer {
  background: #080F18;
  color: rgba(255,255,255,0.55);
  padding: 5rem clamp(1.5rem, 5vw, 5rem) 2rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
@media(max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media(max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 120px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.82rem; line-height: 1.75; color: rgba(255,255,255,0.4); max-width: 260px; }
.footer-col h5 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem;
}
.footer-contact-item span:first-child { color: var(--gold); margin-top: 2px; }
.footer-bottom {
  max-width: 1200px; margin: 2rem auto 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; flex-wrap: wrap; gap: 0.5rem;
}

/* ── FLOATING BUTTONS ── */
.float-group {
  position: fixed;
  bottom: 1.75rem; right: 1.75rem;
  z-index: 90;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.wa-float {
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 25px rgba(37,211,102,0.45);
  transition: all 0.35s;
  text-decoration: none;
}
.wa-float:hover {
  background: #20bc5a;
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 14px 35px rgba(37,211,102,0.55);
}
.wa-float svg { width: 28px; height: 28px; }

.scroll-top-btn {
  width: 54px; height: 54px;
  background: var(--primary);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(13,27,42,0.4);
  transition: all 0.35s ease;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.scroll-top-btn:hover {
  background: var(--gold); border-color: var(--gold);
  transform: translateY(-3px) scale(1.08);
  box-shadow: 0 14px 35px rgba(201,151,58,0.45);
}
.scroll-top-btn svg {
  width: 22px; height: 22px;
  stroke: var(--gold); fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke 0.3s;
}
.scroll-top-btn:hover svg { stroke: white; }

/* ── SELECTION ── */
::selection { background: rgba(201,151,58,0.25); color: var(--primary); }