/* =============================================
   Maldives Retreats - Luxury Custom Styles
   ============================================= */

/* --- Luxury Color Palette --- */
:root {
  --gold: #c8a86e;
  --gold-light: #e8d5a3;
  --gold-dark: #a8884e;
  --navy: #0a1628;
  --navy-light: #132238;
  --teal: #1a8a7a;
  --teal-light: #2ab8a4;
  --cream: #faf8f5;
  --warm-gray: #f5f2ed;
  --body-color: #1a1a2e;
  --body-secondary: #5c5c6e;
}

/* --- Smooth Scroll --- */
html {
  scroll-behavior: smooth;
}

/* --- Consistent Single Font: Lato --- */
body {
  font-family: 'Lato', 'Segoe UI', sans-serif;
  color: var(--body-color);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
p, a, li, span, div, blockquote, small, strong, address, .font-secondary, .fancynav-link, .btn {
  font-family: 'Lato', 'Segoe UI', sans-serif !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  letter-spacing: 0.02em;
  font-weight: 700;
}

/* --- Desktop: hide fancynavbar brand --- */
@media (min-width: 992px) {
  .fancynavbar .fancynavbar-brand {
    display: none !important;
  }
}

/* --- Mobile: center logo in fancynavbar top bar --- */
@media (max-width: 991.98px) {
  .fancynavbar {
    padding-top: 0.75rem;
    padding-bottom: 0.25rem;
  }
  .fancynavbar .fancynavbar-togglerbar {
    justify-content: center;
    height: auto;
    min-height: 3.5rem;
  }
  .fancynavbar .fancynavbar-toggler {
    position: absolute !important;
    right: 0 !important;
    transform: none !important;
  }
  .fancynavbar .fancynavbar-addon {
    display: none !important;
  }
  .fancynavbar .fancynavbar-brand {
    padding: 0.625rem 0.5rem;
  }
  .fancynavbar-brand-img {
    height: 38px !important;
  }
  /* Ensure menu overlay covers full viewport but togglerbar stays on top */
  .fancynavbar-collapse {
    top: 0 !important;
    height: 100vh !important;
    z-index: 9999 !important;
  }
  .fancynavbar .fancynavbar-togglerbar {
    position: relative;
    z-index: 10000;
  }
}

/* --- Desktop sidebar: collapse positioning --- */
@media (min-width: 992px) {
  .fancynavbar.fancynavbar-expand-lg .fancynavbar-collapse {
    padding-left: 3.375rem;
    padding-right: 3.375rem;
    width: calc(50vw - 3.10rem);
    height: 100vh;
    right: calc(50% + -11rem);
    top: 0;
  }
}

@media (min-width: 992px) {
  .fancynav-link {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

/* --- Hero badge --- */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #fff;
    font-size: 0.90rem !important;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .fs-md-4 {
    font-size: 3.199rem !important;
  }
}

/* --- Prevent clicks on YouTube player --- */
.yt-video {
  pointer-events: none;
}

/* --- Full-width hero bg-holder on desktop --- */
@media (min-width: 992px) {
  .bg-holder.hero-bg {
    width: 100vw !important;
    left: 0 !important;
  }
}

/* =============================================
   Luxury Typography
   ============================================= */
.section-title {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

/* =============================================
   Gold Accent Elements
   ============================================= */
.text-gold {
  color: var(--gold) !important;
}

.bg-gold {
  background: var(--gold) !important;
}

.border-gold {
  border-color: var(--gold) !important;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  color: #fff !important;
  padding: 0.75rem 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(200, 168, 110, 0.3);
}

.btn-gold:hover,
.btn-gold:focus {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(200, 168, 110, 0.4);
  color: #fff !important;
}

.btn-gold-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold) !important;
  padding: 0.75rem 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.btn-gold-outline:hover {
  background: var(--gold);
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(200, 168, 110, 0.3);
}

.btn-outline-light {
  border-width: 2px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.75rem 2rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.15);
}

/* =============================================
   Luxury Cards & Sections
   ============================================= */
.luxury-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(200, 168, 110, 0.1);
  position: relative;
  overflow: hidden;
}

.luxury-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.luxury-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: rgba(200, 168, 110, 0.25);
}

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

.luxury-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(200, 168, 110, 0.1), rgba(200, 168, 110, 0.05));
  margin-bottom: 1.25rem;
  transition: all 0.3s ease;
}

.luxury-card:hover .card-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff !important;
}

.luxury-card .card-icon .text-gold {
  transition: color 0.3s ease;
}

.luxury-card:hover .card-icon .text-gold {
  color: #fff !important;
}

/* --- Dark Sections --- */
.section-dark {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #fff;
}

.section-dark .text-body-secondary {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* --- Cream/Warm Sections --- */
.section-cream {
  background: var(--cream);
}

.section-warm {
  background: var(--warm-gray);
}

/* =============================================
   Feature Item Styling (Homepage Top & Invest)
   ============================================= */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: #fff;
  border: 1px solid rgba(200, 168, 110, 0.08);
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.feature-item:hover {
  border-color: rgba(200, 168, 110, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.feature-item .feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(200, 168, 110, 0.35);
}

.feature-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--body-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

/* =============================================
   Event Card Styling (Meet Us)
   ============================================= */
.event-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.event-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 40px 40px 0;
  border-color: transparent var(--gold) transparent transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border-color: rgba(200, 168, 110, 0.2);
}

.event-card:hover::after {
  opacity: 1;
}

.event-card .event-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.event-card:hover .event-icon {
  transform: rotateY(180deg);
  box-shadow: 0 8px 25px rgba(200, 168, 110, 0.3);
}

.event-card h6 {
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
}

.event-card p {
  font-size: 0.9rem;
  color: var(--body-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

/* =============================================
   Service Item (Project Finance) - FA Icons
   ============================================= */
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  cursor: default;
}

.service-item:hover {
  border-color: rgba(200, 168, 110, 0.25);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transform: translateX(5px);
}

.service-item .service-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  color: #fff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.service-item:hover .service-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(200, 168, 110, 0.3);
}

.service-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.service-item p {
  font-size: 0.9rem;
  color: var(--body-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

/* =============================================
   Opportunity List (Real Estate)
   ============================================= */
.opportunity-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.opportunity-item:last-child {
  border-bottom: none;
}

.opportunity-item:hover {
  padding-left: 0.75rem;
}

.opportunity-item .opp-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.opportunity-item:hover .opp-icon {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(200, 168, 110, 0.3);
}

.opportunity-item strong {
  display: block;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.opportunity-item p {
  font-size: 0.9rem;
  color: var(--body-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

/* =============================================
   Quote / Blockquote
   ============================================= */
blockquote.blockquote {
  border-left: 3px solid var(--gold);
  background: rgba(200, 168, 110, 0.04);
  border-radius: 0 12px 12px 0;
}

blockquote .blockquote-content {
  font-style: italic;
  color: #4a4a5a;
}

blockquote .blockquote-footer {
  color: var(--gold);
  font-weight: 700;
}

/* =============================================
   CTA Section
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 110, 0.07), transparent 70%);
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 168, 110, 0.04), transparent 70%);
}

.cta-section h2 {
  color: #fff;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
}

.cta-section a {
  position: relative;
  z-index: 1;
}

/* =============================================
   Section Divider
   ============================================= */
.section-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem 0;
}

.text-center .section-divider {
  margin: 1.5rem auto;
}

/* =============================================
   Nav Link Hover
   ============================================= */
.fancynav-link:hover .fancynav-link-content {
  color: var(--gold) !important;
}

/* =============================================
   Mobile Scroll Logo
   ============================================= */
#mobileLogoFixed {
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

/* =============================================
   Hero Overlay
   ============================================= */
.hero-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.4) 50%, transparent 100%);
  z-index: 1;
}

/* =============================================
   Image Border Accent
   ============================================= */
.img-accent-border {
  border: 4px solid rgba(200, 168, 110, 0.15);
  border-radius: 16px;
  transition: all 0.4s ease;
}

.img-accent-border:hover {
  border-color: rgba(200, 168, 110, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

/* =============================================
   Gold Divider
   ============================================= */
.divider-gold {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.divider-gold .line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.divider-gold .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* =============================================
   List with Gold Bullets
   ============================================= */
.list-gold {
  list-style: none;
  padding-left: 0;
}

.list-gold li {
  padding: 0.45rem 0;
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.6;
}

.list-gold li::before {
  content: '\25B6';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.65rem;
  top: 0.55rem;
}

/* =============================================
   Section Bottom Gradient Accent
   ============================================= */
.section-accent-bottom {
  position: relative;
}

.section-accent-bottom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* =============================================
   Preloader accent
   ============================================= */
.line-scale-pulse-out-rapid > div {
  background-color: var(--gold) !important;
}

/* =============================================
   Section spacing enhancer
   ============================================= */
section {
  position: relative;
}

/* =============================================
   Hero Section Override
   ============================================= */
@media (min-width: 992px) {
  .hero-section-lg h1 {
    font-size: 4rem;
  }
}

/* =============================================
   Responsive Fixes
   ============================================= */
@media (max-width: 575.98px) {
  .luxury-card {
    padding: 1.5rem;
  }

  .service-item {
    padding: 1rem 1.25rem;
  }

  .feature-item {
    padding: 1.25rem;
  }

  .event-card {
    padding: 1.25rem;
  }
}

/* =============================================
   Fancynavbar slide-down for inner pages
   ============================================= */
.fancynavbar {
  background: rgba(0, 0, 0, 0.9) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* =============================================
   General link styling
   ============================================= */
a {
  transition: color 0.3s ease;
}

/* =============================================
   Contact Form Modal
   ============================================= */
.contact-modal .modal-content {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.contact-modal .modal-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border: none;
  padding: 2rem 2rem 1.5rem;
  position: relative;
}

.contact-modal .modal-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
}

.contact-modal .modal-title {
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
}

.contact-modal .modal-title small {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.25rem;
}

.contact-modal .btn-close {
  color: #fff;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.contact-modal .btn-close:hover {
  opacity: 1;
}

.contact-modal .modal-body {
  padding: 2rem;
}

.contact-modal .form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--body-color);
  margin-bottom: 0.4rem;
}

.contact-modal .form-control,
.contact-modal .form-select {
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background: #fafafa;
}

.contact-modal .form-control:focus,
.contact-modal .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 168, 110, 0.15);
  background: #fff;
}

.contact-modal .form-control::placeholder {
  color: #aaa;
}

.contact-modal textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.contact-modal .modal-footer {
  border: none;
  padding: 0 2rem 2rem;
  justify-content: center;
}

.contact-modal .btn-gold {
  width: 100%;
  padding: 0.85rem;
}

.contact-modal .form-check-input:checked {
  background-color: var(--gold);
  border-color: var(--gold);
}

.contact-modal .form-check-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 168, 110, 0.15);
}

/* Success state */
.contact-modal .form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.contact-modal .form-success .success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: #fff;
  font-size: 1.5rem;
}

.contact-modal .form-success h5 {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-modal .form-success p {
  color: var(--body-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* =============================================
   Hero Gold Accent Bar
   ============================================= */
.hero-gold-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.hero-gold-bar .bar {
  width: 50px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.hero-gold-bar .bar-glow {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

/* =============================================
   Hero floating badge
   ============================================= */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 1.5rem;
}

.hero-badge .badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

/* =============================================
   Stats row
   ============================================= */
.stats-row {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stats-row .stat {
  text-align: left;
}

.stats-row .stat .number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
}

.stats-row .stat .label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 400;
}

/* =============================================
   Leadership card
   ============================================= */
.leadership-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(200, 168, 110, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.leadership-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--gold-light));
  border-radius: 0 2px 2px 0;
}

.leadership-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  border-color: rgba(200, 168, 110, 0.2);
}

.leadership-card .leadership-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  padding: 3px;
  background: #fff;
}

.leadership-card .leadership-name {
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.15rem;
}

.leadership-card .leadership-title {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

.leadership-card p {
  font-size: 0.9rem;
  color: var(--body-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* =============================================
   Location indicator
   ============================================= */
.location-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(200, 168, 110, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(200, 168, 110, 0.08);
  transition: all 0.3s ease;
}

.location-item:hover {
  background: rgba(200, 168, 110, 0.08);
  border-color: rgba(200, 168, 110, 0.15);
}

.location-item .loc-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  font-size: 1rem;
}

.location-item h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.location-item p {
  font-size: 0.85rem;
  color: var(--body-secondary);
  margin-bottom: 0;
  line-height: 1.5;
}

/* =============================================
   Footer social
   ============================================= */
footer .btn-social {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  transition: all 0.3s ease;
  background: transparent;
}

footer .btn-social:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 168, 110, 0.1);
  transform: translateY(-2px);
}

/* =============================================
   Global Presence enhanced layout
   ============================================= */
.global-presence-box {
  background: #fff;
  border-radius: 20px;
  padding: 3rem;
  border: 1px solid rgba(200, 168, 110, 0.1);
  box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

/* =============================================
   Section bottom decorative line
   ============================================= */
.section-bottom-line {
  position: relative;
}

.section-bottom-line::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* =============================================
   Image overlay caption
   ============================================= */
.img-caption-overlay {
  position: relative;
  display: inline-block;
}

.img-caption-overlay .caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  padding: 1rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  color: #fff;
  font-size: 0.85rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.img-caption-overlay:hover .caption {
  opacity: 1;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
  color: #c4a46a !important;
}
