/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold: #C9A041;
  --gold-light: #e8c96a;
  --gold-dark: #9b7a28;
  --black: #080808;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --white: #ffffff;
  --cream: #f5efe4;
  --gray: #888888;
  --gray-light: #bbbbbb;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes linegrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.animate-fadeup { animation: fadeUp 0.8s ease both; }
.animate-fadein { animation: fadeIn 0.8s ease both; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
.delay-5 { animation-delay: 0.75s; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-family: var(--serif); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.25rem; }
.label {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.gold { color: var(--gold); }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }

/* ===== DIVIDERS ===== */
.gold-line {
  display: inline-block;
  width: 60px; height: 2px;
  background: var(--gold);
  transform-origin: left;
}
.gold-line-full {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ===== PAGE SYSTEM ===== */
.page { display: none; }
.page.active { display: block; animation: fadeIn 0.5s ease; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,160,65,0.15);
  transition: var(--transition);
}
#navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); background: rgba(8,8,8,0.98); }
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}
.nav-logo img {
  height: 64px;
  width: auto;
  filter: brightness(1);
  transition: var(--transition);
}
.nav-logo:hover img { filter: brightness(1.1); }
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-brand-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
}
.nav-brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}
.nav-links li a, .nav-links li button {
  display: block;
  padding: 0.5rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-light);
  transition: color var(--transition);
  position: relative;
}
.nav-links li a::after, .nav-links li button::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0.9rem; right: 0.9rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links li a:hover, .nav-links li button:hover,
.nav-links li a.active, .nav-links li button.active {
  color: var(--gold);
}
.nav-links li a:hover::after, .nav-links li button:hover::after,
.nav-links li a.active::after, .nav-links li button.active::after {
  transform: scaleX(1);
}
.nav-cta {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  color: var(--black) !important;
  padding: 0.55rem 1.4rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
}
.nav-cta:hover { opacity: 0.9; }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,160,65,0.2);
  z-index: 999;
  padding: 1.5rem 2rem;
}
.mobile-menu.open { display: block; animation: fadeIn 0.3s ease; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu ul li a, .mobile-menu ul li button {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  width: 100%;
  text-align: left;
  transition: color var(--transition);
}
.mobile-menu ul li a:hover, .mobile-menu ul li button:hover { color: var(--gold); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201,160,65,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(201,160,65,0.04) 0%, transparent 50%),
    linear-gradient(180deg, #080808 0%, #0f0c07 100%);
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,160,65,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,160,65,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, transparent, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.5) 70%, transparent);
  z-index: 0;
}
.hero-ornament {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(201,160,65,0.1);
  opacity: 0.4;
  z-index: 0;
}
.hero-ornament::before {
  content: '';
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201,160,65,0.07);
}
.hero-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}
.hero-content {
  max-width: 100%;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  animation: slideRight 0.8s ease both;
}
.hero-label::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.2s both;
  font-weight: 300;
  line-height: 1.15;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--gray-light);
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease 0.35s both;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.5s both;
  margin-bottom: 3.5rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.15);
  transition: left 0.3s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,160,65,0.3); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  border: 1px solid rgba(201,160,65,0.5);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-outline:hover {
  background: rgba(201,160,65,0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: fadeUp 0.8s ease 0.65s both;
}
.stat-item { text-align: left; }
.stat-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1.2s ease 0.4s both;
}
.hero-visual-inner {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  padding: 1.5rem;
  background: radial-gradient(circle, rgba(201,160,65,0.1) 0%, transparent 70%);
  border: 1px solid rgba(201,160,65,0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), inset 0 0 30px rgba(201,160,65,0.05);
  animation: floatSlow 6s ease-in-out infinite;
}
@keyframes floatSlow {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}
.hero-logo-showcase {
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: brightness(1.2) contrast(1.1);
  border-radius: 50%;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  animation: fadeIn 1s ease 1s both;
  z-index: 10;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scaleIn 1.5s ease infinite;
}

/* ===== MARQUEE ===== */
.marquee-section {
  padding: 1.5rem 0;
  background: linear-gradient(90deg, var(--black), var(--dark2), var(--black));
  border-top: 1px solid rgba(201,160,65,0.1);
  border-bottom: 1px solid rgba(201,160,65,0.1);
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: scroll-x 30s linear infinite;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
}
.marquee-item span.dot {
  width: 4px; height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}
.marquee-item.highlight { color: var(--gold-light); }

/* ===== SECTION HEADERS ===== */
.section-header { margin-bottom: 3.5rem; }
.section-header .label { margin-bottom: 0.75rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p {
  color: var(--gray-light);
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.8;
}
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* ===== PRACTICE AREAS GRID ===== */
.practices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(201,160,65,0.1);
}
.practice-card {
  background: var(--dark2);
  padding: 2.5rem 2rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.practice-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.practice-card:hover {
  background: var(--dark3);
  transform: translateY(-4px);
  z-index: 1;
}
.practice-card:hover::before { transform: scaleX(1); }
.practice-icon {
  width: 48px; height: 48px;
  margin-bottom: 1.25rem;
  color: var(--gold);
  opacity: 0.8;
}
.practice-card h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.practice-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
}
.practice-card .card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
}
.practice-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ===== TEAM ===== */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(201,160,65,0.1);
}
.team-card {
  background: var(--dark2);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.team-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--gold-dark), var(--gold));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform var(--transition);
}
.team-card:hover::after { transform: scaleY(1); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--black);
  font-weight: 600;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.team-role {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.team-card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.team-card p {
  color: var(--gray-light);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}
.team-credential {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.82rem;
  color: var(--gray);
}
.team-credential .bullet { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(201,160,65,0.1);
  margin-bottom: 4rem;
}
.why-card {
  background: var(--dark2);
  padding: 2.5rem 2rem;
  position: relative;
}
.why-number {
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(201,160,65,0.08);
  line-height: 1;
  margin-bottom: 1rem;
  user-select: none;
}
.why-card h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.8;
}

/* ===== COURTS SECTION ===== */
.courts-section {
  background: var(--dark2);
  border: 1px solid rgba(201,160,65,0.1);
  padding: 3rem;
  margin-top: 3rem;
}
.courts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.court-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: var(--dark3);
  border-left: 2px solid var(--gold-dark);
  font-size: 0.82rem;
  color: var(--gray-light);
  transition: var(--transition);
}
.court-item:hover {
  background: rgba(201,160,65,0.06);
  border-left-color: var(--gold);
  color: var(--white);
}
.court-item svg { color: var(--gold); flex-shrink: 0; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info { }
.contact-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact-block:last-child { border-bottom: none; }
.contact-block .label { margin-bottom: 0.75rem; }
.contact-block p {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.8;
}
.contact-block a { color: var(--gold); transition: color var(--transition); }
.contact-block a:hover { color: var(--gold-light); }
.contact-form-wrap {
  background: var(--dark2);
  border: 1px solid rgba(201,160,65,0.1);
  padding: 3rem 2.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  border-top-color: rgba(201,160,65,0.15);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: var(--transition);
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-dark);
  background: rgba(201,160,65,0.03);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-group select option { background: var(--dark3); }
.form-success {
  display: none;
  padding: 1rem;
  background: rgba(201,160,65,0.1);
  border: 1px solid rgba(201,160,65,0.3);
  text-align: center;
  color: var(--gold);
  font-size: 0.9rem;
  margin-top: 1rem;
}

/* ===== ABOUT PAGE ===== */
.about-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(8,8,8,0.7) 0%, var(--black) 100%),
    radial-gradient(ellipse at 60% 40%, rgba(201,160,65,0.08) 0%, transparent 60%);
  padding-top: 80px;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(201,160,65,0.1);
}
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-bottom: 5rem;
}
.about-logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.about-logo-frame {
  position: relative;
  width: 300px; height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo-frame::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(201,160,65,0.2);
}
.about-logo-frame::after {
  content: '';
  position: absolute;
  inset: -24px;
  border: 1px solid rgba(201,160,65,0.08);
}
.about-logo-frame img { width: 100%; height: 100%; object-fit: contain; }
.about-text h2 { margin-bottom: 1rem; }
.about-text .label { margin-bottom: 0.75rem; }
.about-text p {
  color: var(--gray-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.9;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(201,160,65,0.1);
  margin-top: 4rem;
}
.value-card {
  background: var(--dark2);
  padding: 2.5rem 1.75rem;
  text-align: center;
}
.value-icon {
  width: 56px; height: 56px;
  margin: 0 auto 1.25rem;
  background: rgba(201,160,65,0.08);
  border: 1px solid rgba(201,160,65,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.value-card h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.value-card p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== PRACTICE AREAS PAGE ===== */
.practice-detail {
  display: none;
  padding: 2rem 0;
}
.practice-detail.active { display: block; animation: fadeIn 0.3s ease; }
.practice-detail-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}
.practice-services h4 {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1rem;
}
.service-list {
  list-style: none;
  margin-top: 0.5rem;
}
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.88rem;
  color: var(--gray-light);
}
.service-list li::before {
  content: '→';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.75rem;
  margin-top: 2px;
}
.practice-sidebar {
  position: sticky;
  top: 100px;
}
.sidebar-cta {
  background: var(--dark2);
  border: 1px solid rgba(201,160,65,0.15);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.sidebar-cta h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.sidebar-cta p {
  font-size: 0.85rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark2);
  border-top: 1px solid rgba(201,160,65,0.15);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img {
  height: 60px;
  margin-bottom: 1rem;
  filter: brightness(0.9);
}
.footer-brand p {
  font-size: 0.82rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 1.25rem;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  margin-bottom: 0.5rem;
}
.footer-col ul li a, .footer-col ul li button {
  font-size: 0.82rem;
  color: var(--gray);
  transition: color var(--transition);
  display: inline-block;
  width: 100%;
  text-align: left;
}
.footer-col ul li a:hover, .footer-col ul li button:hover { color: var(--gold-light); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: var(--gray);
}
.footer-bottom a { color: var(--gold); }
.social-links {
  display: flex;
  gap: 0.75rem;
}
.social-link {
  width: 34px; height: 34px;
  border: 1px solid rgba(201,160,65,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.75rem;
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,160,65,0.05);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
}
.breadcrumb span { color: var(--gold); }

/* ===== HIGHLIGHTS / BANNER ===== */
.banner-strip {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 1rem 2rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .hero-label {
    justify-content: center;
  }
  .hero-label::before {
    display: none;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
    gap: 3rem;
  }
  .hero-visual {
    order: -1; /* Place logo above text on tablet/mobile for visual impact */
  }
  .hero-visual-inner {
    width: 240px;
    height: 240px;
  }
  .practices-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-intro { grid-template-columns: 1fr; gap: 3rem; }
  .about-logo-block { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .practice-detail-content { grid-template-columns: 1fr; }
  .practice-sidebar { position: static; }
  .courts-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
  .team-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .courts-grid { grid-template-columns: 1fr; }
  .practices-grid { grid-template-columns: 1fr; }
}

/* ===== TEAM DETAILS PAGE CUSTOM RESPONSIVE STYLING ===== */
.team-detail-card {
  background: var(--dark2);
  border: 1px solid rgba(201, 160, 65, 0.1);
  padding: 4rem;
  margin-bottom: 2px;
  position: relative;
  overflow: hidden;
}
.team-detail-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 3rem;
  align-items: start;
}
.team-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .team-detail-card {
    padding: 2.5rem 1.5rem;
  }
  .team-detail-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}
@media (max-width: 560px) {
  .team-info-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== ABOUT PAGE CUSTOM RESPONSIVE STYLING ===== */
.about-clientele-card {
  background: var(--dark2);
  border: 1px solid rgba(201, 160, 65, 0.1);
  padding: 3rem;
  margin-bottom: 4rem;
}
.about-clientele-row {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
.about-clientele-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .about-clientele-card {
    padding: 2rem 1.5rem;
  }
  .about-clientele-row {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .about-clientele-row h3 {
    text-align: center;
  }
  .about-clientele-row div[style*="width:40px"] {
    margin: 1rem auto !important;
  }
}
@media (max-width: 560px) {
  .about-clientele-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== HOME PAGE OVERVIEW SECTION CUSTOM RESPONSIVE STYLING ===== */
.overview-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.overview-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(201, 160, 65, 0.1);
}
@media (max-width: 1024px) {
  .overview-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
@media (max-width: 560px) {
  .overview-features-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== PAGE TRANSITIONS ===== */
.page-enter { animation: fadeIn 0.4s ease; }

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
  box-shadow: 0 6px 25px rgba(32, 186, 90, 0.6);
  color: #fff;
}
.whatsapp-float svg {
  width: 32px;
  height: 32px;
}
@keyframes whatsapp-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

