*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #0d1b3e;
  --navy-mid: #1a2f5e;
  --navy-light: #243a75;
  --gold: #c9a227;
  --gold-light: #e0b844;
  --gold-pale: #fdf3d0;
  --white: #ffffff;
  --bg: #f7f5f0;
  --bg-soft: #f0ede7;
  --bg-card: #ffffff;
  --bg-mid: #ebe7e0;
  --text-body: #2c2c3a;
  --text-muted: #5a5a6e;
  --text-light: #9ca3af;
  --border: rgba(13, 27, 62, 0.07);
  --gold-border: rgba(201, 162, 39, 0.25);
  --shadow: 0 12px 32px rgba(13, 27, 62, 0.06);
  --shadow-lg: 0 24px 60px rgba(13, 27, 62, 0.12);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--bg);
  color: var(--text-body);
  overflow-x: hidden;
  background-image:
    radial-gradient(
      circle at 25% 25%,
      rgba(201, 162, 39, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(13, 27, 62, 0.02) 0%,
      transparent 50%
    );
  background-attachment: fixed;
  line-height: 1.5;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: rgba(247, 245, 240, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 24px rgba(13, 27, 62, 0.04);
  transition: var(--transition);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 24px !important;
  background: linear-gradient(
    135deg,
    var(--gold),
    var(--gold-light)
  ) !important;
  color: var(--navy) !important;
  border-radius: 40px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 18px rgba(201, 162, 39, 0.3);
  transition: all 0.3s !important;
}

.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.45) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--navy);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero */
.hero {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 130px 5% 80px;
  overflow: hidden;
  background: var(--bg);
}

.hero-bg-shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 52%;
  height: 100%;
  background: linear-gradient(145deg, #e8e2d8 0%, #ddd6cc 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-dots {
  position: absolute;
  top: 80px;
  right: 6%;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(
    circle,
    var(--gold-border) 1.5px,
    transparent 1.5px
  );
  background-size: 20px 20px;
  opacity: 0.7;
  z-index: 0;
}

.hero-left {
  position: relative;
  z-index: 1;
  padding-right: 3rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  padding: 7px 20px;
  border-radius: 100px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a6a00;
  margin-bottom: 1.8rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1.2rem;
}

.hero-title .gold-text {
  color: var(--gold);
  font-style: italic;
  font-size: 0.55em;
  font-weight: 700;
  display: inline-block;
  margin-top: 0.2em;
}

.hero-sub {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 1.8rem;
}

.hero-tagline {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-tagline::before,
.hero-tagline::after {
  content: "";
  display: block;
  height: 1px;
  width: 28px;
  background: var(--gold-border);
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 40px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  box-shadow: 0 6px 28px rgba(13, 27, 62, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 38px rgba(13, 27, 62, 0.35);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 6px 28px rgba(201, 162, 39, 0.3);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 38px rgba(201, 162, 39, 0.45);
}

/* Hero Right */
.hero-right {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-monogram-wrap {
  position: relative;
  width: 340px;
  height: 340px;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid;
  animation: spin 20s linear infinite;
}

.ring-1 {
  inset: 0;
  border-color: rgba(201, 162, 39, 0.18);
}

.ring-2 {
  inset: 12%;
  border-color: rgba(201, 162, 39, 0.28);
  animation-duration: 14s;
  animation-direction: reverse;
}

.ring-3 {
  inset: 24%;
  border-color: rgba(201, 162, 39, 0.4);
  animation-duration: 9s;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.ring-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  box-shadow: 0 0 10px var(--gold);
}

.monogram-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.monogram-letters {
  font-family: "Playfair Display", serif;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  color: var(--navy);
}

.monogram-letters span {
  color: var(--gold);
}

.monogram-label {
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-top: 0.3rem;
}

/* Stats Bar */
.stats-bar {
  background: var(--navy);
  padding: 2.8rem 5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}

.stat-num {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

/* Sections */
.section {
  padding: 100px 0;
}

.bg-soft {
  background: var(--bg-soft);
}

.section-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-eyebrow::before {
  content: "";
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}

.section-eyebrow.center {
  justify-content: center;
}

.section-eyebrow.center::before {
  display: none;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

.section-title .gold-text {
  color: var(--gold);
}

.section-title em {
  font-style: italic;
}

.gold-rule {
  width: 52px;
  height: 2.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 1rem 0 1.6rem;
}

.gold-rule.center {
  margin: 1rem auto 1.6rem;
}

.section-desc {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 560px;
}

.section-desc.center {
  margin: 0 auto;
  text-align: center;
}

/* About */
#about {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.about-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.about-card:hover::before {
  transform: scaleX(1);
}

.about-card-icon {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.about-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.about-card p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.about-highlight {
  background: var(--gold-pale);
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.5rem;
  border-radius: 0 4px 4px 0;
  margin-top: 1.8rem;
}

.about-highlight p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--navy);
  font-style: italic;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 0.5s;
}

.service-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::after {
  width: 100%;
}

.service-card.featured {
  border-color: var(--gold-border);
  background: linear-gradient(135deg, var(--gold-pale), var(--bg-card));
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.08);
}

.service-card.featured::after {
  width: 100%;
}

.service-icon-box {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  transition: background 0.3s;
}

.service-card:hover .service-icon-box {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  padding: 3px 10px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-light);
}

.service-card:hover .tag {
  background: var(--gold-pale);
  border-color: var(--gold-border);
  color: #7a5e00;
}

/* Team */
#team {
  background: var(--navy);
  color: var(--white);
}

#team .section-title {
  color: var(--white);
}

#team .section-desc {
  color: rgba(255, 255, 255, 0.5);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}

.team-grid-full {
  grid-template-columns: repeat(6, 1fr);
  max-width: 1600px;
  margin: 0 auto;
  gap: 1.2rem;
}

.team-grid-founders {
  grid-template-columns: repeat(2, 1fr) !important;
  max-width: 800px;
  margin: 0 auto 4rem auto !important;
}

.team-grid-members {
  grid-template-columns: repeat(4, 1fr);
}

.team-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.8rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.team-card:hover {
  border-color: rgba(201, 162, 39, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.07);
}

.team-card:hover::before {
  transform: scaleX(1);
}

.team-avatar {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #f7f5f0;
  border: 3px solid var(--gold);
  margin: 0 auto 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  box-shadow: 0 8px 28px rgba(201, 162, 39, 0.2);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  padding: 6px;
}

.team-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 50%;
  display: block;
}

.team-avatar-initials {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
}

.team-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}

.team-role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.team-role-tag {
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
}

.team-card:hover .team-role-tag {
  border-color: rgba(201, 162, 39, 0.3);
  color: var(--gold);
  background: rgba(201, 162, 39, 0.08);
}

.team-bio {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1rem;
}

.team-contacts {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

.team-contact {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  transition: var(--transition);
}

.team-contact:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 162, 39, 0.1);
}

/* Portfolio */
#portfolio {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  margin-top: 3rem;
}

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.portfolio-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  border-radius: 4px 0 0 4px;
}

.portfolio-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.portfolio-institution {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.portfolio-loc {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.portfolio-list {
  list-style: none;
}

.portfolio-list li {
  font-size: 0.82rem;
  color: var(--text-muted);
  padding: 0.3rem 0 0.3rem 1rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.portfolio-list li:last-child {
  border-bottom: none;
}

.portfolio-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* ========== NEW PRODUCTS SECTION ========== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  text-align: left;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-lg);
}

.product-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.product-card p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.product-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1.5px solid var(--gold-border);
  padding-bottom: 4px;
  transition: var(--transition);
}

.product-btn:hover {
  color: var(--navy);
  border-bottom-color: var(--gold);
  gap: 12px;
}

.product-note {
  text-align: center;
  margin-top: 3rem;
  padding: 1rem;
  background: var(--gold-pale);
  border-radius: 60px;
  font-size: 0.8rem;
  color: var(--navy);
  border: 1px solid var(--gold-border);
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  margin-top: 3rem;
  align-items: start;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-of-type {
  border: none;
}

.contact-icon-box {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.contact-item a,
.contact-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  transition: color 0.25s;
}

.contact-item a:hover {
  color: var(--navy);
}

.form-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.form-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-body);
  font-family: "Montserrat", sans-serif;
  font-size: 0.82rem;
  transition: all 0.25s;
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.12);
}

.form-group textarea {
  height: 100px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* CTA */
.cta-section {
  background: var(--navy);
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.cta-section h2 span {
  color: var(--gold);
}

.cta-section p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.82rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

/* Social Links */
.social-links-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  max-width: 980px;
  margin: 0 auto;
}

.social-link-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 2rem 1rem;
  background: linear-gradient(160deg, #ffffff 0%, #faf8f1 100%);
  border: 1px solid var(--gold-border);
  border-radius: 18px;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  min-height: 175px;
}

.social-link-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--gold-pale) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.social-link-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.social-link-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(13, 27, 62, 0.15);
}

.social-link-card:hover::before {
  opacity: 1;
}

.social-link-card:hover::after {
  opacity: 1;
}

.social-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #fff;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.social-link-card:hover .social-icon {
  transform: scale(1.1) rotate(-5deg);
}

.social-link-card[aria-label="Facebook"]:hover .social-icon {
  box-shadow: 0 10px 30px rgba(24, 119, 242, 0.55), 0 0 40px rgba(24, 119, 242, 0.35);
}
.social-link-card[aria-label="Instagram"]:hover .social-icon {
  box-shadow: 0 10px 30px rgba(228, 64, 95, 0.55), 0 0 40px rgba(228, 64, 95, 0.35);
}
.social-link-card[aria-label="TikTok"]:hover .social-icon {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 0, 0, 0.25);
}
.social-link-card[aria-label="LinkedIn"]:hover .social-icon {
  box-shadow: 0 10px 30px rgba(10, 102, 194, 0.55), 0 0 40px rgba(10, 102, 194, 0.35);
}
.social-link-card[aria-label="WhatsApp"]:hover .social-icon {
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55), 0 0 40px rgba(37, 211, 102, 0.35);
}

.social-name {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--navy);
  transition: color 0.3s;
  position: relative;
  z-index: 1;
  font-family: "Playfair Display", serif;
}

.social-link-card:hover .social-name {
  color: var(--gold);
}

.social-handle {
  font-size: 0.62rem;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.social-link-card:hover .social-handle {
  color: var(--text-body);
}

/* Footer */
.footer {
  background: var(--navy);
  padding: 3rem 5%;
  border-top: 3px solid var(--gold);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer-brand-name span {
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1rem;
}

.footer-copy {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.3);
  line-height: 1.6;
}

.footer-copy span {
  color: var(--gold);
}

.footer-col-title {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 1rem;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.footer-social a::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity 0.35s;
}

.footer-social a:hover {
  color: var(--navy);
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 0 24px rgba(201, 162, 39, 0.35);
}

.footer-social a:hover::before {
  opacity: 1;
}

.footer-social a i {
  position: relative;
  z-index: 1;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--gold);
}

/* Team Profile Modal */
.team-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.team-modal.active {
  display: flex;
}

.team-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
}

.team-modal-content {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  max-width: 460px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.team-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--bg-soft);
  color: var(--text-muted);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 1;
}

.team-modal-close:hover {
  background: var(--navy);
  color: var(--white);
}

.team-modal-body {
  padding: 2.5rem 2rem;
}

.team-modal-profile {
  text-align: center;
}

.team-modal-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.2rem;
  border: 3px solid var(--gold);
  box-shadow: 0 8px 30px rgba(201, 162, 39, 0.25);
  background: var(--navy-mid);
}

.team-modal-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.team-modal-profile h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.team-modal-role {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.team-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.team-modal-bio {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.team-modal-links {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

/* Floating Buttons */
.float-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
  text-decoration: none;
  position: relative;
}

.float-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

.float-btn-wa {
  background: #25d366;
  animation: pulse-green 2.5s ease-in-out infinite;
}

.float-btn-mail {
  background: var(--navy);
  animation: pulse-navy 2.5s ease-in-out infinite;
  animation-delay: 0.6s;
}

@keyframes pulse-green {
  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 6px 40px rgba(37, 211, 102, 0.55);
  }
}

@keyframes pulse-navy {
  0%,
  100% {
    box-shadow: 0 6px 24px rgba(13, 27, 62, 0.2);
  }
  50% {
    box-shadow: 0 6px 40px rgba(13, 27, 62, 0.4);
  }
}

.float-btn .float-tooltip {
  position: absolute;
  right: 60px;
  background: #fff;
  color: var(--text-body);
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.float-btn .float-tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid #fff;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.float-btn:hover .float-tooltip {
  opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-right {
    display: none;
  }
  .hero-bg-shape {
    width: 100%;
    clip-path: none;
    opacity: 0.4;
  }
  .about-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .services-grid,
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-grid,
  .team-grid-full,
  .team-grid-founders,
  .team-grid-members {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .social-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 270px;
    height: 100vh;
    background: rgba(247, 245, 240, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 90px 32px 32px;
    gap: 20px;
    transition: var(--transition);
    border-left: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    align-items: flex-start;
  }
  .nav-links.active {
    right: 0;
  }
  .nav-toggle {
    display: flex;
  }
  .stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .services-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }
  .team-grid,
  .team-grid-full,
  .team-grid-founders,
  .team-grid-members {
    grid-template-columns: 1fr !important;
    max-width: 380px !important;
    margin: 2.5rem auto 0 !important;
    gap: 1.5rem;
  }
  .social-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-card {
    padding: 2rem 1.5rem;
  }
  .team-avatar {
    width: 110px;
    height: 110px;
    font-size: 1.5rem;
  }
  .team-card h3 {
    font-size: 1.1rem;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-cards {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 70px 0;
  }
  .hero {
    padding: 120px 5% 50px;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }
  .btn {
    justify-content: center;
  }
  .contact-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .float-buttons {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }
  .float-btn {
    width: 46px;
    height: 46px;
    font-size: 1.2rem;
  }
  .float-btn .float-tooltip {
    display: none;
  }
  .stats-bar {
    padding: 2rem 5%;
  }
  .stat-num {
    font-size: 2rem;
  }
}

/* Utility */
.text-center {
  text-align: center;
}
