/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #d4af37;
  --primary-light: rgba(212,175,55,0.08);
  --primary-dark: #b8963e;
  --primary-muted: rgba(212,175,55,0.6);
  --bg-dark: #12121a;
  --bg-body: #16161e;
  --bg-card: #1a1a2e;
  --bg-card-hover: #20203a;
  --text-main: #e8e4dc;
  --text-secondary: #b0aaa0;
  --text-muted: #706b63;
  --border: rgba(212,175,55,0.12);
  --border-hover: rgba(212,175,55,0.35);
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--bg-body);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

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

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

/* ===== HEADER / NAVIGATION ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(18,18,26,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-main);
  letter-spacing: 1px;
  font-family: var(--font-heading);
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(212,175,55,0.4);
  flex-shrink: 0;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

nav {
  display: flex;
  align-items: center;
  gap: 0;
}

/* Nav items with dropdowns */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > .nav-item {
  position: relative;
  padding: 28px 12px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
  cursor: pointer;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-dropdown > .nav-item::after {
  content: '';
  width: 5px;
  height: 5px;
  border-right: 1px solid var(--text-muted);
  border-bottom: 1px solid var(--text-muted);
  transform: rotate(45deg);
  margin-top: -2px;
  transition: 0.3s;
}

.nav-dropdown:hover > .nav-item {
  color: var(--primary);
}

.nav-dropdown:hover > .nav-item::after {
  border-color: var(--primary);
  transform: rotate(-135deg);
  margin-top: 2px;
}

/* Mega dropdown */
.dropdown-menu {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--primary);
  min-width: 600px;
  max-width: 90vw;
  padding: 28px;
  display: none;
  z-index: 100;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.nav-dropdown:hover .dropdown-menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
}

.dropdown-col h6 {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.dropdown-col h6 a {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.dropdown-col a {
  display: block;
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding: 5px 0;
  transition: color 0.2s, padding-left 0.2s;
}

.dropdown-col a:hover {
  color: var(--primary);
  padding-left: 4px;
}

/* Simple nav links (no dropdown) */
nav > a.nav-item-simple {
  padding: 28px 18px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
  letter-spacing: 0.5px;
}

nav > a.nav-item-simple:hover {
  color: var(--primary);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-right .nav-item {
  padding: 8px 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
  letter-spacing: 0.5px;
}

.nav-right .nav-item:hover {
  color: var(--primary);
}

.btn-contact {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: transparent;
  color: var(--primary) !important;
  border: 1px solid var(--primary);
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.btn-contact:hover {
  background: var(--primary);
  color: var(--bg-dark) !important;
}

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--primary);
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  position: fixed;
  -webkit-overflow-scrolling: touch;
  top: 80px;
  left: 0;
  width: 100%;
  background: var(--bg-card);
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  max-height: 80vh;
  overflow-y: auto;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: 12px 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:hover {
  color: var(--primary);
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 160px 0 100px;
  background: var(--bg-dark);
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  z-index: 0;
  opacity: 0.75;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(18,18,26,0.55) 0%, rgba(18,18,26,0.2) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text-box {
  position: relative;
  z-index: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 60px 50px;
  margin-left: auto;
  max-width: 700px;
}

.hero-text-box::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 80px;
  height: 2px;
  background: var(--primary);
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--text-main);
  font-family: var(--font-heading);
}

.hero p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--primary);
  cursor: pointer;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-body);
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--primary);
  color: var(--bg-dark);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--primary);
  cursor: pointer;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-body);
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--bg-dark);
}

/* ===== SECTION COMMON ===== */
section {
  padding: 100px 0;
}

.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--text-main);
  font-family: var(--font-heading);
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 48px;
}

/* ===== SERVICES SECTION ===== */
.services {
  background: var(--bg-body);
}

.services-header {
  text-align: left;
  margin-bottom: 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 40px 28px;
  transition: all 0.4s;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.4s;
}

.service-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
}

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

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: transparent;
  border: 1px solid var(--primary);
  padding: 10px 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.service-card .learn-more:hover {
  background: var(--primary);
  color: var(--bg-dark);
}

/* ===== PARTNERS SECTION ===== */
.partners {
  background: var(--bg-dark);
  overflow: hidden;
}

.partners-header {
  margin-bottom: 48px;
}

.partners-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  padding: 6px 14px;
  border: 1px solid var(--border);
  letter-spacing: 0.5px;
}

.logo-ticker {
  overflow: hidden;
  position: relative;
  padding: 40px 0;
}

.logo-ticker::before,
.logo-ticker::after {
  content: '';
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
}

.logo-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark), transparent);
}

.logo-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark), transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: ticker 30s linear infinite;
  width: max-content;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== VIDEO / ABOUT SECTION ===== */
.about-video {
  background: var(--bg-body);
  text-align: center;
}

.about-video .section-title {
  max-width: 600px;
  margin: 0 auto 40px;
}

.video-placeholder {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  cursor: pointer;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18,18,26,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.video-wrapper:hover .video-overlay {
  background: rgba(18,18,26,0.2);
}

.video-wrapper.playing .video-overlay {
  opacity: 0;
  pointer-events: none;
}

.play-btn {
  width: 72px;
  height: 72px;
  background: transparent;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.play-btn:hover {
  background: var(--primary);
}

.play-btn svg {
  width: 24px;
  height: 24px;
  fill: var(--primary);
  margin-left: 3px;
  transition: fill 0.3s;
}

.play-btn:hover svg {
  fill: var(--bg-dark);
}

/* ===== TEAM SECTION ===== */
.team {
  background: var(--bg-dark);
}

.team-header {
  margin-bottom: 48px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.team-card {
  text-align: center;
}

.team-card .photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border: 1px solid var(--border);
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
}

.team-card .photo .placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card .photo .placeholder-img svg {
  width: 60px;
  height: 60px;
  opacity: 0.2;
}

.team-card h4 {
  font-size: 1.05rem;
  font-weight: 400;
  margin-bottom: 4px;
  font-family: var(--font-heading);
}

.team-card .role {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.team .see-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
}

.team .see-all:hover {
  color: var(--text-main);
}

/* ===== AWARDS SECTION ===== */
.awards {
  background: var(--bg-body);
}

.awards-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.awards-image {
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.awards-image .placeholder {
  text-align: center;
  color: var(--text-muted);
}

.awards-image .placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.15;
  margin-bottom: 12px;
}

/* ===== QUOTES / PRESS SECTION ===== */
.press-quotes {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--text-main);
  padding: 80px 0;
}

.quote-slider {
  position: relative;
  overflow: hidden;
}

.quote-slide {
  display: none;
  padding: 0 40px;
}

.quote-slide.active {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.quote-text {
  font-size: 1.1rem;
  line-height: 1.9;
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 24px;
  font-family: var(--font-heading);
  font-weight: 400;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.quote-author-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212,175,55,0.1);
  border: 1px solid var(--border);
}

.quote-author-info h5 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-main);
}

.quote-author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.quote-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.quote-dots {
  display: flex;
  gap: 8px;
}

.quote-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: background 0.3s;
}

.quote-dot.active {
  background: var(--primary);
}

.quote-arrows {
  display: flex;
  gap: 12px;
}

.quote-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: transparent;
  color: var(--primary);
  transition: all 0.3s;
  font-size: 1.1rem;
}

.quote-arrow:hover {
  background: rgba(212,175,55,0.1);
  border-color: var(--primary);
}

.quote-portrait {
  display: flex;
  justify-content: flex-end;
}

.quote-portrait-img {
  width: 350px;
  height: 420px;
  background: rgba(212,175,55,0.03);
  border: 1px solid var(--border);
  overflow: hidden;
}

/* ===== HOW WE WORK ===== */
.how-we-work {
  background: var(--bg-dark);
}

.how-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.how-list {
  list-style: none;
  margin-top: 24px;
}

.how-list li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.how-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.step-circle {
  text-align: center;
}

.step-circle .circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-circle .circle .num {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--primary);
  font-family: var(--font-heading);
}

.step-circle h4 {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

/* ===== FEATURED IN ===== */
.featured-in {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 0;
  overflow: hidden;
}

.featured-inner {
  display: flex;
  align-items: center;
  gap: 50px;
}

.featured-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  white-space: nowrap;
}

.featured-logos {
  display: flex;
  align-items: center;
  gap: 50px;
  overflow: hidden;
}

.featured-logos span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  letter-spacing: 1px;
}

/* ===== INSIGHTS / BLOG ===== */
.insights {
  background: var(--bg-body);
}

.insights-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.insight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.4s;
  position: relative;
}

.insight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.4s;
  z-index: 1;
}

.insight-card:hover {
  border-color: var(--border-hover);
}

.insight-card:hover::before {
  width: 100%;
}

.insight-img {
  height: 200px;
  background: linear-gradient(180deg, var(--bg-card-hover) 0%, var(--bg-card) 100%);
  overflow: hidden;
}

.insight-body {
  padding: 24px;
}

.insight-date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.insight-card h3 {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-main);
  margin-bottom: 12px;
  line-height: 1.4;
  font-family: var(--font-heading);
}

.insight-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.insight-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: transparent;
  border: 1px solid var(--primary);
  padding: 8px 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s;
}

.insight-card .read-more:hover {
  background: var(--primary);
  color: var(--bg-dark);
}

.see-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
}

.see-all-link:hover {
  color: var(--text-main);
}

/* ===== CONTACT SECTION ===== */
.contact {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  color: var(--text-main);
  padding: 100px 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-label {
  color: var(--primary);
}

.contact-info .section-title {
  color: var(--text-main);
  margin-bottom: 32px;
}

.contact-info p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-person-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(212,175,55,0.08);
  border: 1px solid var(--border);
  overflow: hidden;
}

.contact-person h5 {
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-person p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form .full-width {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.form-group label span {
  color: var(--primary);
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: transparent;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--primary);
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.submit-btn:hover {
  background: var(--primary);
  color: var(--bg-dark);
}

/* ===== FOOTER ===== */
footer {
  background: var(--bg-dark);
  padding: 60px 0 30px;
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .badge-text {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.footer-brand .regulatory-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-brand .regulatory-links a {
  font-size: 0.8rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-brand .regulatory-links a:hover {
  text-decoration: underline;
}

.footer-social {
  margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.footer-social a:hover {
  color: var(--primary);
}

.footer-col h5 {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  color: var(--text-secondary);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  border-color: var(--primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .awards-content { grid-template-columns: 1fr; }
  .how-content { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .quote-slide.active { grid-template-columns: 1fr; }
  .quote-portrait { display: none; }
  .dropdown-menu { min-width: 400px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .header-inner { padding: 0 20px; }
  nav { display: none; }
  .nav-right .nav-item { display: none; }
  .nav-right .btn-contact-desktop { display: none; }
  .hamburger { display: flex; }
  .header-inner { height: 64px; }
  .mobile-nav { top: 64px; }
  .logo { font-size: 1.1rem; }
  .logo-icon { width: 30px; height: 30px; }
  /* Footer stacking on mobile */
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .hero { padding: 120px 0 60px; min-height: auto; }
  .hero-content { grid-template-columns: 1fr; gap: 0; }
  .hero-text-box { padding: 40px 24px; max-width: 100%; }
  .hero h1 { font-size: 1.8rem; }
  section { padding: 60px 0; }
  .section-title { font-size: 1.7rem; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .insights-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .featured-inner { flex-direction: column; gap: 16px; text-align: center; }
  .how-steps { grid-template-columns: 1fr; gap: 24px; }
  /* Mobile touch target sizes */
  .btn-primary, .btn-secondary, .submit-btn { padding: 16px 32px; font-size: 0.85rem; min-height: 48px; }
  .mobile-nav a { padding: 16px 0; font-size: 1rem; min-height: 48px; }
  /* Prevent iOS zoom on form focus */
  input, textarea, select { font-size: 16px; }
  /* Better mobile spacing */
  .lang-toggle { margin-left: 8px; }
  .partners-badges { flex-wrap: wrap; justify-content: center; }
}

/* Small phones */
@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem; }
  .section-title { font-size: 1.4rem; }
  .hero-text-box { padding: 30px 16px; }
  .team-grid { grid-template-columns: 1fr; }
}

/* ===== TEAM BIO ===== */
.team-card {
  transition: all 0.3s;
}

.team-card:hover {
  border-color: var(--border-hover, rgba(212,175,55,0.35));
}

.team-card.active {
  background: var(--bg-card);
  border: 1px solid var(--primary);
  padding: 20px;
  border-radius: 0;
}

.team-bio {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  text-align: left;
}

.team-bio p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.team-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--primary);
  transition: opacity 0.3s;
}

.team-contact a:hover {
  opacity: 0.8;
}

.team-contact svg {
  flex-shrink: 0;
}

/* ===== LANGUAGE TOGGLE ===== */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.lang-toggle a,
.lang-toggle span {
  padding: 4px 8px;
  color: var(--text-muted);
  transition: color 0.3s;
}

.lang-toggle a:hover {
  color: var(--primary);
}

.lang-toggle .active {
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
}

.lang-toggle .separator {
  color: var(--text-muted);
  padding: 0;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
