/* ============================================================
   MIGUU – Style Principal
   Couleurs : marron #8B4513, doré #C9A84C, beige #F5E6C8,
              orange terre cuite #CC5500, noir #1A1A1A, blanc #FAFAFA
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Inter:wght@300;400;500;600&family=Montserrat:wght@400;600;700&display=swap');

/* ── Variables ── */
:root {
  --brown:      #8B4513;
  --brown-dark: #5C2D0A;
  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --beige:      #F5E6C8;
  --beige-light:#FDF6EC;
  --terracotta: #CC5500;
  --black:      #1A1A1A;
  --dark:       #2A1A0A;
  --white:      #FAFAFA;
  --gray:       #6C757D;
  --shadow:     0 8px 32px rgba(139,69,19,.18);
  --radius:     12px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

/* ── Scroll offset pour navbar fixe ── */
section[id], div[id] { scroll-margin-top: 76px; }

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

img { max-width: 100%; height: auto; }

a { text-decoration: none; color: inherit; transition: color var(--transition); }

section { position: relative; overflow: hidden; }

/* ── Utility ── */
.section-padding { padding: 90px 0; }
.section-title { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 700; color: var(--brown-dark); }
.section-subtitle { font-size: 1rem; color: var(--gray); max-width: 560px; margin: 0 auto; }
.gold-line {
  display: block;
  width: 64px; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--terracotta));
  border-radius: 4px;
  margin: 14px auto 24px;
}
.gold-line.left { margin-left: 0; }

/* ── African Pattern Overlay ── */
.pattern-bg {
  background-image:
    radial-gradient(circle at 20% 50%, rgba(201,168,76,.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139,69,19,.07) 0%, transparent 40%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
  padding: 14px 0;
}

#mainNav.scrolled {
  background: transparent;
  padding: 10px 0;
}

body.inner-page #mainNav {
  background: transparent;
  border-bottom: 1px solid transparent;
}

.nav-shell {
  position: relative;
  background: linear-gradient(135deg, rgba(18,9,4,.78), rgba(46,24,10,.72));
  border: 1px solid rgba(201,168,76,.35);
  border-radius: 16px;
  padding: 10px 18px;
  box-shadow: none;
  animation: navFloat 4.5s ease-in-out infinite;
}

#mainNav.scrolled .nav-shell {
  background: linear-gradient(135deg, rgba(12,6,3,.95), rgba(36,18,8,.92));
  border-color: rgba(201,168,76,.45);
}

body.inner-page #mainNav .nav-shell {
  background: linear-gradient(135deg, rgba(12,6,3,.96), rgba(36,18,8,.94));
}

.navbar-brand img { height: 52px; transition: transform var(--transition); animation: logoPulse 3.4s ease-in-out infinite; }
.navbar-brand:hover img { transform: scale(1.04); }

.navbar-brand-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 6px;
}

.navbar-nav.nav-left,
.navbar-nav.nav-right {
  gap: 2px;
}

.navbar-toggler { border: 1.5px solid var(--gold); border-radius: 6px; padding: 6px 10px; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23C9A84C' stroke-width='2.5' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-nav .nav-link {
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(245,230,200,.85) !important;
  padding: 9px 16px !important;
  position: relative;
  border-radius: 999px;
  transition: color var(--transition), background var(--transition), transform var(--transition);
  animation: navLinkBreath 3.6s ease-in-out infinite;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 16px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
  border-radius: 2px;
}

.navbar-nav .nav-link:hover {
  color: var(--gold-light) !important;
  background: rgba(201,168,76,.14);
  transform: translateY(-1px);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: calc(100% - 32px); }
.navbar-nav .nav-link.active {
  color: var(--gold-light) !important;
  background: rgba(201,168,76,.2);
}

.nav-search {
  margin-left: 18px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(201,168,76,.5);
  background: rgba(8,4,2,.66);
  border-radius: 999px;
  padding: 5px 6px 5px 14px;
}

.nav-search input {
  width: 150px;
  border: none;
  outline: none;
  background: transparent;
  color: var(--beige);
  font-size: .82rem;
}

.nav-search input::placeholder {
  color: rgba(245,230,200,.55);
}

.nav-search button {
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  color: var(--dark);
  background: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   HERO / CAROUSEL
   ============================================================ */
#heroCarousel {
  height: 100vh;
  min-height: 580px;
}

.hero-slide {
  height: 100vh;
  min-height: 580px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Gradient overlay */
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,10,2,.80) 0%,
    rgba(92,45,10,.65) 50%,
    rgba(26,10,2,.78) 100%
  );
  z-index: 1;
}

/* African kente-style bottom stripe */
.hero-slide::after {
  content: none;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,.18);
  border: 1px solid rgba(201,168,76,.45);
  color: var(--gold-light);
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
  animation: badgeGlow 3.2s ease-in-out infinite;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
  margin-bottom: 18px;
  animation: heroFloat 4.8s ease-in-out infinite;
}

.hero-title span { color: var(--gold-light); }
.hero-title--compact { font-size: clamp(1.9rem, 4.2vw, 3.25rem); }

.hero-subtitle {
  font-size: clamp(.95rem, 2vw, 1.2rem);
  color: rgba(245,230,200,.88);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 32px;
  animation: textDrift 5.6s ease-in-out infinite;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--terracotta));
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 24px rgba(201,168,76,.35);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  animation: btnPulse 2.8s ease-in-out infinite;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -130%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-18deg);
  animation: btnShine 2.4s linear infinite;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--brown));
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(201,168,76,.45);
  color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 13px 34px;
  border-radius: 50px;
  border: 2px solid var(--gold);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}

/* Carousel controls */
.carousel-control-prev,
.carousel-control-next {
  width: 54px; height: 54px;
  background: rgba(201,168,76,.2);
  border: 1.5px solid rgba(201,168,76,.4);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  bottom: auto; margin: 0 20px;
  transition: all var(--transition);
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(201,168,76,.5);
}

.carousel-indicators [data-bs-target] {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(201,168,76,.5);
  border: none;
  margin: 0 5px;
  transition: all var(--transition);
}
.carousel-indicators .active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bounce 2s infinite;
  color: rgba(245,230,200,.6);
  font-size: .72rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.scroll-indicator i { font-size: 1.3rem; color: var(--gold); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes navFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes logoPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@keyframes navLinkBreath {
  0%, 100% { opacity: 1; }
  50% { opacity: .88; }
}

@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(201,168,76,0); }
  50% { box-shadow: 0 0 18px rgba(201,168,76,.28); }
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes textDrift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

@keyframes btnShine {
  0% { left: -130%; }
  100% { left: 145%; }
}

@keyframes btnPulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes statPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@keyframes cardLiftSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes mediaZoom {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--brown-dark), var(--dark));
  padding: 32px 0;
  border-top: 3px solid var(--gold);
}

.stat-item { text-align: center; padding: 12px 24px; position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(201,168,76,.25);
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  animation: statPulse 2.4s ease-in-out infinite;
}
.stat-label {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(245,230,200,.75);
  margin-top: 6px;
  font-family: 'Montserrat', sans-serif;
}

/* ============================================================
   ABOUT
   ============================================================ */
#about { background: var(--beige-light); }

.about-img-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform .6s ease;
}

.about-img-wrapper:hover img { transform: scale(1.04); }

.about-badge-img {
  position: absolute;
  bottom: 24px; right: -20px;
  background: linear-gradient(135deg, var(--brown), var(--gold));
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 8px 28px rgba(0,0,0,.25);
  min-width: 140px;
}

.about-badge-img .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.about-badge-img .label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: .9;
  margin-top: 4px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(139,69,19,.1);
}

.feature-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--terracotta));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(201,168,76,.3);
}

.feature-text h6 {
  font-family: 'Montserrat', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 2px;
}
.feature-text p { font-size: .82rem; color: var(--gray); margin: 0; }

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  background: linear-gradient(160deg, var(--dark) 0%, var(--brown-dark) 100%);
}

#services .section-title { color: var(--beige); }
#services .section-subtitle { color: rgba(245,230,200,.65); }

.service-card {
  background: rgba(245,230,200,.05);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  animation: cardLiftSoft 5.5s ease-in-out infinite;
}

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

.service-card:hover { 
  background: rgba(201,168,76,.1);
  border-color: rgba(201,168,76,.45);
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}

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

.service-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, rgba(201,168,76,.2), rgba(204,85,0,.2));
  border: 1.5px solid rgba(201,168,76,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.7rem;
  color: var(--gold-light);
  transition: all var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--terracotta));
  color: var(--white);
  transform: rotate(8deg) scale(1.08);
}

.service-card h5 {
  color: var(--beige);
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.service-card p { font-size: .85rem; color: rgba(245,230,200,.6); line-height: 1.7; margin: 0; }

/* ============================================================
   IMPORT & EXPORT
   ============================================================ */
#import-export {
  background: var(--beige-light);
}

.ie-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
}

.ie-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--brown), var(--gold));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.15rem;
  box-shadow: 0 4px 16px rgba(139,69,19,.25);
}

.ie-feature h6 {
  font-family: 'Montserrat', sans-serif;
  font-size: .92rem;
  font-weight: 700;
  color: var(--brown-dark);
  margin-bottom: 3px;
}

.ie-feature p { font-size: .83rem; color: var(--gray); margin: 0; line-height: 1.6; }

.ie-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.ie-visual img {
  width: 100%; height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.ie-badge {
  position: absolute;
  top: 24px; left: -12px;
  background: linear-gradient(135deg, var(--terracotta), var(--brown-dark));
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}

/* ============================================================
   GALLERY
   ============================================================ */
#gallery {
  background: var(--dark);
}
#gallery .section-title { color: var(--beige); }
#gallery .section-subtitle { color: rgba(245,230,200,.6); }
.gallery-subtitle-enhanced {
  max-width: 860px;
  font-size: 1.02rem;
  line-height: 1.85;
}

.gallery-story-wrap {
  margin-bottom: 46px;
}

.gallery-story-item {
  margin-bottom: 28px;
}

.gallery-story-media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0,0,0,.28);
  border: 1px solid rgba(201,168,76,.22);
}

.gallery-story-media img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: block;
}

.media-left-shift {
  transform: translateX(-22px);
}

.media-right-shift {
  transform: translateX(22px);
}

.gallery-story-text {
  background: rgba(245,230,200,.05);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 14px;
  padding: 26px 24px;
}

.gallery-story-text h4 {
  color: var(--beige);
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.gallery-story-text p {
  margin: 0;
  color: rgba(245,230,200,.78);
  line-height: 1.85;
  font-size: .94rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 95px;
  gap: 16px;
}

.gallery-item {
  grid-column: span 4;
  grid-row: span 3;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  animation: cardLiftSoft 6.5s ease-in-out infinite;
}

.gallery-item.gallery-wide { grid-column: span 8; }
.gallery-item.gallery-tall { grid-row: span 4; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,10,2,.85) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-overlay span {
  color: var(--beige);
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
}

.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-story-media img { animation: mediaZoom 7s ease-in-out infinite; }

/* ============================================================
   WHY MIGUU
   ============================================================ */
#why { background: var(--beige-light); }

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(139,69,19,.08);
  border-bottom: 4px solid transparent;
  transition: all var(--transition);
  animation: cardLiftSoft 6s ease-in-out infinite;
}

.why-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.why-icon {
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--beige), var(--gold-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
  color: var(--brown);
  transition: all var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold), var(--terracotta));
  color: var(--white);
}

.why-card h5 {
  font-size: 1rem;
  color: var(--brown-dark);
  margin-bottom: 10px;
}

.why-card p { font-size: .83rem; color: var(--gray); line-height: 1.7; margin: 0; }

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  background: linear-gradient(160deg, var(--dark) 0%, var(--brown-dark) 100%);
}

#contact .section-title { color: var(--beige); }
#contact .section-subtitle { color: rgba(245,230,200,.65); }

.contact-card {
  background: rgba(245,230,200,.05);
  border: 1px solid rgba(201,168,76,.18);
  border-radius: var(--radius);
  padding: 36px 32px;
}

.form-control, .form-select {
  background: rgba(245,230,200,.06);
  border: 1.5px solid rgba(201,168,76,.2);
  color: var(--beige);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .9rem;
  transition: all var(--transition);
}

.form-control:focus, .form-select:focus {
  background: rgba(245,230,200,.1);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.15);
  color: var(--beige);
}

.form-control::placeholder { color: rgba(245,230,200,.35); }

.form-label {
  color: rgba(245,230,200,.75);
  font-size: .83rem;
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(201,168,76,.12);
}

.contact-info-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(201,168,76,.2), rgba(204,85,0,.2));
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 1rem;
}

.contact-info-text h6 {
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
}

.contact-info-text p, .contact-info-text a {
  font-size: .88rem;
  color: rgba(245,230,200,.75);
  margin: 0;
}

.contact-info-text a:hover { color: var(--gold-light); }

.contact-info-item {
  transition: transform var(--transition), border-color var(--transition);
}

.contact-info-item:hover {
  transform: translateX(6px);
  border-color: rgba(201,168,76,.35);
}

.social-links { display: flex; gap: 12px; }

.social-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: .9rem;
  transition: all var(--transition);
}

.social-btn:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
  border-color: var(--gold);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #0D0604;
  border-top: 1px solid rgba(201,168,76,.15);
  padding-top: 64px;
}

.footer-logo img { height: 52px; margin-bottom: 16px; }

.footer-desc {
  font-size: .84rem;
  color: rgba(245,230,200,.55);
  line-height: 1.8;
  max-width: 280px;
}

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-links { list-style: none; padding: 0; margin: 0; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: .85rem;
  color: rgba(245,230,200,.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition);
}

.footer-links a i { font-size: .65rem; color: var(--gold); }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-item i { color: var(--gold); margin-top: 3px; font-size: .9rem; }
.footer-contact-item span { font-size: .84rem; color: rgba(245,230,200,.55); }

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,.1);
  padding: 20px 0;
  margin-top: 48px;
}

.footer-bottom p {
  font-size: .8rem;
  color: rgba(245,230,200,.35);
  margin: 0;
}

.footer-bottom span { color: var(--gold); }

/* African border accent */
.footer-kente {
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    var(--terracotta) 0px, var(--terracotta) 30px,
    var(--gold) 30px, var(--gold) 60px,
    var(--brown) 60px, var(--brown) 90px,
    var(--gold) 90px, var(--gold) 120px
  );
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#backToTop {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--terracotta));
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(201,168,76,.4);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  z-index: 999;
}

#backToTop.visible { opacity: 1; transform: translateY(0); }
#backToTop:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(201,168,76,.5); }

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  z-index: 9999;
  transition: opacity .5s ease, visibility .5s ease;
}

#preloader.hidden { opacity: 0; visibility: hidden; }

.preloader-logo img { height: 72px; animation: pulse 1.5s infinite; }

.preloader-bar {
  width: 180px; height: 3px;
  background: rgba(201,168,76,.2);
  border-radius: 3px;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--terracotta));
  border-radius: 3px;
  animation: loading 2s ease forwards;
}

@keyframes loading { from { width: 0; } to { width: 100%; } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .5; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  #mainNav {
    background: rgba(26,10,2,.95);
    border-bottom: 1px solid rgba(201,168,76,.2);
  }
  .nav-shell {
    border-radius: 12px;
    padding: 10px 12px;
  }
  .navbar-brand-center { position: static; transform: none; }
  .navbar-nav.nav-left, .navbar-nav.nav-right { gap: 0; }
  .nav-search {
    margin: 10px 0 4px;
    width: 100%;
  }
  .nav-search input { width: 100%; }
  .media-left-shift,
  .media-right-shift { transform: translateX(0); }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 140px;
  }
  .gallery-item { grid-column: span 1; grid-row: span 2; }
  .gallery-item.gallery-wide { grid-column: span 2; }
  .gallery-item.gallery-tall { grid-row: span 2; }
  .about-badge-img { right: 8px; }
}

@media (max-width: 767px) {
  .section-padding { padding: 60px 0; }
  #heroCarousel, .hero-slide { height: 90vh; min-height: 500px; }
  .hero-title { font-size: 1.9rem; }
  .hero-title--compact { font-size: 1.6rem; }
  .gallery-story-media img { height: 220px; }
  .gallery-story-text { padding: 18px 16px; }
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
    gap: 10px;
  }
  .gallery-item,
  .gallery-item.gallery-wide,
  .gallery-item.gallery-tall { grid-column: span 1; grid-row: span 1; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-item { border-bottom: 1px solid rgba(201,168,76,.15); }
  .about-badge-img { position: relative; right: auto; bottom: auto; margin-top: 20px; display: inline-block; }
  .about-img-wrapper img { height: 300px; }
  .ie-visual img { height: 280px; }
}

@media (max-width: 575px) {
  .gallery-grid { grid-auto-rows: 200px; }
}
