/* ============================================================
   Dembe K – Modern Redesign 2026
   Font: Inter · Colors: Teal #69c2c8 · Orange #ff9500
   ============================================================ */

:root {
  --teal:        #69c2c8;
  --teal-dk:     #4aacb2;
  --teal-lt:     #e8f7f8;
  --orange:      #ff9500;
  --dark:        #0f172a;
  --body:        #64748b;
  --bg:          #f8fafc;
  --white:       #ffffff;
  --border:      #e2e8f0;
  --shadow:      0 4px 24px rgba(15,23,42,0.07);
  --shadow-teal: 0 8px 32px rgba(105,194,200,0.28);
  --radius:      16px;
  --radius-sm:   10px;
  --ease:        cubic-bezier(.4,0,.2,1);
}

/* ---- Reset / Base ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 1.75;
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
}
body.fh5co-overflow { overflow: hidden; }

a { color: var(--teal); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--teal-dk); }

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', 'Open Sans', sans-serif;
  color: var(--dark);
  line-height: 1.2;
  font-weight: 700;
}

/* ---- Utility ----------------------------------------------------- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-wrap  { padding: 96px 0; }
.section-wrap.bg-light { background: var(--bg); }

.section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-heading {
  font-size: 40px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-sub {
  font-size: 17px;
  color: var(--body);
  max-width: 520px;
  line-height: 1.8;
}
.section-divider {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--teal);
  border-radius: 4px;
  margin: 20px 0 40px;
}
.section-divider.center { margin: 20px auto 40px; }

@media (max-width: 768px) {
  .section-wrap  { padding: 64px 0; }
  .section-heading { font-size: 30px; }
}

/* ---- Buttons ----------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .3s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover { background: var(--teal-dk); border-color: var(--teal-dk); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--white); }

.btn-ghost-white {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--white);
  color: var(--white);
}

/* ============================================================
   LOADER
   ============================================================ */
.fh5co-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--white) url('../images/Preloader_2.gif') center no-repeat;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.js-sticky { display: block; }
@media (max-width: 768px) { .js-sticky { display: none; } }

.fh5co-main-nav {
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.fh5co-main-nav.fh5co-shadow {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 24px rgba(15,23,42,0.08);
}
.fh5co-main-nav .container {
  display: flex;
  align-items: center;
  height: 68px;
}

/* Brand */
.nav-brand {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 0.5px;
  word-spacing: 0.2em;
  text-transform: uppercase;
  flex-shrink: 0;
  margin-right: auto;
  white-space: nowrap;
}
.nav-brand span { color: var(--teal); }
.nav-brand:hover { color: var(--dark); }

/* Links */
.fh5co-menu-1 { display: flex; align-items: center; gap: 4px; }
.fh5co-menu-1 a {
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #94a3b8;
  border-radius: 8px;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.fh5co-menu-1 a:hover { color: var(--dark); background: var(--bg); }
.fh5co-menu-1 a.active { color: var(--teal); }

/* ============================================================
   HERO
   ============================================================ */
#home {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 300px;
}
.fh5co-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg,
    rgba(10,18,40,0.82) 0%,
    rgba(10,18,40,0.50) 60%,
    rgba(10,18,40,0.30) 100%);
  z-index: 1;
}
#home > .container { position: relative; z-index: 2; }

/* fh5co-copy / fh5co-copy-inner kept for main.js fullHeight */
.fh5co-copy { display: table; width: 100%; }
.fh5co-copy-inner {
  display: table-cell;
  vertical-align: middle;
  padding: 60px 0 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.fh5co-copy-inner h1 {
  font-size: 68px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.fh5co-copy-inner h1 em {
  color: var(--orange);
  font-style: normal;
}
.fh5co-copy-inner h2 {
  font-size: 20px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  line-height: 1.6;
  letter-spacing: 0.5px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .fh5co-copy-inner h1 { font-size: 42px; letter-spacing: -0.5px; }
  .fh5co-copy-inner h2 { font-size: 17px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .fh5co-copy-inner h1 { font-size: 34px; }
}

/* ============================================================
   ABOUT
   ============================================================ */
#about {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  background: var(--white);
}
#about .fh5co-2col { width: 50%; }
@media (max-width: 768px) { #about .fh5co-2col { width: 100%; } }

/* Text panel */
#about .fh5co-2col-inner {
  padding: 80px 64px;
  max-width: 600px;
  margin-left: auto;
  margin-right: 0;
}
#about .fh5co-2col-inner.left { float: right; }

@media (max-width: 1200px) { #about .fh5co-2col-inner { padding: 64px 40px; } }
@media (max-width: 992px)  { #about .fh5co-2col-inner { padding: 56px 28px; max-width: 100%; } }
@media (max-width: 768px)  {
  #about .fh5co-2col-inner { padding: 56px 24px; width: 100%; float: none; max-width: 100%; }
}

/* Image grid */
.fh5co-grid { display: flex; flex-wrap: wrap; height: 100%; }
.fh5co-grid-item {
  width: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform .4s var(--ease), filter .4s var(--ease);
  overflow: hidden;
}
.fh5co-grid-item:hover { filter: brightness(1.1); transform: scale(1.02); }
@media (max-width: 768px) { .fh5co-grid-item { height: 220px !important; } }
@media (max-width: 480px) { .fh5co-grid-item { width: 100%; height: 200px !important; } }

/* Tabs */
.fh5co-tabs-container { position: relative; }
.fh5co-tabs {
  list-style: none;
  display: flex;
  border-bottom: 2px solid var(--border);
  margin-bottom: 32px;
}
.fh5co-tabs.fh5co-three li { width: 33.33%; }
.fh5co-tabs li { text-align: center; }
.fh5co-tabs li a {
  display: block;
  padding: 14px 4px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #94a3b8;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .25s, border-color .25s;
}
.fh5co-tabs li a:hover       { color: var(--dark); }
.fh5co-tabs li.active a      { color: var(--teal); border-bottom-color: var(--teal); }
@media (max-width: 480px) { .fh5co-tabs li { width: 100% !important; } }

.fh5co-tab-content         { display: none; }
.fh5co-tab-content.active  { display: block; animation: fadeIn .35s ease; }
.fh5co-tab-content p       { font-size: 16px; color: var(--body); line-height: 1.8; margin-bottom: 16px; }
.fh5co-tab-content .motto  {
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.6;
  border-left: 3px solid var(--teal);
  padding-left: 20px;
  margin: 8px 0 28px;
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  padding: 96px 0;
  background: var(--bg);
  position: relative;
}
@media (max-width: 768px) { #services { padding: 64px 0; } }

/* Floating video button */
.fh5co-video {
  position: absolute;
  top: -46px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 5;
}
.fh5co-video span {
  display: block;
  padding-top: 98px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--body);
}
.fh5co-video a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  font-size: 28px;
  box-shadow: var(--shadow-teal);
  transition: all .3s var(--ease);
}
.fh5co-video a:hover { background: #25D366; transform: scale(1.12); color: var(--white); }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .services-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 480px)  { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
  transform: translateY(-6px);
  z-index: 2;
}
.service-card-img-wrap {
  width: 100%;
  height: 200px !important;
  max-height: 200px !important;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  flex-shrink: 0;
  display: block;
}
.service-card-img {
  width: 100% !important;
  height: 200px !important;
  max-height: 200px !important;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .5s var(--ease);
}
.service-card:hover .service-card-img { transform: scale(1.06); }
.service-card-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  margin: 0;
  line-height: 1.4;
}
.service-card .btn { align-self: flex-start; padding: 9px 20px; font-size: 10px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section { background: var(--white); }
.gallery-section .container { padding-bottom: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  clear: both;
}
@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 768px)  { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* Keep #fh5co-gallery float-based layout working with old magnific popup */
#fh5co-gallery {
  clear: both;
  float: left;
  width: 100%;
}
#fh5co-gallery .fh5co-item {
  display: block;
  position: relative;
  width: 20%;
  float: left;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 240px;
  overflow: hidden;
  transition: transform .4s var(--ease);
}
@media (max-width: 1024px) { #fh5co-gallery .fh5co-item { width: 25%; height: 200px; } }
@media (max-width: 768px)  { #fh5co-gallery .fh5co-item { width: 33.33%; height: 180px; } }
@media (max-width: 480px)  { #fh5co-gallery .fh5co-item { width: 50%; height: 160px; } }

#fh5co-gallery .fh5co-item:hover { transform: scale(1.02); z-index: 2; }

#fh5co-gallery .fh5co-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(105,194,200,0.9) 0%, rgba(105,194,200,0.4) 100%);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 1;
}
#fh5co-gallery .fh5co-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
#fh5co-gallery .fh5co-copy-inner h2,
#fh5co-gallery .fh5co-copy-inner h3 {
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  transition: all .3s ease;
  margin: 0;
}
#fh5co-gallery .fh5co-copy-inner h2 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
  transform: translateY(8px);
}
#fh5co-gallery .fh5co-copy-inner h3 {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  transform: translateY(8px);
}
#fh5co-gallery .fh5co-item:hover .fh5co-overlay         { opacity: 1; }
#fh5co-gallery .fh5co-item:hover .fh5co-copy-inner h2,
#fh5co-gallery .fh5co-item:hover .fh5co-copy-inner h3   {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#fh5co-gallery .fh5co-item:focus,
#fh5co-gallery .fh5co-item:hover { text-decoration: none; }

/* Masonry gallery */
.gallery-masonry {
  column-count: 4;
  column-gap: 6px;
  padding: 0;
}
.gal-item {
  break-inside: avoid;
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 6px;
  border-radius: var(--radius-sm);
}
.gal-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s var(--ease);
}
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(105,194,200,.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.gal-overlay span {
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.gal-item:hover img { transform: scale(1.05); }
.gal-item:hover .gal-overlay { opacity: 1; }
@media (max-width: 1024px) { .gallery-masonry { column-count: 3; } }
@media (max-width: 768px)  { .gallery-masonry { column-count: 2; } }
@media (max-width: 480px)  { .gallery-masonry { column-count: 1; } }

/* ============================================================
   TEAM
   ============================================================ */
#team { padding: 96px 0; background: var(--bg); clear: both; }
@media (max-width: 768px) { #team { padding: 64px 0; } }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .team-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

/* Last row: 2 items centred */
.team-grid .person:nth-child(4) { grid-column-start: 1; }
@media (min-width: 769px) {
  .team-grid .person:nth-child(4) { grid-column-start: 1; }
  .team-grid.five-members .person:nth-child(4) { grid-column: 1 / span 1; margin-left: calc(50% + 12px); }
  .team-grid.five-members .person:nth-child(4),
  .team-grid.five-members .person:nth-child(5) { grid-row: 2; }
  .team-grid.five-members { grid-template-rows: auto auto; }
  /* Simpler centering for last 2 */
  .team-last-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
  }
  .team-last-row .person { width: calc(33.33% - 12px); max-width: 360px; }
}
@media (max-width: 768px) {
  .team-last-row { gap: 16px; }
  .team-last-row .person { width: calc(50% - 8px); }
}

.person {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 24px 28px;
  text-align: center;
  transition: all .35s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.person:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
  transform: translateY(-6px);
}
.person img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
  border: 3px solid var(--teal-lt);
  transition: border-color .3s;
}
.person:hover img { border-color: var(--teal); }
.person h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.person h4 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--teal);
  margin-bottom: 18px;
}
.social { display: flex; gap: 8px; justify-content: center; list-style: none; }
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: #cbd5e1;
  font-size: 14px;
  transition: all .25s var(--ease);
}
.social a:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }

/* ============================================================
   CONTACT
   ============================================================ */
#contact { padding: 96px 0; background: var(--bg); }
@media (max-width: 768px) { #contact { padding: 64px 0; } }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* Left column wrapper */
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Contact info card */
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 20px;
}

.info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.info-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--teal-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 17px;
}
.info-text { font-size: 14px; line-height: 1.7; }
.info-text strong {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 2px;
}
.info-text a { color: var(--body); }
.info-text a:hover { color: var(--teal); }

/* Banking details card */
.bank-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  border-top: 3px solid var(--teal);
}
.bank-card h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--teal);
  margin-bottom: 16px;
}
.bank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.bank-row:last-child { border-bottom: none; padding-bottom: 0; }
.bank-row span { color: var(--body); }
.bank-row strong { color: var(--dark); font-weight: 600; }

/* Form card */
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 36px;
}
@media (max-width: 480px) { .contact-form-card { padding: 24px 20px; } }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-control {
  display: block;
  width: 100%;
  padding: 12px 0;
  font-size: 15px;
  font-family: 'Inter', 'Open Sans', sans-serif;
  font-weight: 400;
  color: var(--dark);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border);
  border-radius: 0;
  outline: none;
  transition: border-color .25s;
}
.form-control:focus { border-bottom-color: var(--teal); }
.form-control::placeholder { color: #cbd5e1; }

textarea.form-control {
  resize: vertical;
  height: 120px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
}
textarea.form-control:focus { border-color: var(--teal); }

select.form-control { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2394a3b8' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 2px center; }

.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input { margin-top: 4px; accent-color: var(--teal); }
.form-check label { font-size: 13px; text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--body); cursor: pointer; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--dark);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.footer-brand span { color: var(--teal); }
.footer-copy { font-size: 13px; color: #64748b; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  color: #64748b;
  font-size: 15px;
  transition: all .25s;
}
.footer-social a:hover { background: var(--teal); border-color: var(--teal); color: var(--white); }
@media (max-width: 600px) { .footer-inner { flex-direction: column; text-align: center; } .footer-social { justify-content: center; } }

/* ============================================================
   GO TO TOP
   ============================================================ */
.gototop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all .3s var(--ease);
}
.gototop.active { opacity: 1; visibility: visible; }
.gototop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  font-size: 16px;
  box-shadow: var(--shadow-teal);
  transition: all .3s var(--ease);
}
.gototop a:hover { background: var(--teal-dk); transform: translateY(-3px); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 84px;
  right: 28px;
  z-index: 999;
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: all .3s var(--ease);
}
.whatsapp-float:hover { background: #1ebe5d; transform: scale(1.1); }

/* ============================================================
   OFF-CANVAS MOBILE MENU  (created by main.js)
   ============================================================ */
#fh5co-offcanvas,
#main-container,
.fh5co-nav-toggle,
#footer { transition: .5s ease; }

#main-container,
.fh5co-nav-toggle,
#footer { z-index: 2; position: relative; }

#fh5co-offcanvas {
  display: block;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 270px;
  z-index: 200;
  background: #0a0f1e;
  padding: 80px 24px 24px;
  overflow-y: auto;
  transform: translateX(-270px);
  transition: .5s ease;
}
#fh5co-offcanvas a {
  display: block;
  color: rgba(255,255,255,.4);
  padding: 12px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.05);
  text-align: center;
  transition: color .25s;
}
#fh5co-offcanvas a:last-child { border: none; }
#fh5co-offcanvas a:hover,
#fh5co-offcanvas a.active     { color: var(--teal); }

.offcanvas-visible #fh5co-offcanvas  { transform: translateX(0); }
.offcanvas-visible #main-container,
.offcanvas-visible #footer,
.offcanvas-visible .fh5co-nav-toggle { transform: translateX(270px); }

/* Hamburger */
.fh5co-nav-toggle {
  position: fixed;
  top: 16px; left: 16px;
  z-index: 9999;
  display: none;
  cursor: pointer;
  background: rgba(15,23,42,.75);
  padding: 8px 10px 12px;
  border-radius: 8px;
  border-bottom: none !important;
  backdrop-filter: blur(8px);
}
@media (max-width: 768px) { .fh5co-nav-toggle { display: block; } }
.fh5co-nav-toggle i {
  position: relative;
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--white);
  font-style: normal; text-indent: -9999px;
  transition: .2s ease-out;
}
.fh5co-nav-toggle i::before,
.fh5co-nav-toggle i::after {
  content: ''; position: absolute; left: 0;
  width: 24px; height: 2px;
  background: var(--white);
  transition: .2s ease;
}
.fh5co-nav-toggle i::before { top: -7px; }
.fh5co-nav-toggle i::after  { bottom: -7px; }
.fh5co-nav-toggle.active i              { background: transparent; }
.fh5co-nav-toggle.active i::before      { top: 0; transform: rotateZ(45deg); }
.fh5co-nav-toggle.active i::after       { bottom: 0; transform: rotateZ(-45deg); }
.fh5co-nav-toggle:hover i::before       { top: -9px; }
.fh5co-nav-toggle:hover i::after        { bottom: -9px; }
.fh5co-nav-toggle:hover,
.fh5co-nav-toggle:focus,
.fh5co-nav-toggle:active                { outline: none; border-bottom: none !important; }

/* Magnific popup */
.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg                  { opacity: 0; transition: all .3s ease-out; }
.mfp-with-zoom.mfp-ready .mfp-container{ opacity: 1; }
.mfp-with-zoom.mfp-ready.mfp-bg        { opacity: .85; }
.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg     { opacity: 0; }
