/* ============================================================
   IWSF - International Women Seafarers Foundation
   Stylesheet | Bootstrap 5 + AOS
   ============================================================ */

/* ---- Google Fonts ---------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&family=Cormorant+Garamond:wght@400;500;600&display=swap');

/* ---- CSS Variables --------------------------------------- */
:root {
  --navy:       #0B2545;
  --teal:       #1B6CA8;
  --teal-light: #3A9BD5;
  --gold:       #C9A84C;
  --gold-light: #E8C97D;
  --cream:      #FAF7F2;
  --white:      #FFFFFF;
  --gray-100:   #F4F6F9;
  --gray-200:   #E8ECF1;
  --gray-400:   #9BAABF;
  --gray-600:   #5A6A7E;
  --gray-800:   #2D3748;
  --text-body:  #3A4A5C;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-accent:  'Cormorant Garamond', serif;

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --shadow-sm:  0 2px 12px rgba(11,37,69,.07);
  --shadow-md:  0 6px 32px rgba(11,37,69,.12);
  --shadow-lg:  0 16px 56px rgba(11,37,69,.16);
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

/* ---- Reset / Base --------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.25;
}

a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }

img { max-width: 100%; }

/* ---- Utility ------------------------------------------- */
.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50px;
  padding: 4px 16px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: .5rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.divider-gold {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  margin: 14px 0 24px;
}

.divider-gold.mx-auto { margin-left: auto; margin-right: auto; }

.btn-primary-iwsf {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff;
  border: none;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .03em;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(27,108,168,.3);
  white-space: nowrap;
}
.btn-primary-iwsf:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(27,108,168,.4);
  background: linear-gradient(135deg, var(--navy), var(--teal));
}

.btn-outline-iwsf {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  padding: 11px 30px;
  border-radius: 50px;
  font-weight: 500;
  font-size: .95rem;
  transition: var(--transition);
}
.btn-outline-iwsf:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border: none;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.45);
  color: var(--navy);
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.75);
  font-size: .8rem;
  padding: 7px 0;
  letter-spacing: .02em;
}
.topbar a { color: rgba(255,255,255,.75); }
.topbar a:hover { color: var(--gold-light); }
.topbar .sep { margin: 0 12px; opacity: .4; }
.topbar i { color: var(--gold-light); margin-right: 5px; }

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  padding: 0;
  transition: box-shadow var(--transition), padding var(--transition);
}
#mainNav.scrolled {
  box-shadow: var(--shadow-md);
  padding: 0;
}

.navbar-brand img {
  width: auto;
  transition: height var(--transition);
}
#mainNav.scrolled .navbar-brand img { height: 52px; }

.navbar-logo-bw {
  height: 64px;
  width: auto;
  transition: height var(--transition);
}
#mainNav.scrolled .navbar-logo-bw { height: 52px; }

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-800) !important;
  padding: 24px 14px !important;
  letter-spacing: .02em;
  position: relative;
  transition: color var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--teal) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

/* ── Dropdown toggle caret ──
   Bootstrap's default caret uses ::after, which is already taken by our
   gold-underline effect. We suppress the BS caret and inject our own
   chevron via a background-image on a dedicated inline element approach —
   but since we can't add HTML, we use a data-URI chevron on ::before
   (which is free) only for .dropdown-toggle links.
*/
.navbar-nav .nav-link.dropdown-toggle {
  padding-right: 26px !important;  /* room for the chevron */
}

/* Hide Bootstrap's built-in ::after caret so it doesn't fight our underline */
.navbar-nav .nav-link.dropdown-toggle::after {
  display: none !important;
}

/* Inject our own chevron using ::before — free pseudo-element */
.navbar-nav .nav-link.dropdown-toggle::before {
  content: '\f078';             /* fa-chevron-down */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: .6rem;
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  transition: transform var(--transition), color var(--transition);
  line-height: 1;
}

.navbar-nav .nav-link.dropdown-toggle:hover::before,
.navbar-nav .nav-link.dropdown-toggle.show::before {
  color: var(--teal);
}

/* Rotate chevron when dropdown is open */
.navbar-nav .nav-item.dropdown.show > .nav-link.dropdown-toggle::before {
  transform: translateY(-50%) rotate(180deg);
}

/* On mobile, ::before chevron sits inline instead of absolute */
@media (max-width: 991.98px) {
  .navbar-nav .nav-link.dropdown-toggle::before {
    position: static;
    transform: none;
    margin-left: 6px;
    vertical-align: middle;
    display: inline-block;
  }
  .navbar-nav .nav-item.dropdown.show > .nav-link.dropdown-toggle::before {
    transform: rotate(180deg);
  }
}

/* Dropdown */
.dropdown-menu {
  border: none;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  margin-top: 0;
  animation: fadeDropdown .25s ease;
  border-top: 3px solid var(--teal);
  min-width: 220px;
}
@keyframes fadeDropdown {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dropdown-item {
  font-size: .875rem;
  color: var(--gray-800);
  padding: 9px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.dropdown-item:hover {
  background: rgba(27,108,168,.08);
  color: var(--teal);
  padding-left: 22px;
}

.navbar-toggler {
  border: 1.5px solid var(--teal);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
}
.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='%231B6CA8' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
#heroSlider {
  position: relative;
  overflow: hidden;
}
.hero-slide {
  position: relative;
  height: 92vh;
  min-height: 560px;
  max-height: 860px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(11,37,69,.82) 0%,
    rgba(11,37,69,.5) 55%,
    rgba(11,37,69,.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-tag {
  display: inline-block;
  background: rgba(201,168,76,.85);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.hero-lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Swiper custom arrows */
.hero-prev, .hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,.3);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.hero-prev { left: 24px; }
.hero-next { right: 24px; }
.hero-prev:hover, .hero-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* Swiper pagination */
.swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: rgba(255,255,255,.5);
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}

/* ============================================================
   QUICK ACTIONS BAR
   ============================================================ */
.quick-actions {
  background: var(--navy);
  padding: 0;
}
.qa-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: var(--transition);
  cursor: pointer;
}
.qa-item:last-child { border-right: none; }
.qa-item:hover { background: rgba(255,255,255,.07); color: var(--gold-light); }
.qa-item i {
  width: 36px; height: 36px;
  background: rgba(201,168,76,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: .95rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.qa-item:hover i { background: var(--gold); color: var(--navy); }

/* ============================================================
   STATS COUNTER
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 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='%23ffffff' 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");
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
}
.stat-item {
  flex: 1 1 0;
  min-width: 0;
}
.stat-sep {
  width: 1px;
  height: 80px;
  background: rgba(255,255,255,.18);
  flex-shrink: 0;
}
.stat-card {
  text-align: center;
  padding: 0 16px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { color: var(--gold-light); }
.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.stat-icon {
  width: 50px; height: 50px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.25rem;
  color: var(--gold-light);
}
/* keep legacy class harmless */
.stat-divider { display: none; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { padding: 96px 0; background: var(--white); }

.about-img-wrap {
  position: relative;
  padding: 20px 20px 0 0;
}
.about-img-main {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  bottom: -20px;
  right: -16px;
  width: 180px;
  height: 180px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  border: 6px solid #fff;
  box-shadow: var(--shadow-md);
}
.about-badge {
  position: absolute;
  top: 0;
  left: -16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about-badge .lbl { font-size: .72rem; font-weight: 600; letter-spacing: .05em; }

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.about-feature-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(27,108,168,.1), rgba(27,108,168,.05));
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid rgba(27,108,168,.15);
}
.about-feature h6 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.about-feature p { font-size: .85rem; color: var(--gray-600); margin: 0; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { padding: 96px 0; background: var(--gray-100); }

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--teal-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff;
}

.service-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius-md);
  background: rgba(27,108,168,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--teal);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p { font-size: .88rem; color: var(--gray-600); margin: 0; line-height: 1.65; }

/* ============================================================
   MILESTONES / OUR WORK
   ============================================================ */
.milestones-section {
  padding: 96px 0;
  background: var(--white);
}
.milestone-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--cream), #fff);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.milestone-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--gold-light);
}
.milestone-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 8px;
}
.milestone-num span { color: var(--gold); }
.milestone-label { font-size: .95rem; color: var(--gray-600); font-weight: 500; }

/* ============================================================
   EVENTS SECTION
   ============================================================ */
.events-section { padding: 96px 0; background: var(--gray-100); }

.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.event-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.event-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.event-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.event-card:hover .event-img-wrap img { transform: scale(1.06); }
.event-type-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--teal);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.event-date-badge {
  position: absolute;
  bottom: 14px; right: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}
.event-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.event-body h5 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.event-meta { font-size: .8rem; color: var(--gray-400); margin-bottom: 12px; }
.event-meta i { color: var(--teal); margin-right: 4px; }
.event-body p { font-size: .85rem; color: var(--gray-600); flex: 1; margin-bottom: 16px; line-height: 1.6; }
.event-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.event-link:hover { color: var(--gold); gap: 10px; }

/* ============================================================
   NEWS SECTION
   ============================================================ */
.news-section { padding: 96px 0; background: var(--white); }

.news-card {
  display: flex;
  gap: 18px;
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  background: #fff;
  transition: var(--transition);
  height: 100%;
}
.news-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(27,108,168,.2);
  transform: translateY(-3px);
}
.news-img {
  width: 90px; height: 90px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}
.news-img-placeholder {
  width: 90px; height: 90px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  color: var(--teal);
}
.news-body { flex: 1; }
.news-cat {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}
.news-body h6 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.4;
}
.news-body p { font-size: .82rem; color: var(--gray-600); margin: 0; }

/* ============================================================
   GLOBAL PRESENCE
   ============================================================ */
.global-section { padding: 96px 0; background: var(--navy); }
.global-section .section-title { color: #fff; }
.global-section .section-subtitle { color: rgba(255,255,255,.65); }

.presence-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}
.presence-card:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--gold);
  transform: translateY(-4px);
}
.presence-flag {
  font-size: 2.4rem;
  margin-bottom: 10px;
}
.presence-card h6 {
  font-size: .95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.presence-card p { font-size: .8rem; color: rgba(255,255,255,.55); margin: 0; }
.presence-card a { font-size: .8rem; color: var(--gold-light); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: 96px 0; background: var(--cream); }

.testimonial-swiper { padding-bottom: 48px !important; }

.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--teal);
  opacity: .12;
  position: absolute;
  top: 16px; left: 24px;
  line-height: 1;
}
.testimonial-text {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--teal-light);
}
.testimonial-avatar-placeholder {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-size: .95rem; font-weight: 600; color: var(--navy); }
.testimonial-role { font-size: .8rem; color: var(--gray-400); }
.testimonial-stars { color: var(--gold); font-size: .85rem; margin-top: 2px; }

/* ============================================================
   SUBSCRIBE & BROCHURE
   ============================================================ */
.subscribe-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
  position: relative;
  overflow: hidden;
}
.subscribe-section::after {
  content: '';
  position: absolute;
  right: -120px; top: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.subscribe-form .form-control {
  border-radius: 50px 0 0 50px;
  border: none;
  padding: 14px 22px;
  font-size: .95rem;
  outline: none;
  box-shadow: none;
}
.subscribe-form .form-control:focus {
  box-shadow: 0 0 0 3px rgba(201,168,76,.35);
}
.subscribe-form .btn {
  border-radius: 0 50px 50px 0;
  padding: 14px 28px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  padding: 72px 0 0;
}
.footer-logo { height: 56px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-about { font-size: .88rem; line-height: 1.75; color: rgba(255,255,255,.6); }
.footer h6 {
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer h6::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
  display: flex; align-items: center; gap: 7px;
}
.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
}
.footer-contact-item i {
  color: var(--gold-light);
  margin-top: 3px;
  flex-shrink: 0;
}

.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.footer-bottom {
  background: rgba(0,0,0,.25);
  padding: 18px 0;
  margin-top: 56px;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom a { color: var(--gold-light); }

/* ============================================================
   BACK TO TOP
   ============================================================ */
#backToTop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--navy));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  transition: var(--transition);
  z-index: 9999;
  border: none;
}
#backToTop.visible { opacity: 1; transform: translateY(0); }
#backToTop:hover { background: var(--gold); transform: translateY(-2px); }

/* ============================================================
   SECTION PADDING UTILITY
   ============================================================ */
.pt-section { padding-top: 96px; }
.pb-section { padding-bottom: 96px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .navbar-nav .nav-link {
    padding: 12px 0 !important;
  }
  .navbar-nav .nav-link::after { display: none; }
  .qa-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .about-img-main { height: 340px; }
  .about-img-accent { display: none; }
  .about-badge { left: 0; }
  .hero-title { font-size: 2.2rem; }
}

@media (max-width: 767.98px) {
  .topbar .d-md-block { display: none !important; }
  .hero-slide { height: 75vh; }
  .hero-btns { flex-direction: column; }
  .news-card { flex-direction: column; }
  .news-img, .news-img-placeholder { width: 100%; height: 140px; border-radius: var(--radius-sm); }
  .subscribe-form .form-control { border-radius: 50px; margin-bottom: 10px; }
  .subscribe-form .btn { border-radius: 50px; width: 100%; }
  .subscribe-form { flex-direction: column; }
  .section-subtitle { font-size: .95rem; }
}

@media (max-width: 575.98px) {
  .hero-title { font-size: 1.85rem; }
  .hero-prev, .hero-next { display: none; }
  .stat-sep { height: 50px; }
  .stat-icon { width: 38px; height: 38px; font-size: 1rem; }
}