/* ==========================================================================
   DNA 1st Solution — Premium Corporate Design System
   Palette: deep navy ink, Pacific teal, warm gold accent
   ========================================================================== */

:root {
  --dna-navy: #0b1e2d;
  --dna-navy-2: #12293b;
  --dna-ink: #16303f;
  --dna-teal: #0e7c86;
  --dna-teal-bright: #19a7b3;
  --dna-teal-soft: #e3f3f4;
  --dna-gold: #d9a441;
  --dna-gold-soft: #f7ead0;
  --dna-white: #ffffff;
  --dna-off: #f6f8f9;
  --dna-grey: #5c6b76;
  --dna-line: #e2e8ec;
  --font-display: "Sora", sans-serif;
  --font-body: "Inter", sans-serif;
  --shadow-sm: 0 2px 12px rgba(11, 30, 45, 0.08);
  --shadow-md: 0 12px 40px rgba(11, 30, 45, 0.12);
  --shadow-lg: 0 24px 70px rgba(11, 30, 45, 0.18);
  --radius: 18px;
  --radius-lg: 28px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--dna-ink);
  background: var(--dna-white);
  overflow-x: hidden;
  line-height: 1.65;
}

h1, h2, h3, h4, h5, .display-font {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--dna-navy);
  letter-spacing: -0.02em;
}

::selection { background: var(--dna-teal); color: #fff; }

/* ---------- Preloader ---------- */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dna-navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.done { opacity: 0; visibility: hidden; }
#preloader .loader-mark {
  width: 64px; height: 64px;
  border: 3px solid rgba(255,255,255,0.15);
  border-top-color: var(--dna-teal-bright);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--dna-teal);
}
.eyebrow::before {
  content: ""; width: 34px; height: 2px;
  background: linear-gradient(90deg, var(--dna-gold), var(--dna-teal));
}
.eyebrow.on-dark { color: var(--dna-teal-bright); }

.section-pad { padding: 110px 0; }
.section-pad-sm { padding: 70px 0; }

.lead-text { font-size: 1.15rem; color: var(--dna-grey); }

.text-gradient {
  background: linear-gradient(100deg, var(--dna-teal-bright), var(--dna-gold));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn-dna {
  --bs-btn-padding-x: 1.9rem;
  --bs-btn-padding-y: 0.9rem;
  font-family: var(--font-display);
  font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: 60px;
  position: relative; overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}
.btn-dna:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-dna-primary {
  background: linear-gradient(115deg, var(--dna-teal), var(--dna-teal-bright));
  border: none; color: #fff;
}
.btn-dna-primary:hover { color: #fff; }
.btn-dna-gold {
  background: linear-gradient(115deg, var(--dna-gold), #eebd63);
  border: none; color: var(--dna-navy);
}
.btn-dna-gold:hover { color: var(--dna-navy); }
.btn-dna-ghost {
  background: transparent; color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-dna-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; border-color: #fff; }
.btn-dna-outline {
  background: transparent; color: var(--dna-teal);
  border: 1.5px solid var(--dna-teal);
}
.btn-dna-outline:hover { background: var(--dna-teal); color: #fff; }

/* ---------- Navbar ---------- */
.dna-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1030;
  padding: 22px 0;
  transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}
.dna-navbar .navbar-brand {
  display: inline-flex;
  align-items: flex-end;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
}
.dna-navbar .navbar-brand .brand-icon {
  height: 42px;
  width: auto;
  transition: height 0.4s ease;
}
.dna-navbar .navbar-brand .brand-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dna-teal-bright);
  letter-spacing: 0.02em;
}
.dna-navbar .nav-link {
  font-family: var(--font-display);
  font-size: 0.86rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.85) !important;
  padding: 0.5rem 0.9rem !important;
  position: relative;
  transition: color 0.3s ease;
}
.dna-navbar .nav-link::after {
  content: ""; position: absolute; left: 0.9rem; right: 0.9rem; bottom: 2px;
  height: 2px; background: var(--dna-gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.dna-navbar .nav-link:hover::after,
.dna-navbar .nav-link.active::after { transform: scaleX(1); }
.dna-navbar .nav-link.active { color: #fff !important; }
.dna-navbar.scrolled {
  padding: 10px 0;
  background: rgba(11, 30, 45, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px rgba(0,0,0,0.18);
}
.dna-navbar.scrolled .navbar-brand .brand-icon { height: 34px; }
.dna-navbar .navbar-toggler { border: none; color: #fff; font-size: 1.4rem; }
.dna-navbar .navbar-toggler:focus { box-shadow: none; }
@media (max-width: 991px) {
  .dna-navbar { background: rgba(11, 30, 45, 0.96); backdrop-filter: blur(14px); }
  .dna-navbar .navbar-collapse { padding: 18px 0; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  color: #fff; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.15);
}
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(11,30,45,0.94) 20%, rgba(11,30,45,0.62) 55%, rgba(14,124,134,0.32) 100%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; opacity: 0.5; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}
.hero-content { position: relative; z-index: 2; padding: 160px 0 120px; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 800;
  line-height: 1.06;
  margin-bottom: 1.4rem;
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: inline-block; }
.hero-sub {
  font-size: 1.18rem; max-width: 620px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.4rem;
}
.hero-badges { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 3rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 60px;
  font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,0.88);
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,0.06);
}
.hero-badge i { color: var(--dna-gold); }
.scroll-cue {
  position: absolute; bottom: 34px; left: 50%;
  transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.6);
  font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-cue .cue-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, var(--dna-gold), transparent);
  animation: cue 2s ease-in-out infinite;
}
@keyframes cue {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.55); opacity: 0.5; }
}

/* Inner page hero */
.hero-inner {
  position: relative; min-height: 62vh;
  display: flex; align-items: flex-end;
  color: #fff; overflow: hidden;
  padding-bottom: 80px;
}
.hero-inner h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800; line-height: 1.08;
}
.hero-inner .breadcrumb {
  --bs-breadcrumb-divider-color: rgba(255,255,255,0.4);
  --bs-breadcrumb-item-active-color: var(--dna-gold);
  font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.hero-inner .breadcrumb a { color: rgba(255,255,255,0.72); text-decoration: none; }
.hero-inner .breadcrumb a:hover { color: #fff; }

/* ---------- Marquee ---------- */
.marquee-band {
  background: var(--dna-navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 64px; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: flex; align-items: center; gap: 64px;
  white-space: nowrap;
}
.marquee-track span::after { content: "✦"; color: var(--dna-gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Stats ---------- */
.stats-band { background: var(--dna-navy); position: relative; overflow: hidden; }
.stats-band::before {
  content: ""; position: absolute; top: -120px; right: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(25,167,179,0.18), transparent 70%);
}
.stat-item { text-align: center; padding: 26px 12px; }
.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 800; color: #fff; line-height: 1;
}
.stat-item .stat-num em { font-style: normal; color: var(--dna-gold); }
.stat-item .stat-label {
  margin-top: 10px;
  font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* ---------- Service cards ---------- */
.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--dna-white);
  border: 1px solid var(--dna-line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
  height: 100%;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-card .card-media { position: relative; height: 250px; overflow: hidden; }
.service-card .card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.service-card:hover .card-media img { transform: scale(1.07); }
.service-card .card-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,30,45,0.55), transparent 60%);
}
.service-card .card-flag {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  padding: 6px 16px; border-radius: 40px;
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: rgba(11,30,45,0.72); color: #fff;
  backdrop-filter: blur(8px);
}
.service-card .card-flag.gold { background: var(--dna-gold); color: var(--dna-navy); }
.service-card .card-body { padding: 30px; }
.service-card h3 { font-size: 1.35rem; margin-bottom: 0.7rem; }
.service-card p { color: var(--dna-grey); font-size: 0.96rem; margin-bottom: 1.2rem; }
.card-link {
  font-family: var(--font-display); font-weight: 600; font-size: 0.9rem;
  color: var(--dna-teal); text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.card-link i { transition: transform 0.3s ease; }
.card-link:hover { color: var(--dna-navy); }
.card-link:hover i { transform: translateX(6px); }

/* ---------- Split feature ---------- */
.split-feature { position: relative; }
.split-feature .feature-media {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
}
.split-feature .feature-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-feature .feature-media::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}
.split-feature .float-chip {
  position: absolute; z-index: 3;
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 18px 24px;
  display: flex; align-items: center; gap: 14px;
}
.float-chip .chip-icon {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--dna-teal-soft); color: var(--dna-teal);
  display: grid; place-items: center; font-size: 1.2rem;
}
.float-chip .chip-title { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--dna-navy); line-height: 1.2; }
.float-chip .chip-sub { font-size: 0.8rem; color: var(--dna-grey); }

.feature-list { list-style: none; padding: 0; margin: 26px 0 0; }
.feature-list li {
  display: flex; gap: 16px; padding: 14px 0;
  border-bottom: 1px solid var(--dna-line);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .fi {
  flex: 0 0 40px; width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--dna-teal-soft); color: var(--dna-teal);
  display: grid; place-items: center;
}
.feature-list strong { display: block; font-family: var(--font-display); color: var(--dna-navy); font-size: 0.98rem; }
.feature-list span { font-size: 0.9rem; color: var(--dna-grey); }

/* ---------- Impact / social purpose ---------- */
.impact-section {
  background: linear-gradient(160deg, var(--dna-navy) 0%, #0e2c40 60%, #103a45 100%);
  color: #fff; position: relative; overflow: hidden;
}
.impact-section::before {
  content: ""; position: absolute; bottom: -160px; left: -160px;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(217,164,65,0.14), transparent 70%);
}
.impact-section h2 { color: #fff; }
.impact-section .lead-text { color: rgba(255,255,255,0.75); }
.impact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 30px; height: 100%;
  backdrop-filter: blur(8px);
  transition: transform 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}
.impact-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.09);
  border-color: rgba(217,164,65,0.5);
}
.impact-card .impact-icon {
  width: 54px; height: 54px; border-radius: 16px;
  display: grid; place-items: center; font-size: 1.4rem;
  background: linear-gradient(135deg, var(--dna-teal), var(--dna-teal-bright));
  color: #fff; margin-bottom: 18px;
}
.impact-card h3 { color: #fff; font-size: 1.15rem; margin-bottom: 0.6rem; }
.impact-card p { color: rgba(255,255,255,0.68); font-size: 0.93rem; margin: 0; }

.kotare-quote {
  position: relative;
  border-left: 3px solid var(--dna-gold);
  padding: 8px 0 8px 28px;
  margin-top: 44px;
}
.kotare-quote p {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 500; font-style: italic;
  color: rgba(255,255,255,0.9); margin: 0;
}
.kotare-quote cite {
  display: block; margin-top: 12px;
  font-size: 0.85rem; font-style: normal;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--dna-gold);
}

/* ---------- Testimonials ---------- */
.testimonial-slide { padding: 10px; }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--dna-line);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-sm);
  position: relative; height: 100%;
}
.testimonial-card .quote-mark {
  font-family: var(--font-display);
  font-size: 5rem; line-height: 0.6;
  color: var(--dna-teal-soft);
  position: absolute; top: 34px; right: 38px;
}
.testimonial-card blockquote {
  font-size: 1.12rem; color: var(--dna-ink);
  font-weight: 400; line-height: 1.75;
  margin-bottom: 28px; position: relative; z-index: 1;
}
.testimonial-card .t-person { display: flex; align-items: center; gap: 16px; }
.testimonial-card .t-person img {
  width: 58px; height: 58px; border-radius: 50%;
  object-fit: cover; border: 3px solid var(--dna-teal-soft);
}
.testimonial-card .t-person strong { font-family: var(--font-display); color: var(--dna-navy); display: block; }
.testimonial-card .t-person span { font-size: 0.85rem; color: var(--dna-grey); }
.testimonial-card .t-stars { color: var(--dna-gold); font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 14px; }

/* ---------- Logo strip ---------- */
.logo-strip { padding: 54px 0; border-bottom: 1px solid var(--dna-line); }
.logo-strip .logo-label {
  text-align: center;
  font-size: 0.8rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--dna-grey); margin-bottom: 26px;
}
.logo-pill {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 30px; margin: 6px;
  border: 1px solid var(--dna-line); border-radius: 60px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  color: var(--dna-navy);
  background: var(--dna-off);
  transition: all 0.3s ease;
}
.logo-pill:hover { border-color: var(--dna-teal); color: var(--dna-teal); transform: translateY(-3px); box-shadow: var(--shadow-sm); }

/* ---------- Process steps ---------- */
.process-step {
  position: relative; padding: 36px 28px;
  border-radius: var(--radius);
  background: var(--dna-off);
  height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}
.process-step:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); background: #fff; }
.process-step .step-num {
  font-family: var(--font-display);
  font-size: 3.2rem; font-weight: 800; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--dna-teal);
  margin-bottom: 18px;
}
.process-step h3 { font-size: 1.12rem; margin-bottom: 0.55rem; }
.process-step p { font-size: 0.92rem; color: var(--dna-grey); margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(115deg, rgba(11,30,45,0.95) 30%, rgba(14,124,134,0.85));
  color: #fff;
  padding: 84px 60px;
  box-shadow: var(--shadow-lg);
}
.cta-band > .cta-bg {
  position: absolute; inset: 0; z-index: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta-band > .cta-bg-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(115deg, rgba(11,30,45,0.93) 30%, rgba(14,124,134,0.82));
}
.cta-band > .container,
.cta-band > .row,
.cta-band .cta-inner { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
.cta-band p { color: rgba(255,255,255,0.8); max-width: 560px; }
@media (max-width: 767px) { .cta-band { padding: 54px 28px; } }

/* ---------- Forms ---------- */
.dna-form .form-label {
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--dna-navy);
}
.dna-form .form-control, .dna-form .form-select {
  border: 1.5px solid var(--dna-line);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  font-size: 0.98rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.dna-form .form-control:focus, .dna-form .form-select:focus {
  border-color: var(--dna-teal);
  box-shadow: 0 0 0 4px rgba(14,124,134,0.12);
}
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 46px;
  border: 1px solid var(--dna-line);
}
@media (max-width: 767px) { .form-card { padding: 30px 22px; } }

/* ---------- Info tiles ---------- */
.info-tile {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--dna-off);
  border: 1px solid var(--dna-line);
  height: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.info-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: #fff; }
.info-tile .tile-icon {
  flex: 0 0 52px; width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--dna-teal), var(--dna-teal-bright));
  color: #fff; display: grid; place-items: center; font-size: 1.25rem;
}
.info-tile strong { font-family: var(--font-display); color: var(--dna-navy); display: block; margin-bottom: 4px; }
.info-tile span, .info-tile a { font-size: 0.95rem; color: var(--dna-grey); text-decoration: none; }
.info-tile a:hover { color: var(--dna-teal); }

/* ---------- Team ---------- */
.team-card {
  border-radius: var(--radius); overflow: hidden;
  background: #fff; border: 1px solid var(--dna-line);
  box-shadow: var(--shadow-sm); height: 100%;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.team-card .team-photo { height: 300px; overflow: hidden; }
.team-card .team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-card .team-body { padding: 22px 24px; }
.team-card h3 { font-size: 1.1rem; margin-bottom: 2px; }
.team-card .team-role { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dna-teal); font-weight: 600; }

/* ---------- Gallery ---------- */
.gallery-item {
  border-radius: var(--radius); overflow: hidden;
  position: relative; display: block;
}
.gallery-item img {
  width: 100%; height: 260px; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,30,45,0.5), transparent 55%);
  opacity: 0; transition: opacity 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 1; }

/* ---------- Footer ---------- */
.dna-footer {
  background: var(--dna-navy);
  color: rgba(255,255,255,0.72);
  padding: 84px 0 0;
  position: relative; overflow: hidden;
}
.dna-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--dna-teal), var(--dna-gold), var(--dna-teal));
}
.dna-footer h5 {
  color: #fff; font-size: 0.92rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 22px;
}
.dna-footer a { color: rgba(255,255,255,0.68); text-decoration: none; transition: color 0.3s ease; }
.dna-footer a:hover { color: var(--dna-gold); }
.dna-footer .footer-links { list-style: none; padding: 0; margin: 0; }
.dna-footer .footer-links li { padding: 6px 0; }
.dna-footer .footer-contact li { display: flex; gap: 12px; padding: 8px 0; list-style: none; }
.dna-footer .footer-contact { padding: 0; margin: 0; }
.dna-footer .footer-contact i { color: var(--dna-teal-bright); margin-top: 4px; }
.dna-footer .social-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: inline-grid; place-items: center;
  color: rgba(255,255,255,0.8);
  transition: all 0.3s ease; margin-right: 10px;
}
.dna-footer .social-btn:hover {
  background: var(--dna-teal); border-color: var(--dna-teal); color: #fff;
  transform: translateY(-4px);
}
.dna-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 60px; padding: 24px 0;
  font-size: 0.86rem;
}

/* ---------- Floating staff CTA ---------- */
.staff-cta-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 1020;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px; border-radius: 60px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  color: var(--dna-navy); text-decoration: none;
  background: linear-gradient(115deg, var(--dna-gold), #eebd63);
  box-shadow: 0 14px 40px rgba(217,164,65,0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.staff-cta-float:hover { transform: translateY(-4px) scale(1.03); color: var(--dna-navy); box-shadow: 0 20px 50px rgba(217,164,65,0.55); }
.staff-cta-float .pulse-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--dna-navy);
  animation: pulse-dot 1.8s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.55; }
}
@media (max-width: 575px) { .staff-cta-float { bottom: 16px; right: 16px; padding: 12px 20px; font-size: 0.85rem; } }

/* ---------- Reveal helpers (JS animates these) ---------- */
.reveal-up, .reveal-left, .reveal-right, .reveal-scale { opacity: 0; }
.no-js .reveal-up, .no-js .reveal-left, .no-js .reveal-right, .no-js .reveal-scale { opacity: 1; }

/* ---------- Accordion ---------- */
.dna-accordion .accordion-item {
  border: 1px solid var(--dna-line);
  border-radius: var(--radius) !important;
  overflow: hidden;
  margin-bottom: 14px;
}
.dna-accordion .accordion-button {
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.02rem;
  color: var(--dna-navy);
  padding: 20px 26px;
}
.dna-accordion .accordion-button:not(.collapsed) {
  background: var(--dna-teal-soft);
  color: var(--dna-teal);
  box-shadow: none;
}
.dna-accordion .accordion-button:focus { box-shadow: none; border: none; }
.dna-accordion .accordion-body { color: var(--dna-grey); }

/* ---------- Responsive tweaks ---------- */
@media (max-width: 991px) {
  .section-pad { padding: 80px 0; }
  .hero-content { padding: 140px 0 100px; }
}
