/*
Theme Name: Toivo Investment
Theme URI: https://toivoinvestment.com
Description: Premium real estate investment theme for Toivo Investment — Ghana property investment platform.
Version: 1.0.0
Author: Toivo Investment
Author URI: https://toivoinvestment.com
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: toivo-investment
*/

/* ================================================================
   TOIVO INVESTMENT — Production Stylesheet
   ================================================================
   Design: Navy (#0B1426) + Gold (#C9A84C)
   Fonts:  DM Serif Display (headlines) + Inter (body)
   ================================================================ */

/* ============================================
   1. RESET & VARIABLES
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0B1426;
  --navy-2: #101C33;
  --navy-3: #162742;
  --gold: #C9A84C;
  --gold-light: #D4B868;
  --gold-dark: #A8882E;
  --gold-muted: rgba(201,168,76,0.12);
  --white: #FFFFFF;
  --off-white: #F8F7F4;
  --cream: #FAF6F0;
  --gray-50: #FAFAFA;
  --gray-100: #F4F4F2;
  --gray-200: #E6E4E0;
  --gray-300: #D1CFCB;
  --gray-400: #A09D98;
  --gray-500: #76736E;
  --gray-600: #54524E;
  --gray-700: #3A3835;
  --green: #1B9E5A;
  --green-bg: #E8F5EE;
  --red: #D94F4F;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.1);
}

/* ============================================
   2. BASE TYPOGRAPHY & ELEMENTS
   ============================================ */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--gray-600);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: all 0.3s var(--ease); }
button { cursor: pointer; border: none; font-family: inherit; background: none; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.15;
}
h2 { font-size: clamp(1.9rem, 3.8vw, 2.6rem); }
p { line-height: 1.75; }

/* ============================================
   3. SHARED COMPONENTS
   ============================================ */

/* --- Labels --- */
.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.25);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-2);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(11,20,38,0.2);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gray-300);
  color: var(--navy);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.btn-outline-light {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--white);
}
.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  background: var(--cream);
  transform: translateY(-1px);
}
.btn-sm { padding: 10px 20px; font-size: 0.82rem; }
.btn-arrow::after {
  content: '\2192';
  transition: transform 0.3s;
}
.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ============================================
   4. NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  height: 40px;
  width: auto;
}
.footer .logo-img {
  height: 32px;
}
.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
}
.logo-text {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--gray-500);
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}
.nav-cta {
  padding: 10px 22px;
  font-size: 0.85rem;
}

/* Nav Phone */
.nav-tel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.nav-tel-icon {
  width: 16px;
  height: 16px;
  color: var(--gold-dark);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   5. PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 160px 0 100px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}
.hero-breadcrumb a {
  color: rgba(255,255,255,0.5);
}
.hero-breadcrumb a:hover {
  color: var(--gold);
}
.hero-breadcrumb .sep {
  color: var(--gold);
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 700px;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.page-hero .hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.8;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 40px;
}
.hero-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 400;
}
.hero-stat span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

/* ============================================
   6. SECTION BACKGROUNDS
   ============================================ */
.bg-white { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-cream { background: var(--cream); }
.bg-navy {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.bg-navy::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.bg-navy .container {
  position: relative;
  z-index: 1;
}

/* ============================================
   7. CARDS
   ============================================ */
.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.card-gold-top::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.card-gold-top:hover::before {
  transform: scaleX(1);
}

/* Icon Box */
.icon-box {
  width: 56px;
  height: 56px;
  background: var(--gold-muted);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-box svg {
  width: 26px;
  height: 26px;
  color: var(--gold-dark);
}
.icon-box-sm {
  width: 44px;
  height: 44px;
}
.icon-box-sm svg {
  width: 22px;
  height: 22px;
}
.icon-box-emoji {
  font-size: 1.4rem;
}

/* Check Icon */
.check-icon {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--green-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-icon svg {
  width: 12px;
  height: 12px;
  color: var(--green);
}

/* Image Placeholder */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gray-100) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.img-placeholder svg {
  width: 40px;
  height: 40px;
  color: var(--gray-300);
}
.img-placeholder span {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* ============================================
   8. SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}
.section-header h2 {
  margin-bottom: 16px;
}
.section-header p {
  font-size: 1rem;
}
.section-header-left {
  max-width: 480px;
}

/* ============================================
   9. PROPERTY CARDS
   ============================================ */
.property-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.property-image {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--cream) 0%, var(--gray-100) 100%);
  overflow: hidden;
}
.property-badges {
  position: absolute;
  top: 14px; left: 14px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.badge {
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge-navy { background: var(--navy); color: var(--white); }
.badge-green { background: var(--green); color: var(--white); }
.badge-gold { background: var(--gold); color: var(--navy); }
.badge-red { background: var(--red); color: var(--white); }

.property-save {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 2;
}
.property-save:hover {
  background: var(--white);
  transform: scale(1.1);
}
.property-save svg {
  width: 16px; height: 16px;
  color: var(--gray-500);
}
.property-body {
  padding: 20px 22px 24px;
}
.property-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--gold-dark);
  font-weight: 500;
  margin-bottom: 8px;
}
.property-location svg {
  width: 14px; height: 14px;
  flex-shrink: 0;
}
.property-body h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.3;
}
.property-body > p {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.property-specs {
  display: flex;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}
.spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--gray-500);
}
.spec svg {
  width: 15px; height: 15px;
  color: var(--gray-400);
  flex-shrink: 0;
}
.property-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.property-price {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 400;
}
.property-price small {
  font-family: var(--font);
  font-size: 0.72rem;
  color: var(--gray-400);
  font-weight: 400;
}

/* ============================================
   10. FORMS
   ============================================ */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row.full {
  grid-template-columns: 1fr;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group .required {
  color: var(--gold-dark);
  margin-left: 2px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.88rem;
  color: var(--navy);
  background: var(--white);
  transition: all 0.3s;
  resize: vertical;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23A09D98' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-muted);
}
.form-group textarea {
  min-height: 120px;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0 28px;
}
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
  flex-shrink: 0;
}
.form-checkbox label {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
  cursor: pointer;
}
.form-checkbox label a {
  color: var(--gold-dark);
  font-weight: 500;
}
.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 0.92rem;
  justify-content: center;
}
.form-note {
  text-align: center;
  margin-top: 16px;
  font-size: 0.78rem;
  color: var(--gray-400);
}
.form-note svg {
  width: 14px; height: 14px;
  vertical-align: -2px;
  margin-right: 4px;
  color: var(--green);
}

/* Dark Form */
.form-dark input,
.form-dark select,
.form-dark textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
}
.form-dark input::placeholder,
.form-dark textarea::placeholder {
  color: rgba(255,255,255,0.25);
}
.form-dark select {
  color: rgba(255,255,255,0.5);
}
.form-dark select option {
  background: var(--navy);
  color: var(--white);
}
.form-dark input:focus,
.form-dark select:focus,
.form-dark textarea:focus {
  border-color: var(--gold);
  box-shadow: none;
}

/* ============================================
   11. FAQ ACCORDION
   ============================================ */
.faq-list {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.faq-item:hover {
  border-color: rgba(201,168,76,0.15);
}
.faq-item--light {
  background: var(--cream);
  border: 1px solid var(--gray-200);
}
.faq-item--light:hover {
  border-color: var(--gold);
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 16px;
}
.faq-item--light .faq-question {
  color: var(--navy);
}
.faq-question:hover {
  color: var(--gold);
}
.faq-item--light .faq-question:hover {
  color: var(--gold-dark);
}
.faq-toggle {
  width: 28px; height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  transition: all 0.3s;
}
.faq-item--light .faq-toggle {
  background: var(--white);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.faq-item--light .faq-answer-inner {
  color: var(--gray-500);
}
.faq-item.open .faq-answer {
  max-height: 400px;
}
.faq-item.open .faq-toggle {
  background: var(--gold-muted);
  transform: rotate(45deg);
}

/* ============================================
   12. MARQUEE
   ============================================ */
.marquee-wrap {
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  white-space: nowrap;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.02em;
}
.marquee-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   13. TIMELINE
   ============================================ */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0; bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 48px;
  position: relative;
}
.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 16px;
  background: var(--white);
  border: 3px solid var(--gold);
  border-radius: 50%;
  z-index: 2;
}
.timeline-content {
  width: calc(50% - 40px);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s var(--ease);
}
.timeline-content:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.timeline-year {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.timeline-content h4 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.timeline-content p {
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.7;
}
.timeline-spacer {
  width: calc(50% - 40px);
}

/* ============================================
   14. FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  margin-top: 16px;
  max-width: 260px;
  line-height: 1.7;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 12px;
}
.footer-col a:hover {
  color: var(--gold);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.3);
}
.footer-bottom-links a:hover {
  color: var(--gold-light);
}
.footer .logo-mark {
  width: 32px;
  height: 32px;
  font-size: 1rem;
}
.footer .logo-text {
  color: var(--white);
}

/* Footer Socials */
.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.footer-social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 0.8rem;
  transition: all 0.3s var(--ease);
}
.footer-social:hover { background: var(--gold); color: var(--navy); }

/* ============================================
   15. ANIMATIONS
   ============================================ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
@keyframes pinBounce {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50% { transform: rotate(-45deg) translateY(-6px); }
}
.float { animation: float 4s ease-in-out infinite; }
.float-delay { animation: float 4s ease-in-out infinite 1s; }

/* ============================================
   16. UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.serif { font-family: var(--serif); }
.mb-0 { margin-bottom: 0; }
.mt-auto { margin-top: auto; }
.gap-14 { gap: 14px; }
.flex-wrap { flex-wrap: wrap; }
.d-flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

/* ============================================
   17. MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 90px 24px 40px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  display: block;
  padding: 16px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--gold-dark);
}
.mobile-menu .btn {
  margin-top: 24px;
  justify-content: center;
}

/* ============================================
   18. RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }

  .page-hero { padding: 140px 0 80px; }
  .page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); }

  .hero-stats { gap: 32px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .timeline::before { left: 20px; }
  .timeline-dot { left: 20px; }
  .timeline-item,
  .timeline-item:nth-child(even) {
    flex-direction: column;
    padding-left: 52px;
  }
  .timeline-content { width: 100%; }
  .timeline-spacer { display: none; }
}

/* Mobile */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .page-hero { padding: 120px 0 60px; }
  .page-hero h1 { font-size: 1.8rem; }
  .page-hero .hero-desc { font-size: 1rem; }

  h2 { font-size: clamp(1.5rem, 5vw, 2rem); }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
  }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .btn { padding: 12px 24px; font-size: 0.85rem; }

  .nav-tel { display: none; }
}

/* Small mobile */
@media (max-width: 480px) {
  .page-hero h1 { font-size: 1.6rem; }
  .hero-stats { gap: 16px; }
  .hero-stat strong { font-size: 1.4rem; }
}
