/* ============================================================
   MORANITY MULTIMEDIA GROUP — style.css
   Professional · Clean · Media Industry
   ============================================================ */

/* ── GOOGLE FONTS IMPORT ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ── CSS VARIABLES ── */
:root {
  /* Primary Palette */
  --navy:        #1B2B4B;
  --navy-dark:   #142038;
  --navy-mid:    #243557;
  --navy-light:  #2E4270;

  /* Accent */
  --gold:        #D4A843;
  --gold-light:  #E8C06A;
  --gold-pale:   #F5E4BB;
  --gold-dim:    #A07D2E;

  /* Neutral */
  --white:       #FFFFFF;
  --off-white:   #F8F7F4;
  --light-gray:  #F0EDE8;
  --mid-gray:    #C8C4BD;
  --text-gray:   #6B7280;
  --dark-text:   #1A1F2E;

  /* Backgrounds */
  --bg-light:    #F8F7F4;
  --bg-section:  #EEF2F7;
  --bg-card:     #FFFFFF;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  /* Sizing */
  --radius:      6px;
  --radius-lg:   12px;
  --shadow-sm:   0 2px 12px rgba(27,43,75,0.08);
  --shadow-md:   0 8px 32px rgba(27,43,75,0.12);
  --shadow-lg:   0 20px 60px rgba(27,43,75,0.16);
  --transition:  all 0.3s ease;
}

/* ── RESET & BASE ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--dark-text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ── UTILITY ── */
.section-pad {
  padding: 90px 0;
}

.section-pad-lg {
  padding: 110px 0;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  display: block;
  margin-bottom: 0.6rem;
}

.divider-gold {
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 1.4rem;
}

.divider-gold.center {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title.light {
  color: var(--white);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-gray);
  line-height: 1.8;
  max-width: 600px;
}

.section-subtitle.light {
  color: rgba(255,255,255,0.78);
}

.btn-primary-gold {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  border: 2px solid var(--gold);
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary-gold:hover {
  background: var(--gold-dim);
  border-color: var(--gold-dim);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,67,0.35);
}

.btn-outline-navy {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  background: transparent;
  border: 2px solid var(--navy);
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}

.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 0.8rem 2rem;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}

.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  padding: 1.2rem 0;
  transition: all 0.4s ease;
  background: transparent;
}

#mainNav.scrolled {
  background: var(--navy-dark);
  padding: 0.75rem 0;
  box-shadow: 0 4px 24px rgba(20,32,56,0.3);
}

.navbar-brand-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

.brand-tagline {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 2px;
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.88) !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.25s;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: center;
}

.navbar-nav .nav-link:hover {
  color: var(--gold-light) !important;
}

.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

.nav-btn-connect {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy) !important;
  background: var(--gold);
  border: none;
  padding: 0.55rem 1.5rem !important;
  border-radius: var(--radius);
  transition: var(--transition);
}

.nav-btn-connect:hover {
  background: var(--gold-light);
  color: var(--navy) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212,168,67,0.4);
}

.navbar-toggler {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.35rem 0.6rem;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   HERO / CAROUSEL
   ============================================================ */
#heroCarousel {
  height: 100vh;
  min-height: 580px;
}

.carousel-inner,
.carousel-item {
  height: 100%;
}

.hero-slide {
  height: 100%;
  background-size: cover;
  background-position: center center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20,32,56,0.88) 0%,
    rgba(27,43,75,0.72) 50%,
    rgba(27,43,75,0.35) 100%
  );
}

.hero-slide-1 {
  background-image: url('https://images.unsplash.com/photo-1461151304267-38535e780c79?w=1800&q=85');
}

.hero-slide-2 {
  /*background-image: url('https://images.unsplash.com/photo-1598488035139-bdbb2231ce04?w=1800&q=85');*/
  background-image: url('https://images.unsplash.com/photo-1478737270239-2f02b77fc618?w=800&q=85');
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0 0;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 1.4rem;
}

.hero-title .accent {
  color: var(--gold-light);
  font-style: italic;
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.2rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* Carousel Controls */
.carousel-indicators {
  bottom: 2rem;
  gap: 6px;
}

.carousel-indicators [data-bs-target] {
  width: 30px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255,255,255,0.4);
  border: none;
  opacity: 1;
  transition: all 0.35s;
}

.carousel-indicators .active {
  width: 54px;
  background: var(--gold);
}

.carousel-control-prev,
.carousel-control-next {
  width: 52px;
  height: 52px;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  opacity: 1;
  transition: all 0.3s;
}

.carousel-control-prev { left: 2rem; }
.carousel-control-next { right: 2rem; }

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 16px;
  height: 16px;
}

/* ============================================================
   TICKER / MARQUEE
   ============================================================ */
.ticker-bar {
  background: var(--navy);
  padding: 0.7rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 3px solid var(--gold);
}

.ticker-track {
  display: inline-flex;
  animation: ticker 40s linear infinite;
  gap: 0;
}

.ticker-track span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 0 2.5rem;
}

.ticker-track span.sep {
  color: var(--gold);
  padding: 0;
  font-size: 0.65rem;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
  background: var(--white);
}

.about-img-container {
  position: relative;
}

.about-img-container img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-badge {
  position: absolute;
  bottom: -24px;
  right: -16px;
  background: var(--navy);
  color: var(--white);
  padding: 1.4rem 1.6rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  min-width: 160px;
}

.about-badge-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.about-badge-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 0.3rem;
}

.about-text .section-subtitle {
  font-size: 1.05rem;
  max-width: 100%;
  margin-bottom: 1.5rem;
}

.about-highlight {
  background: var(--bg-section);
  border-left: 4px solid var(--gold);
  padding: 1.2rem 1.4rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 1.8rem;
}

.about-highlight p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
  margin: 0;
  line-height: 1.55;
}

.about-stats-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stat-number span {
  color: var(--gold);
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-gray);
  margin-top: 0.2rem;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
#services {
  background: var(--bg-light);
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(27,43,75,0.08);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: var(--bg-section);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  transition: background 0.3s;
}

.service-card:hover .service-icon-wrap {
  background: var(--navy);
}

.service-icon-wrap i {
  font-size: 1.4rem;
  color: var(--navy);
  transition: color 0.3s;
}

.service-card:hover .service-icon-wrap i {
  color: var(--gold);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.service-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-gray);
  padding: 0.35rem 0 0.35rem 1.2rem;
  position: relative;
  border-top: 1px solid var(--light-gray);
}

.service-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1rem;
  line-height: 1.4;
}

/* ============================================================
   CHANNELS STRIP
   ============================================================ */
#channels {
  background: var(--navy);
  padding: 60px 0;
}

.channel-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
}

.channel-item:last-child {
  border-right: none;
}

.channel-item:hover {
  background: rgba(255,255,255,0.05);
}

.channel-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.7rem;
  display: block;
}

.channel-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  display: block;
}

.channel-sub {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.2rem;
  display: block;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#how-it-works {
  background: var(--white);
}

.process-card {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.process-card::after {
  content: '→';
  position: absolute;
  right: -1rem;
  top: 2.5rem;
  font-size: 1.4rem;
  color: var(--gold);
  opacity: 0.5;
}

.process-card:last-child::after {
  display: none;
}

.process-num {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
}

.process-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.7rem;
}

.process-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.75;
}

/* ============================================================
   OPPORTUNITY BANNER (CTA MID)
   ============================================================ */
#opportunity-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 60%, var(--navy) 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

#opportunity-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.1) 0%, transparent 70%);
  pointer-events: none;
}

#opportunity-banner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.opportunity-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.opportunity-feature i {
  font-size: 1.2rem;
  color: var(--gold);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.opportunity-feature-title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.opportunity-feature-text {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
#gallery {
  background: var(--bg-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--light-gray);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20,32,56,0.85) 0%,
    rgba(20,32,56,0.3) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 1.2rem 1.2rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-zoom-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-zoom-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-zoom-btn i {
  font-size: 1.1rem;
  color: var(--white);
}

.gallery-label {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  display: block;
}

.gallery-caption {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--white);
  margin-top: 0.2rem;
}

/* ── LIGHTBOX ── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,16,30,0.97);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#lightbox.active {
  display: flex;
}

#lightbox-img {
  max-width: 92vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transition: opacity 0.3s;
}

#lightbox-caption {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
  letter-spacing: 0.08em;
}

#lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  font-size: 1.2rem;
  transition: background 0.3s;
  z-index: 9010;
}

#lightbox-close:hover {
  background: var(--gold);
  border-color: var(--gold);
}

#lightbox-prev,
#lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  font-size: 1.1rem;
  transition: background 0.3s;
  z-index: 9010;
}

#lightbox-prev { left: 1.5rem; }
#lightbox-next { right: 1.5rem; }

#lightbox-prev:hover,
#lightbox-next:hover {
  background: var(--gold);
  border-color: var(--gold);
}

#lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.15em;
}

/* ============================================================
   TESTIMONIAL / QUOTE
   ============================================================ */
#testimonial {
  background: var(--navy);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-icon {
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
  max-width: 820px;
  margin: 0 auto 1.5rem;
}

.testimonial-text .highlight {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 600;
}

.testimonial-source {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   CONNECT / FINAL CTA
   ============================================================ */
#connect {
  background: var(--bg-light);
}

.connect-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--gold);
}

.connect-card .section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.connect-info-item {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.connect-info-icon {
  width: 38px;
  height: 38px;
  background: var(--bg-section);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.connect-info-icon i {
  font-size: 1rem;
  color: var(--navy);
}

.connect-info-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark-text);
}

.connect-info-text small {
  display: block;
  font-size: 0.82rem;
  color: var(--text-gray);
  margin-top: 0.1rem;
}

/* Form Styles */
.form-label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-control,
.form-select {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--dark-text);
  background: var(--bg-light);
  border: 1px solid rgba(27,43,75,0.15);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  transition: all 0.25s;
}

.form-control:focus,
.form-select:focus {
  background: var(--white);
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,43,75,0.08);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-dark);
  padding: 70px 0 0;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

.footer-logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 2px;
}

.footer-desc {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
  margin-top: 1rem;
  max-width: 280px;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.55rem;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: rgba(255,255,255,0.58);
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.6rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 50px;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.38);
  margin: 0;
}

.footer-bottom a {
  color: rgba(255,255,255,0.38);
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scrollTop {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  width: 42px;
  height: 42px;
  background: var(--navy);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.35s ease;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

#scrollTop.show {
  opacity: 1;
  transform: translateY(0);
}

#scrollTop:hover {
  background: var(--gold);
  color: var(--white);
}

/* ============================================================
   AOS OVERRIDES
   ============================================================ */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .section-pad { padding: 70px 0; }
  .section-pad-lg { padding: 80px 0; }

  .navbar-collapse {
    background: var(--navy-dark);
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.08);
  }

  .nav-btn-connect {
    display: inline-block;
    margin-top: 0.5rem;
  }

  .about-badge {
    right: 10px;
    bottom: 10px;
  }

  .process-card::after { display: none; }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .channel-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .channel-item:last-child { border-bottom: none; }

  .connect-card { padding: 2.5rem 2rem; }
}

@media (max-width: 767px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title { font-size: 1.75rem; }
  .hero-desc  { font-size: 1rem; }

  .about-img-container img { height: 320px; }

  #lightbox-prev { left: 0.5rem; }
  #lightbox-next { right: 0.5rem; }

  .connect-card { padding: 2rem 1.4rem; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .hero-btns { flex-direction: column; }
  .hero-btns a { text-align: center; }
}
/* ============================================================
   MORANITY MULTIMEDIA GROUP — Blog Listing Page
   Missing styles only — append to moranity-style.css
   ============================================================ */

/* ── Inner Hero ── */
.fit-inner-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  margin-top: 80px;
  background-size: cover;
  background-position: center;
}

.fit-inner-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(20,32,56,0.90) 0%,
    rgba(27,43,75,0.70) 60%,
    rgba(27,43,75,0.38) 100%
  );
}

.fit-inner-hero::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 2;
}

.fit-inner-hero .container { position: relative; z-index: 1; }

/* ── Breadcrumb ── */
.mmg-breadcrumb {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.mmg-breadcrumb a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.25s;
}

.mmg-breadcrumb a:hover { color: var(--white); }
.mmg-breadcrumb span   { color: rgba(255,255,255,0.3); }

/* ── Hero Title & Subtitle ── */
.mmg-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.mmg-hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto;
}

/* ── Search Bar ── */
.input-group .form-control {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--dark-text);
  background: var(--white);
  border: 1px solid rgba(27,43,75,0.15);
  border-right: none;
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius) 0 0 var(--radius);
  box-shadow: none;
}

.input-group .form-control:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,43,75,0.08);
}

.input-group .btn-primary {
  background: var(--navy);
  border-color: var(--navy);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7rem 1.3rem;
  transition: var(--transition);
}

.input-group .btn-primary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
}

.input-group .btn-outline-secondary {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-gray);
  border-color: rgba(27,43,75,0.15);
  background: var(--white);
  padding: 0.7rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: var(--transition);
}

.input-group .btn-outline-secondary:hover {
  background: var(--bg-section);
  color: var(--navy);
}

/* ── Category Filter Badges ── */
.badge.rounded-pill {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none !important;
}

.badge.rounded-pill.bg-primary {
  background: var(--navy) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 12px rgba(27,43,75,0.25);
}

.badge.rounded-pill.bg-light {
  background: var(--white) !important;
  color: var(--navy) !important;
  border: 1px solid rgba(27,43,75,0.12);
}

.badge.rounded-pill.bg-light:hover {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-color: var(--navy);
}

/* ── Blog Cards ── */
#insights {
  padding: 60px 0;
}
 
.title-underline {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 0.6rem auto 1.2rem;
}
.blog-card {
  background: var(--white) !important;
  border: 1px solid rgba(27,43,75,0.08) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-sm) !important;
  overflow: hidden;
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease !important;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg) !important;
  border-color: rgba(212,168,67,0.35) !important;
}

/* Gold top-border reveal on hover */
.blog-card {
  position: relative;
}

.blog-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: 1;
}

.blog-card:hover::before { transform: scaleX(1); }

/* Image zoom */
.blog-card-img {
  object-position: center top;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img { transform: scale(1.05); }

/* Category badge on image */
.blog-card .badge.bg-primary {
  background: var(--navy) !important;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.28rem 0.8rem;
  border-radius: 20px !important;
}

/* Card body */
.blog-card .card-body { padding: 1.5rem; }

/* Date */
.blog-card .text-muted.small {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-gray) !important;
}

.blog-card .fa-calendar-alt { color: var(--gold-dim); }

/* Card title */
.blog-card .card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 0.65rem;
  transition: color 0.25s;
}

.blog-card:hover .card-title { color: var(--gold-dim); }

/* Excerpt */
.blog-card .card-text {
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--text-gray) !important;
  line-height: 1.75;
}

/* ── Read More ── */
.division-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dim);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.25s;
}

.division-link .fa-arrow-right { transition: transform 0.25s; }

.blog-card:hover .division-link             { color: var(--gold); }
.blog-card:hover .division-link .fa-arrow-right { transform: translateX(4px); }

/* ── Empty State ── */
.fa-newspaper { color: var(--text-gray) !important; }

/* ── Pagination ── */
.pagination { gap: 5px; flex-wrap: wrap; }

.pagination .page-item .page-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(27,43,75,0.12);
  border-radius: var(--radius) !important;
  padding: 0.55rem 1rem;
  transition: var(--transition);
}

.pagination .page-item .page-link:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.pagination .page-item.active .page-link {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 12px rgba(212,168,67,0.35);
}

.pagination .page-item.disabled .page-link {
  background: var(--bg-light);
  color: var(--text-gray);
  border-color: rgba(27,43,75,0.08);
}
.mmg-breadcrumb {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.mmg-breadcrumb a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.mmg-breadcrumb a:hover { color: #fff; }

.mmg-breadcrumb span {
    margin: 0 8px;
    opacity: 0.5;
}
.blog-card {
    border-radius: 14px !important;
    transition: transform .3s, box-shadow .3s;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.13) !important;
}
.blog-card-img {
    transition: transform .4s;
}
.blog-card:hover .blog-card-img {
    transform: scale(1.04);
}
/* â”€â”€ Blog Sidebar â”€â”€ */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.sidebar-widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.sidebar-widget-divider {
    height: 3px;
    width: 40px;
    background: var(--primary-color, #0d6efd);
    border-radius: 2px;
    margin-bottom: 1.25rem;
}

/* Sidebar Post Item */
.sidebar-post {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.85rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-post:last-of-type {
    border-bottom: none;
}

.sidebar-post-img {
    flex-shrink: 0;
    width: 75px;
    height: 65px;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.sidebar-post:hover .sidebar-post-img img {
    transform: scale(1.05);
}

.sidebar-post-info {
    flex: 1;
    min-width: 0;
}

.sidebar-post-category {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-color, #0d6efd);
    display: block;
    margin-bottom: 0.25rem;
}

.sidebar-post-title {
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    transition: color 0.3s;
}

.sidebar-post-title:hover { color: var(--primary-color, #0d6efd); }

.sidebar-post-date {
    font-size: 0.75rem;
    color: #999;
    margin: 0.3rem 0 0;
}

/* Sidebar Categories */
.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories li {
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-categories li:last-child { border-bottom: none; }

.sidebar-categories li a {
    display: block;
    padding: 0.6rem 0;
    color: #444;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s, padding-left 0.3s;
}

.sidebar-categories li a:hover {
    color: var(--primary-color, #0d6efd);
    padding-left: 5px;
}

/* Blog Content Styling */
.blog-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
}

.blog-content p {
    line-height: 1.9;
    margin-bottom: 1.25rem;
    color: #444;
}

.blog-content ul, .blog-content ol {
    padding-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.blog-content ul li, .blog-content ol li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}
/* ── Responsive ── */
@media (max-width: 767px) {
  .fit-inner-hero   { height: 300px; }
  .mmg-hero-title   { font-size: 2rem; }
  .mmg-hero-subtitle{ font-size: 0.95rem; }
}