:root {
  --cyan: #06b6d4;
  --cyan-dark: #0891b2;
  --cyan-light: #cffafe;
  --cyan-xlight: #ecfeff;
  --dark: #0f1a20;
  --dark2: #0a2a35;
  --dark3: #0e3d4a;
  --text: #1e3a42;
  --muted: #6b8f99;
  --border: #e0f2f7;
  --white: #ffffff;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: #f0fafc;
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 6%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(6, 182, 212, 0.07);
}
.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo span {
  color: var(--cyan);
}
.nav-links {
  display: flex;
  gap: 28px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--cyan);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-book {
  background: var(--cyan);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
}
.nav-book:hover {
  background: var(--cyan-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(6, 182, 212, 0.35);
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, #0f1a20 0%, #0a2a35 55%, #0e3d4a 100%);
  padding: 72px 6% 64px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(var(--cyan) 1px, transparent 1px),
    linear-gradient(90deg, var(--cyan) 1px, transparent 1px);
  background-size: 40px 40px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 40%,
    rgba(6, 182, 212, 0.18),
    transparent 60%
  );
  pointer-events: none;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 9s ease-in-out infinite;
}
.orb1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.13), transparent);
  top: -100px;
  right: -80px;
}
.orb2 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08), transparent);
  bottom: -60px;
  left: 5%;
  animation-delay: -4s;
}
@keyframes orbFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-left {
  max-width: 560px;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4.5vw, 54px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.hero h1 em {
  color: var(--cyan);
  font-style: italic;
}
.hero p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 24px;
}
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 50px;
  border-bottom: 3px solid var(--cyan-dark);
  transition: all 0.2s;
}
.back-btn:hover {
  background: var(--cyan-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(6, 182, 212, 0.4);
}

/* Hero stats card */
.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(6, 182, 212, 0.18);
  border-radius: 20px;
  padding: 28px 32px;
  backdrop-filter: blur(8px);
  min-width: 220px;
}
.hero-card-title {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 16px;
}
.hc-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.hc-stat:last-child {
  margin-bottom: 0;
}
.hc-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(6, 182, 212, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 14px;
  flex-shrink: 0;
}
.hc-num {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hc-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 1px;
}

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  background: var(--dark2);
  padding: 14px 0;
  border-top: 1px solid rgba(6, 182, 212, 0.08);
  border-bottom: 1px solid rgba(6, 182, 212, 0.08);
}
.mq-track {
  display: flex;
  animation: mqScroll 24s linear infinite;
  white-space: nowrap;
}
.mq-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 28px;
  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.04em;
}
.mq-dot {
  width: 4px;
  height: 4px;
  background: var(--cyan);
  border-radius: 50%;
  opacity: 0.5;
}
@keyframes mqScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── FEATURED — OWNER ── */
.owner-section {
  padding: 72px 6%;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.owner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.owner-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

/* Photo side */
.owner-photo-wrap {
  position: relative;
}
.owner-photo-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.owner-photo-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.owner-photo-wrap:hover .owner-photo-frame img {
  transform: scale(1.04);
}
/* Decorative border */
.owner-border {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 28px;
  pointer-events: none;
  transition: transform 0.5s;
}
.owner-photo-wrap:hover .owner-border {
  transform: translate(6px, 6px);
}
/* Role badge */
.owner-badge {
  position: absolute;
  bottom: -18px;
  left: 28px;
  background: var(--cyan);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 22px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
}
/* Number badge */
.owner-num {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(15, 26, 32, 0.7);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(6, 182, 212, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--cyan);
}

/* Info side */
.owner-info {
  padding-top: 12px;
}
.owner-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.owner-eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--cyan);
}
.owner-name {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  margin-bottom: 6px;
}
.owner-role {
  font-size: 15px;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.owner-role::before {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--cyan);
}
.owner-quote {
  background: var(--cyan-xlight);
  border-left: 3px solid var(--cyan);
  border-radius: 0 14px 14px 0;
  padding: 16px 20px;
  font-family: "Playfair Display", serif;
  font-size: 17px;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 24px;
}
.owner-bio {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 28px;
}
/* Skills tags */
.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.skill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cyan-xlight);
  border: 1px solid var(--cyan-light);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
}
/* Social */
.owner-socials {
  display: flex;
  gap: 10px;
}
.o-soc {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.o-soc:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ── TEAM GRID ── */
.team-section {
  padding: 72px 6% 80px;
  background: #f0fafc;
}
.section-header {
  margin-bottom: 52px;
}
.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cyan-xlight);
  border: 1px solid var(--cyan-light);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.sec-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.sec-title em {
  font-style: italic;
  color: var(--cyan);
}
.sec-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
}

/* Team cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: #fff;
  border-radius: 22px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(6, 182, 212, 0.05);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(6, 182, 212, 0.13);
  border-color: rgba(6, 182, 212, 0.3);
}
/* Top color bar */
.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--cyan-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.team-card:hover::before {
  transform: scaleX(1);
}

/* Photo area */
.tc-photo {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.tc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}
.team-card:hover .tc-photo img {
  transform: scale(1.06);
}
.tc-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 26, 32, 0.7) 0%,
    transparent 50%
  );
  opacity: 0;
  transition: opacity 0.4s;
}
.team-card:hover .tc-photo-overlay {
  opacity: 1;
}
/* Social overlay */
.tc-socials {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  transform: translateY(12px);
  opacity: 0;
  transition: all 0.4s;
}
.team-card:hover .tc-socials {
  transform: translateY(0);
  opacity: 1;
}
.tc-soc {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
}
.tc-soc:hover {
  background: var(--cyan-dark);
  transform: scale(1.1);
}
/* Number */
.tc-num {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

/* Card body */
.tc-body {
  padding: 22px 22px 26px;
}
.tc-role {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 6px;
}
.tc-name {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.tc-bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
/* Skills */
.tc-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.tc-skill {
  font-size: 11px;
  color: var(--muted);
  background: #f0fafc;
  border: 1px solid var(--border);
  padding: 4px 11px;
  border-radius: 50px;
  transition: all 0.2s;
}
.team-card:hover .tc-skill {
  border-color: var(--cyan-light);
  color: var(--cyan);
  background: var(--cyan-xlight);
}
/* Languages */
.tc-langs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}
.tc-langs i {
  color: var(--cyan);
  font-size: 11px;
}

/* ── STATS BANNER ── */
.stats-banner {
  background: linear-gradient(
    135deg,
    var(--dark) 0%,
    var(--dark2) 50%,
    var(--dark3) 100%
  );
  padding: 56px 6%;
  position: relative;
  overflow: hidden;
}
.stats-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(6, 182, 212, 0.1),
    transparent 65%
  );
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1;
}
.stat-box {
  padding: 32px 28px;
  text-align: center;
  border: 1px solid rgba(6, 182, 212, 0.08);
  transition: background 0.3s;
}
.stat-box:hover {
  background: rgba(6, 182, 212, 0.07);
}
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span {
  color: var(--cyan);
}
.stat-lbl {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

/* ── JOIN SECTION ── */
.join-section {
  padding: 72px 6%;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.join-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.join-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.join-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.join-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}
.join-img:hover img {
  transform: scale(1.04);
}
.join-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--cyan);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.join-text {
}
.join-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.join-title em {
  font-style: italic;
  color: var(--cyan);
}
.join-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 24px;
}
.join-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.join-perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.jp-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--cyan-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 14px;
  flex-shrink: 0;
}
.jp-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.jp-text strong {
  color: var(--dark);
}
.join-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cyan);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: all 0.2s;
  border-bottom: 3px solid var(--cyan-dark);
}
.join-btn:hover {
  background: var(--cyan-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.35);
}
.join-btn i {
  transition: transform 0.3s;
}
.join-btn:hover i {
  transform: translateX(4px);
}

/* ── FOOTER ── */
.footer-main {
  width: 100%;
  background: #fff;
  padding: 48px 6% 0;
  border-top: 1px solid var(--border);
}
.footer-divider {
  border-top: 1px solid var(--border);
  margin: 28px 0 22px;
}
.footer-strip {
  background: var(--cyan);
  width: 100%;
  padding: 13px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-strip a,
.footer-strip span {
  font-size: 12.5px;
  color: #fff;
  text-decoration: none;
  opacity: 0.88;
}
.footer-strip a:hover {
  opacity: 1;
}
.soc-icon {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.3s;
}
.soc-icon:hover {
  transform: translateY(-4px);
}
.tbadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.2s;
}
.tbadge:hover {
  border-color: var(--cyan);
  transform: translateY(-2px);
}

/* WA float */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  text-decoration: none;
}
.wa-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  position: relative;
  z-index: 2;
  transition: transform 0.3s;
}
.wa-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: waPulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}
.wa-tip {
  position: absolute;
  bottom: 50%;
  right: 66px;
  transform: translateY(50%) translateX(8px);
  background: #fff;
  color: #1a1a1a;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.wa-tip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #fff;
  border-right: none;
}
.wa-float:hover .wa-circle {
  transform: scale(1.1);
}
.wa-float:hover .wa-tip {
  opacity: 1;
  transform: translateY(50%) translateX(0);
}

/* ── SCROLL REVEAL ── */
.sr {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.sr.v {
  opacity: 1;
  transform: none;
}
.sl {
  opacity: 0;
  transform: translateX(-32px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.sl.v {
  opacity: 1;
  transform: none;
}
.srr {
  opacity: 0;
  transform: translateX(32px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.srr.v {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s !important;
}
.d2 {
  transition-delay: 0.2s !important;
}
.d3 {
  transition-delay: 0.3s !important;
}
.d4 {
  transition-delay: 0.4s !important;
}
.d5 {
  transition-delay: 0.5s !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .owner-wrap,
  .join-inner {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .nav-links {
    display: none;
  }
}
@media (max-width: 580px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .hero-card {
    display: none;
  }
}

/* ── Footer full width ── */
.footer-bg {
  width: 100%;
  background: #ffffff;
  padding: 40px 0 0 0;
}

/* ── Card: full width with inner padding ── */
.footer-card {
  background: #ffffff;
  width: 100%;
  padding: 48px 6% 36px;
  position: relative;
  overflow: hidden;
}
/* ornamental circles */
.footer-card::before,
.footer-card::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 65px solid rgba(195, 148, 100, 0.1);
  top: 50%;
  pointer-events: none;
}
.footer-card::before {
  left: -130px;
  transform: translateY(-50%);
}
.footer-card::after {
  right: -130px;
  transform: translateY(-50%);
}

/* ── Logo ── */
.logo-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #2e1d0e;
}
.logo-sub {
  font-size: 10px;
  letter-spacing: 0.26em;
  color: #9a7458;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ── Contact ── */
.contact-label {
  font-size: 11px;
  color: #9a7458;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.contact-value {
  font-size: 14px;
  color: #2e1d0e;
  font-weight: 500;
}

/* ── CTA heading ── */
.cta-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 700;
  color: #2e1d0e;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* ── Buttons ── */
.btn-primary {
  background: #06b6d4;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background 0.25s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: #0891b2;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.38);
}
.btn-secondary {
  background: #fff;
  color: #2e1d0e;
  font-weight: 500;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 50px;
  border: 1.5px solid #d6bfa4;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  white-space: nowrap;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #c49a6c;
}

/* ── Divider ── */
.divider {
  border: none;
  border-top: 1px solid #ddd0c0;
  margin: 28px 0 22px;
}

/* ── Available tag ── */
.available-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b5040;
  font-weight: 500;
}
.available-dot {
  width: 22px;
  height: 22px;
  background: #06b6d4;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.available-dot i {
  font-size: 10px;
  color: #fff;
}

/* ── Tour badges ── */
.tour-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1.5px solid #d6bfa4;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: #3a2a18;
  white-space: nowrap;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
  cursor: default;
}
.tour-badge:hover {
  border-color: #06b6d4;
  box-shadow: 0 4px 14px rgba(6, 182, 212, 0.22);
  transform: translateY(-2px);
}
.tour-badge i {
  color: #c49a6c;
  font-size: 13px;
}

/* ── Social icons ── */
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  flex-shrink: 0;
}
.social-btn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.fb {
  background: #1877f2;
}
.ig {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}
.tt {
  background: #010101;
}
.wa {
  background: #25d366;
}

/* ── Bottom strip full width ── */
.bottom-strip {
  background: #06b6d4;
  width: 100%;
  padding: 13px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.bottom-strip span,
.bottom-strip a {
  font-size: 12.5px;
  color: #fff;
  text-decoration: none;
  opacity: 0.88;
  transition: opacity 0.2s;
}
.bottom-strip a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ── WhatsApp float ── */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  text-decoration: none;
}
.wa-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  z-index: 2;
}
.wa-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: pulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
.wa-tip {
  position: absolute;
  bottom: 50%;
  right: 68px;
  transform: translateY(50%) translateX(8px);
  background: #fff;
  color: #1a1a1a;
  padding: 8px 13px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.wa-tip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #fff;
  border-right: none;
}
.wa-float:hover .wa-circle {
  transform: scale(1.12);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
}
.wa-float:hover .wa-tip {
  opacity: 1;
  transform: translateY(50%) translateX(0);
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fu {
  animation: fadeUp 0.55s ease forwards;
  opacity: 0;
}
.d1 {
  animation-delay: 0.08s;
}
.d2 {
  animation-delay: 0.18s;
}
.d3 {
  animation-delay: 0.28s;
}
.d4 {
  animation-delay: 0.38s;
}
.d5 {
  animation-delay: 0.48s;
}

/* ══════════════════════════════
       RESPONSIVE LAYOUT
    ══════════════════════════════ */

/* TOP ROW */
.top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.left-col {
  flex: 1 1 320px;
}
.right-col {
  flex: 1 1 260px;
  text-align: right;
}

/* BOTTOM ROW */
.bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.badges-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* CONTACT ROW */
.contact-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

/* SOCIALS ROW */
.socials-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  align-items: center;
  flex-wrap: wrap;
}

/* ── TABLET (max 768px) ── */
@media (max-width: 768px) {
  .footer-card {
    padding: 36px 5% 28px;
  }
  .right-col {
    text-align: left;
    flex: 1 1 100%;
  }
  .right-col .btn-wrap {
    justify-content: flex-start;
  }
  .cta-heading {
    font-size: 22px;
  }
  .bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .bottom-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ── MOBILE (max 480px) ── */
@media (max-width: 480px) {
  .footer-card {
    padding: 28px 4% 24px;
  }
  .contact-row {
    flex-direction: column;
    gap: 14px;
  }
  .left-col {
    flex: 1 1 100%;
  }
  .logo-title {
    font-size: 20px;
  }
  .cta-heading {
    font-size: 20px;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  .badges-wrap {
    gap: 6px;
  }
  .tour-badge {
    font-size: 12px;
    padding: 7px 12px;
  }
  .footer-card::before,
  .footer-card::after {
    display: none;
  }
}

/* * ═══ فقط این CSS را کپی کن ═══ */
.tc-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1; /* مربع کامل */
  overflow: hidden;
}
.tc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%; /* چهره بالا نشان داده شود */
  display: block;
  transition: transform 0.6s ease;
}
.team-card:hover .tc-photo img {
  transform: scale(1.06);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid var(--border);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(6, 182, 212, 0.06);
  transition: all 0.4s;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(6, 182, 212, 0.12);
  border-color: rgba(6, 182, 212, 0.3);
}
.team-card::before {
  content: "";
  display: block;
  position: absolute;
}
.tc-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 26, 32, 0.7), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}
.team-card:hover .tc-photo-overlay {
  opacity: 1;
}
.tc-socials {
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  transform: translateY(10px);
  opacity: 0;
  transition: all 0.4s;
}
.team-card:hover .tc-socials {
  transform: translateY(0);
  opacity: 1;
}
.tc-soc {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  text-decoration: none;
}
.tc-num {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.tc-body {
  padding: 18px 18px 22px;
}
.tc-role {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 5px;
}
.tc-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.tc-bio {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 12px;
}
.tc-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}
.tc-skill {
  font-size: 11px;
  color: var(--muted);
  background: #f0fafc;
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 50px;
}
.tc-langs {
  font-size: 12px;
  color: var(--muted);
}
.tc-langs i {
  color: var(--cyan);
  font-size: 11px;
  margin-right: 4px;
}
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
