/* ============================================================
   DYNAMIS LEX - Main Stylesheet
   Luxury Law Firm Website
   Color Scheme: Black & Gold
   ============================================================ */

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

:root {
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --gold-dark: #a07c1c;
  --gold-rgb: 201, 168, 76;
  --black: #0a0a0a;
  --black-soft: #111111;
  --black-card: #161616;
  --black-lighter: #1c1c1c;
  --white: #f5f5f0;
  --white-muted: #999;
  --gray: #666;
  --section-padding: clamp(4rem, 8vw, 8rem);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

.section {
  padding: var(--section-padding) 0;
}

.gold {
  background: linear-gradient(
    to right,
    #a07c1c 0%,
    #c9a84c 25%,
    #e8d48b 50%,
    #c9a84c 75%,
    #a07c1c 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 4s linear infinite;
}

@keyframes goldShimmer {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  width: 0%;
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ----------------------------------------------------------
   TYPOGRAPHY
   ---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

.section__tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 3rem;
}

.section__tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--gold);
}

.section__title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.5rem;
  color: var(--white);
}

.section__line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 1.5rem;
}

.section__line--center {
  margin-left: auto;
  margin-right: auto;
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.section__desc {
  color: var(--white-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ----------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  overflow: hidden;
}

.btn i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(4px);
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
}

.btn--primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.btn--primary:hover::before {
  left: 100%;
}

.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(var(--gold-rgb), 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
}

.btn--gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(var(--gold-rgb), 0.3);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.btn--outline-white:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ----------------------------------------------------------
   PRELOADER
   ---------------------------------------------------------- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.8s ease, visibility 0.8s;
}

.preloader.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__content {
  text-align: center;
}

.preloader__logo {
  margin-bottom: 2rem;
}

.preloader__logo-img {
  width: 340px;
  height: auto;
  opacity: 0;
  transform: scale(0.8);
  animation: preloaderLogoReveal 1.2s cubic-bezier(0.19, 1, 0.22, 1) 0.3s forwards;
}

@keyframes preloaderLogoReveal {
  0% {
    opacity: 0;
    transform: scale(0.8);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

.preloader__bar {
  width: 200px;
  height: 2px;
  background: rgba(var(--gold-rgb), 0.2);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.preloader__bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  animation: preloaderBar 2s ease forwards;
}

@keyframes preloaderFadeIn {
  to { opacity: 1; }
}

@keyframes preloaderLine {
  to { stroke-dashoffset: 0; }
}

@keyframes preloaderBar {
  to { width: 100%; }
}

/* ----------------------------------------------------------
   NAVIGATION
   ---------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: 1.5rem 0;
  transition: all 0.4s ease;
}

.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.1);
}

.nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo-img {
  height: 90px;
  width: auto;
  transition: height 0.3s ease;
}

.nav.is-scrolled .nav__logo-img {
  height: 60px;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav__link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s ease;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--gold);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__link--cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--gold-light);
}

/* Mobile Toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 100;
}

.nav__toggle-line {
  width: 28px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.nav__toggle.is-active .nav__toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.is-active .nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.nav__toggle.is-active .nav__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-image {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.1); }
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.7) 0%,
    rgba(10, 10, 10, 0.5) 40%,
    rgba(10, 10, 10, 0.8) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 900px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero__badge-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero__title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero__title-line {
  display: block;
}

.hero__title-line--gold {
  font-style: italic;
  background: linear-gradient(
    to bottom,
    #cfc09f 22%,
    #ffecb3 40%,
    #c9a84c 58%,
    #a07c1c 78%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

/* Scroll Indicator */
.hero__scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero__scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.hero__scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* Hero Decorative Lines */
.hero__deco-line {
  position: absolute;
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(var(--gold-rgb), 0.3), transparent);
  bottom: 0;
  z-index: 2;
}

.hero__deco-line--left {
  left: 10%;
}

.hero__deco-line--right {
  right: 10%;
}

/* ----------------------------------------------------------
   STATS BAR
   ---------------------------------------------------------- */
.stats-bar {
  background: var(--black-soft);
  border-top: 1px solid rgba(var(--gold-rgb), 0.15);
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.15);
  padding: 3rem 0;
}

.stats-bar__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.stats-bar__item {
  text-align: center;
  min-width: 160px;
}

.stats-bar__number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stats-bar__suffix {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--gold);
}

.stats-bar__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white-muted);
  margin-top: 0.5rem;
}

.stats-bar__divider {
  width: 1px;
  height: 50px;
  background: rgba(var(--gold-rgb), 0.2);
}

/* ----------------------------------------------------------
   ABOUT SECTION
   ---------------------------------------------------------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about__image-wrapper {
  position: relative;
}

.about__image-frame {
  position: relative;
  overflow: hidden;
}

.about__image {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.about__image-frame:hover .about__image {
  transform: scale(1.05);
}

.about__image-accent {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 120px;
  height: 120px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
  z-index: -1;
}

.about__experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--black);
  padding: 1.5rem;
  text-align: center;
  z-index: 2;
}

.about__experience-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about__experience-text {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.about__text {
  color: var(--white-muted);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.about__features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.about__feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.about__feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--gold-rgb), 0.1);
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  color: var(--gold);
  font-size: 1.1rem;
}

.about__feature h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.about__feature p {
  font-size: 0.85rem;
  color: var(--white-muted);
  line-height: 1.5;
}

/* ----------------------------------------------------------
   PRACTICE AREAS
   ---------------------------------------------------------- */
.practice {
  background: var(--black-soft);
}

.practice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.practice__card {
  background: var(--black-card);
  border: 1px solid rgba(var(--gold-rgb), 0.08);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.practice__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.practice__card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--gold-rgb), 0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.practice__card:hover::before {
  transform: scaleX(1);
}

.practice__card-icon {
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.practice__card-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(var(--gold-rgb), 0.06);
  line-height: 1;
}

.practice__card-title {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.practice__card-desc {
  font-size: 0.9rem;
  color: var(--white-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.practice__card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.3s ease;
}

.practice__card-link:hover {
  gap: 1rem;
}

/* ----------------------------------------------------------
   PARALLAX DIVIDER
   ---------------------------------------------------------- */
.parallax-section {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-section__bg {
  position: absolute;
  inset: -20%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

@supports (-webkit-touch-callout: none) {
  .parallax-section__bg {
    background-attachment: scroll;
  }
}

.parallax-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.85);
}

.parallax-section__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 4rem 2rem;
  max-width: 800px;
}

.parallax-section__quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.parallax-section__cite {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ----------------------------------------------------------
   TEAM SECTION
   ---------------------------------------------------------- */
.team__featured {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.team__featured-image {
  position: relative;
}

.team__featured-image-wrapper {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.team__featured-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.team__featured-image:hover .team__featured-image-wrapper img {
  transform: scale(1.05);
}

.team__featured-image-border {
  position: absolute;
  top: 15px;
  left: 15px;
  right: -15px;
  bottom: -15px;
  border: 2px solid var(--gold);
  z-index: 0;
}

.team__featured-name {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.team__featured-role {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.team__featured-divider {
  width: 50px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}

.team__featured-bio {
  color: var(--white-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.team__featured-credentials {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.team__credential {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
}

.team__credential i {
  color: var(--gold);
  width: 20px;
  text-align: center;
}

.team__featured-social {
  display: flex;
  gap: 1rem;
}

.team__social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--gold-rgb), 0.3);
  color: var(--gold);
  transition: all 0.3s ease;
}

.team__social-link:hover {
  background: var(--gold);
  color: var(--black);
}

/* Team Grid */
.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team__card {
  text-align: center;
}

.team__card-image {
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
}

.team__card-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: grayscale(30%);
}

.team__card:hover .team__card-image img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.team__card-name {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.team__card-role {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ----------------------------------------------------------
   TESTIMONIALS
   ---------------------------------------------------------- */
.testimonials {
  background: var(--black-soft);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.testimonials__card {
  background: var(--black-card);
  border: 1px solid rgba(var(--gold-rgb), 0.08);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.testimonials__card:hover {
  border-color: rgba(var(--gold-rgb), 0.2);
  transform: translateY(-4px);
}

.testimonials__card--featured {
  border-color: rgba(var(--gold-rgb), 0.3);
  background: linear-gradient(135deg, var(--black-card), rgba(var(--gold-rgb), 0.05));
}

.testimonials__stars {
  display: flex;
  gap: 0.3rem;
  margin-bottom: 1.5rem;
  color: var(--gold);
  font-size: 0.85rem;
}

.testimonials__text {
  font-size: 0.95rem;
  color: var(--white-muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.testimonials__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(var(--gold-rgb), 0.1);
}

.testimonials__author-avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--gold-rgb), 0.15);
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonials__author strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.testimonials__author span {
  font-size: 0.75rem;
  color: var(--white-muted);
}

/* ----------------------------------------------------------
   WHY CHOOSE US
   ---------------------------------------------------------- */
.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-us__text {
  color: var(--white-muted);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
}

.why-us__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.why-us__card {
  background: var(--black-card);
  border: 1px solid rgba(var(--gold-rgb), 0.08);
  padding: 1.8rem;
  transition: all 0.4s ease;
}

.why-us__card:hover {
  border-color: rgba(var(--gold-rgb), 0.2);
  transform: translateY(-4px);
}

.why-us__card-icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.why-us__card-content h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.why-us__card-content p {
  font-size: 0.85rem;
  color: var(--white-muted);
  line-height: 1.6;
}

/* ----------------------------------------------------------
   CONTACT SECTION
   ---------------------------------------------------------- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}

.contact__info-card {
  background: var(--black-card);
  border: 1px solid rgba(var(--gold-rgb), 0.1);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact__info-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.contact__info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(var(--gold-rgb), 0.1);
  color: var(--gold);
  font-size: 1rem;
}

.contact__info-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.contact__info-item p {
  font-size: 0.85rem;
  color: var(--white-muted);
  line-height: 1.6;
}

.contact__social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.contact__social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--gold-rgb), 0.3);
  color: var(--gold);
  transition: all 0.3s ease;
}

.contact__social-link:hover {
  background: var(--gold);
  color: var(--black);
}

/* Contact Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.contact__form-group {
  position: relative;
}

.contact__form-group input,
.contact__form-group select,
.contact__form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  padding-top: 1.5rem;
  background: var(--black-card);
  border: 1px solid rgba(var(--gold-rgb), 0.15);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none;
}

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

.contact__form-group select {
  cursor: pointer;
}

.contact__form-group label {
  position: absolute;
  top: 50%;
  left: 1.2rem;
  transform: translateY(-50%);
  font-size: 0.85rem;
  color: var(--white-muted);
  pointer-events: none;
  transition: all 0.3s ease;
}

.contact__form-group textarea ~ label {
  top: 1.5rem;
  transform: translateY(0);
}

.contact__form-group input:focus,
.contact__form-group select:focus,
.contact__form-group textarea:focus {
  border-color: var(--gold);
}

.contact__form-group input:focus ~ label,
.contact__form-group input:not(:placeholder-shown) ~ label,
.contact__form-group select:focus ~ label,
.contact__form-group select:valid ~ label,
.contact__form-group textarea:focus ~ label,
.contact__form-group textarea:not(:placeholder-shown) ~ label {
  top: 0.5rem;
  transform: translateY(0);
  font-size: 0.7rem;
  color: var(--gold);
}

.contact__form-disclaimer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--white-muted);
  margin-top: 0.5rem;
}

.contact__form-disclaimer i {
  color: var(--gold);
  font-size: 0.7rem;
}

/* ----------------------------------------------------------
   CTA BANNER
   ---------------------------------------------------------- */
.cta {
  background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.1), rgba(var(--gold-rgb), 0.03));
  border-top: 1px solid rgba(var(--gold-rgb), 0.15);
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.15);
  padding: 4rem 0;
}

.cta__content {
  text-align: center;
}

.cta__title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.8rem;
}

.cta__text {
  color: var(--white-muted);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.cta__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----------------------------------------------------------
   FOOTER
   ---------------------------------------------------------- */
.footer {
  background: var(--black-soft);
  padding: 5rem 0 0;
  border-top: 1px solid rgba(var(--gold-rgb), 0.1);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer__logo-img {
  height: 140px;
  width: auto;
  margin-bottom: 0.8rem;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer__desc {
  font-size: 0.85rem;
  color: var(--white-muted);
  line-height: 1.7;
}

.footer__heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.footer__links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--white-muted);
  transition: color 0.3s ease;
}

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

.footer__contact-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--white-muted);
}

.footer__contact-item i {
  color: var(--gold);
  margin-top: 3px;
  width: 16px;
  text-align: center;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(var(--gold-rgb), 0.1);
  font-size: 0.8rem;
  color: var(--white-muted);
}

.footer__bottom-links {
  display: flex;
  gap: 2rem;
}

.footer__bottom-links a {
  font-size: 0.8rem;
  color: var(--white-muted);
  transition: color 0.3s ease;
}

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

/* ----------------------------------------------------------
   WHATSAPP FLOAT BUTTON
   ---------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 8000;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  animation: whatsappPulse 2s ease infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* ----------------------------------------------------------
   RESPONSIVE DESIGN
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about__image {
    height: 400px;
  }

  .practice__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team__featured {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team__featured-image-wrapper img {
    height: 400px;
  }

  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }

  .why-us__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--black-soft);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem;
    gap: 2rem;
    transition: right 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    border-left: 1px solid rgba(var(--gold-rgb), 0.1);
  }

  .nav__menu.is-open {
    right: 0;
  }

  .nav__link {
    font-size: 1rem;
    letter-spacing: 0.08em;
  }

  .hero__title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .stats-bar__grid {
    gap: 2rem;
  }

  .stats-bar__divider {
    display: none;
  }

  .stats-bar__item {
    min-width: 130px;
  }

  .practice__grid {
    grid-template-columns: 1fr;
  }

  .team__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .why-us__cards {
    grid-template-columns: 1fr;
  }

  .contact__form-row {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .cta__actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}
