/* ============================================= */
/*     VANGUARD ALLIANCE NETWORK - ABOUT CSS     */
/* ============================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

:root {
  --gold: #B8860B;
  --gold-light: #D4A017;
  --white: #FFFFFF;
  --grey: #D9D9D9;
  --dark-card: #444141;
  --bg: #000000;
  --font: 'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font);
  overflow-x: hidden;
}

/* ==================== NEURAL CANVAS ==================== */
#neural-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

/* ==================== NAV ==================== */
nav {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  border-bottom: 0.5px solid #444141;
  backdrop-filter: blur(7px);
  background: rgba(0,0,0,0.75);
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo img { height: 76px; width: auto; }
.logo-svg { height: 38px; width: auto; }
.logo-text { font-size: 18px; font-weight: 700; letter-spacing: 1px; color: #fffcfc; }
.logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #f8f8f8;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.btn-call {
  background: var(--gold);
  color: rgb(255, 255, 255);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 24px;
  border-radius: 18px;
  text-decoration: none;
  transition: background .2s;
}
.btn-call:hover { background: var(--gold-light); color: #000;  transform: scale(1.05); }

/* ==================== NAV TOGGLE (hamburger) ==================== */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
}

/* ==================== PAGE WRAPPER ==================== */
.page-content {
  position: relative;
  z-index: 1;
}

/* ==================== HERO ==================== */
.hero {
  padding: 160px 120px 100px;
  max-width: 1512px;
  margin: 0 auto;
  position: relative;
}

/* Glowing orb behind hero text */
.hero::before {
  content: '';
  position: absolute;
  top: 120px; left: 80px;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse at center, rgba(184,134,11,0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: orbPulse 6s ease-in-out infinite;
}

@keyframes orbPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

/* ==================== SECTION LABEL ==================== */
.section-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: block;
  position: relative;
  padding-bottom: 8px;
}

.section-label::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
}

.section-label:hover::after {
  width: 70px;
  transition: width 0.4s ease;
}

.hero h1 {
  font-size: clamp(38px, 6vw, 70px);
  font-weight: 700;
  line-height: 1;
  max-width: 920px;
  margin-bottom: 28px;
}

.hero p {
  font-size: 18px;
  font-weight: 500;
  color: var(--grey);
  max-width: 780px;
  line-height: 1.6;
}

/* ==================== SECTIONS ==================== */
.section {
  max-width: 1512px;
  margin: 0 auto;
  padding: 40px 120px;
  position: relative;
}

.section-header { margin-bottom: 40px; }

.section-header h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1;
}

/* ==================== FOUNDER CARD ==================== */
.founder-card {
  background: rgba(68, 68, 65, 0.3);
  border-radius: 20px;
  display: flex;
  gap: 48px;
  padding: 40px;
  border: 1px solid rgba(184,134,11,0.08);
  transition: opacity 0.7s ease, transform 0.7s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.founder-card:hover {
  border-color: rgba(184,134,11,0.3);
  box-shadow: 0 0 60px rgba(184,134,11,0.08);
}

.founder-img {
  width: 300px;
  height: 325px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  background: #B8860B;
  position: relative;
  border: 3px solid rgb(255, 255, 255);
}

.founder-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 2px solid rgba(184,134,11,0.2);
  pointer-events: none;
  animation: borderGlow 4s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% { border-color: rgba(184,134,11,0.15); }
  50% { border-color: rgba(184,134,11,0.45); box-shadow: inset 0 0 30px rgba(184,134,11,0.05); }
}

.founder-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.founder-card:hover .founder-img img { transform: scale(1.03); }

.founder-info h3 { font-size: 24px; font-weight: 700; margin-bottom: 4px; }
.founder-role { color: var(--gold); font-size: 20px; margin-bottom: 20px; display: block; font-weight: 600; }

.founder-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.founder-socials a {
  width: 30px; height: 30px;
  border-radius: 30%;
  background: rgba(184,134,11,0.15);
  border: 1px solid rgba(184,134,11,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
  overflow: hidden;
  flex-shrink: 0;
}

.founder-socials a img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.founder-socials a:hover {
  background: rgba(184,134,11,0.3);
  transform: scale(1.15);
}

.founder-bio { font-size: 14px; color: var(--grey); line-height: 1.7; margin-bottom: 24px; }

.founder-meta { display: flex; gap: 48px; margin-top: 64px; }
.meta-item label { display: block; font-size: 18px; color: var(--gold); font-weight: 600; margin-bottom: 4px; }
.meta-item span { font-size: 14px; color: var(--white); }

/* ==================== TEAM ==================== */
.team-intro {
  font-size: 18px;
  color: var(--grey);
  max-width: 780px;
  line-height: 1.6;
  margin-bottom: 48px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.team-card {
  background: rgba(68,65,65,0.3);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.team-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(184,134,11,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-card:hover::before { opacity: 1; }

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(184,134,11,0.18);
  border-color: rgba(184,134,11,0.25);
}

.team-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  margin: 0 auto 24px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.4s ease;
  background: #b69504;
}

.team-card:hover .team-avatar {
  box-shadow: 0 0 30px rgba(184,134,11,0.4);
}

.team-avatar img {
  width: 170px;
  height: 190px;
  object-fit: cover;
  object-position: center; 
  margin-top: 15px;
  transition: transform 0.5s ease;
}

.team-card:hover .team-avatar img {
  transform: scale(1.08);
}

.team-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.team-card .role { color: var(--gold); font-size: 13px; margin-bottom: 12px; display: block; }
.team-card p { font-size: 14px; color: var(--grey); line-height: 1.6; }

/* ==================== MISSION & VISION ==================== */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.mv-card {
  background: rgba(68,65,65,0.3);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.mv-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.mv-card:hover::after { transform: scaleX(1); }

.mv-card:hover {
  border-color: rgba(184,134,11,0.25);
  box-shadow: 0 10px 40px rgba(184,134,11,0.1);
}

.mv-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.mv-label { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 2px; margin-bottom: 16px; display: block; }
.mv-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 14px; line-height: 1.3; }
.mv-card p { font-size: 15px; color: var(--grey); line-height: 1.7; }

/* ==================== CORE VALUES ==================== */
.values-section {
  max-width: 1512px;
  margin: 60px auto;
  padding: 0 120px 100px;
}

.values-header { margin-bottom: 40px; }
.values-header h2 { font-size: 25px; font-weight: 600; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.value-card {
  border: 0.5px solid #524a0334;
  border-radius: 16px;
  padding: 32px 28px;
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
  background: rgba(68,65,65,0.1);
  min-width: 0;
}

.value-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 5px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.6;
  transition: all 0.4s ease;
}

.value-card:hover::after {
  opacity: 1;
  width: 4px;
  background: var(--gold);
}

.value-card::before {
  content: attr(data-num);
  position: absolute;
  top: -10px; 
  right: 16px;
  font-size: 80px;
  font-weight: 700;
  color: rgba(184,134,11,0.05);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s ease;
}

.value-card:hover::before { 
  color: rgba(184,134,11,0.12); 
}

.value-card:hover {
  border-color: rgba(184,134,11,0.4);
  background: rgba(68,65,65,0.2);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(184,134,11,0.1);
}

.value-card h4 { 
  font-size: 18px; 
  font-weight: 700; 
  margin-bottom: 12px; 
  color: var(--white); 
}

.value-card p { 
  font-size: 14px; 
  color: var(--grey); 
  line-height: 1.6; 
}

/* ==================== DIVIDER ==================== */
.divider {
  width: calc(100% - 240px);
  margin: 0 120px;
  height: 0.5px;
  background: linear-gradient(90deg, transparent, #333, transparent);
  position: relative;
  z-index: 1;
}

/* ==================== FOOTER ==================== */
footer {
  background: rgba(0,0,0,0.9);
  border-top: 0.5px solid #333;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 1286px;
  margin: 0 auto;
  padding: 80px 112px 40px;
  display: flex;
  gap: 64px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-brand { max-width: 300px; }
.footer-brand .logo { margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.footer-brand .logo-text { font-size: 18px; font-weight: 700; color: #fff; }
.footer-brand .logo-text span { color: var(--gold); }

.footer-tagline {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #D9D9D9;
  margin-bottom: 28px;
}

.footer-socials { display: flex; gap: 12px; }

.footer-socials a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(184,134,11,0.1);
  border: 1px solid rgba(184,134,11,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); text-decoration: none;
  transition: all 0.3s;
  overflow: hidden;
  flex-shrink: 0;
}

.footer-socials a img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.footer-socials a:hover {
  background: rgba(184,134,11,0.25);
  transform: scale(1.15);
}

.footer-links-wrap {
  display: flex;
  gap: 60px;
  flex: 1;
  justify-content: flex-end;
  flex-wrap: wrap;
  min-width: 0;
}

.footer-col h5 { font-size: 20px; font-weight: 700; margin-bottom: 20px; color: white; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 15px; color: #cac4c4; text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-copyright {
  border-top: 0.5px solid #444141;
  padding: 27px 112px;
  font-size: 15px;
  color: #b8b5b5;
  max-width: 1512px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ==================== FLOATING PARTICLES ==================== */
.particle {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: floatParticle linear infinite;
}

@keyframes floatParticle {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* ==================== SCROLL REVEAL ==================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==================== MOBILE FULL-SCREEN DRAWER ==================== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: #fff;
  text-decoration: none;
  font-size: clamp(22px, 5.5vw, 30px);
  font-weight: 600;
  font-family: var(--font);
  transition: color 0.2s;
}
.mobile-menu a.active,
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn-call {
  font-size: 16px !important;
  padding: 12px 32px !important;
  display: inline-block !important;
  background: var(--gold);
  color: #fff !important;
  border-radius: 30px;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s, transform 0.2s;
  font-family: var(--font);
}
.mobile-menu-close:hover { color: var(--gold); transform: scale(1.15); }

/* ==================== RESPONSIVE ==================== */

/* --- Large desktop (<=1200px) --- */
@media (max-width: 1200px) {
  nav { padding: 0 40px; }
  .nav-links { gap: 24px; }
  .hero { padding: 140px 60px 80px; }
  .section { padding: 40px 60px; }
  .values-section { padding: 0 60px 80px; }
  .footer-inner { padding: 60px 60px 40px; gap: 48px; }
  .footer-copyright { padding: 27px 60px; }
  .divider { width: calc(100% - 120px); margin: 0 60px; }
}

/* --- Tablet landscape (<=1024px) --- */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 14px; }
  .hero { padding: 130px 40px 70px; }
  .section { padding: 36px 40px; }
  .values-section { padding: 0 40px 70px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { padding: 60px 40px; gap: 36px; }
  .footer-links-wrap { gap: 40px; }
  .footer-copyright { padding: 24px 40px; }
  .divider { width: calc(100% - 80px); margin: 0 40px; }
  .founder-meta { margin-top: 32px; gap: 32px; }
}

/* --- Tablet portrait (<=768px) --- */
@media (max-width: 768px) {
  nav { padding: 0 20px; height: 70px; }
  .nav-links { display: none !important; }
  .nav-desktop-cta { display: none !important; }
  .btn-call { display: none; }
  .nav-toggle { display: flex; }
  .logo img { height: 34px; }

  .hero { padding: 96px 20px 48px; }
  .hero h1 { font-size: clamp(28px, 7vw, 45px); margin-bottom: 18px; }
  .hero p {
    font-size: 15px;
    /* Remove hard-coded <br> effect on small screens */
    word-break: break-word;
    overflow-wrap: break-word;
  }
  /* Hero orb scaled down */
  .hero::before { width: 300px; height: 220px; top: 80px; left: 20px; }

  .section { padding: 28px 20px; }
  .section-header { margin-bottom: 24px; }
  .section-header h2 { font-size: 26px; line-height: 1.2; }

  /* Founder */
  .founder-card {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 24px 18px;
    text-align: center;
  }
  .founder-img {
    width: 100%;
    max-width: 260px;
    height: 260px;
    flex-shrink: unset;
  }
  .founder-info { width: 100%; }
  .founder-info h3 { font-size: 20px; }
  .founder-role { font-size: 15px; }
  .founder-bio { font-size: 14px; }
  .founder-socials { justify-content: center; }
  .founder-meta {
    flex-direction: column;
    gap: 14px;
    margin-top: 20px;
    align-items: center;
  }
  .meta-item { text-align: center; }
  .meta-item label { font-size: 15px; }

  /* Team */
  .team-intro { font-size: 15px; margin-bottom: 32px; }
  .team-grid { grid-template-columns: 1fr; gap: 18px; }
  .team-card { padding: 28px 18px; }
  .team-avatar { width: 130px; height: 130px; }
  .team-avatar img { width: 120px; height: 140px; }

  /* Mission & Vision */
  .mv-grid { grid-template-columns: 1fr; gap: 18px; }
  .mv-card { padding: 26px 18px; }
  .mv-card h3 { font-size: 17px; }
  .mv-card p { font-size: 14px; }

  /* Values */
  .values-section { padding: 0 20px 48px; margin-top: 0; }
  .values-header { margin-bottom: 28px; }
  .values-header h2 { font-size: 22px; }
  .values-grid { grid-template-columns: 1fr; gap: 14px; }
  .value-card { padding: 22px 18px; }
  .value-card h4 { font-size: 16px; }
  .value-card p { font-size: 13.5px; }

  /* Divider */
  .divider { width: calc(100% - 40px); margin: 0 20px; }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    gap: 28px;
    padding: 36px 20px 24px;
  }
  .footer-brand { max-width: 100%; }
  .footer-brand .logo img { height: 36px; }
  .footer-tagline { font-size: 14px; margin-bottom: 16px; }
  .footer-links-wrap {
    justify-content: flex-start;
    gap: 20px 36px;
    flex-wrap: wrap;
    width: 100%;
  }
  .footer-col { min-width: 120px; }
  .footer-col h5 { font-size: 15px; margin-bottom: 12px; }
  .footer-col ul { gap: 8px; }
  .footer-col ul li a { font-size: 13px; }
  .footer-copyright {
    padding: 14px 20px 20px;
    font-size: 12px;
    text-align: left;
  }

  /* Modal */
  .booking-modal { align-items: flex-start; padding: 12px; }
  .modal-content { border-radius: 14px; margin: auto; }
  .modal-header { padding: 16px 18px; }
  .modal-header h3 { font-size: 17px; }
  .form-group { padding: 0 18px 14px; }
  .form-group label { font-size: 13px; }
  .form-group input,
  .form-group textarea { font-size: 14px; padding: 10px 12px; }
}

/* --- Small phones (<=480px) --- */
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-links-wrap { gap: 16px 28px; }
}

/* --- Extra small phones (<=400px) --- */
@media (max-width: 400px) {
  nav { padding: 0 16px; height: 64px; }
  .logo img { height: 30px; }

  .hero { padding: 84px 16px 36px; }
  .hero h1 { font-size: clamp(24px, 8.5vw, 32px); }
  .hero p { font-size: 14px; }

  .section { padding: 22px 16px; }
  .values-section { padding: 0 16px 36px; }

  .founder-card { padding: 18px 14px; }
  .founder-img { max-width: 220px; height: 220px; }

  .team-avatar { width: 110px; height: 110px; }
  .team-avatar img { width: 100px; height: 120px; }

  .footer-inner { padding: 28px 16px 20px; }
  .footer-copyright { padding: 12px 16px 18px; }
  .divider { width: calc(100% - 32px); margin: 0 16px; }

  .modal-header h3 { font-size: 15px; }
  .form-group { padding: 0 14px 12px; }
}

/* ==================== BOOKING MODAL ==================== */
.booking-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  padding: 16px;
  overflow-y: auto;
}

.booking-modal.show {
  display: flex;
}

.modal-content {
  background: #0a0a0a;
  border: 2px solid #B8860B;
  border-radius: 18px;
  width: 100%;
  max-width: 440px;
  margin: auto;
  box-shadow: 0 25px 70px rgba(184, 134, 11, 0.35);
  animation: modalPop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: scale(0.93) translateY(30px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(184, 134, 11, 0.25);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  color: #FFD700;
  font-size: 20px;
  font-weight: 700;
}

.modal-close {
  background: none;
  border: none;
  font-size: 29px;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}

.modal-close:hover {
  color: #fff;
}

.form-group {
  padding: 0 24px 16px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: #ddd;
  font-size: 14.5px;
  font-weight: 500;
}

.required {
  color: #B8860B;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(184, 134, 11, 0.4);
  border-radius: 10px;
  color: #fff;
  font-size: 15.5px;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #B8860B;
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 68px;
}

.success-message {
  padding: 50px 30px;
  text-align: center;
  display: none;
}

.success-message h4 {
  color: #B8860B;
  margin-bottom: 12px;
  font-size: 22px;
}

.success-message p {
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 24px;
}


/* Submit button inside modal */
.btn-primary {
  width: calc(100% - 48px);
  margin: 0 24px 20px;
  display: block;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s;
}

.btn-primary:hover { background: var(--gold-light); }

@media (max-width: 400px) {
  .btn-primary { width: calc(100% - 28px); margin: 0 14px 16px; font-size: 14px; }
  .success-message { padding: 36px 20px; }
  .success-message h4 { font-size: 18px; }
}