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

body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f5f5f7;
  color: #111827;
  line-height: 1.6;
}

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

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Popup */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.popup-overlay.hidden {
  display: none;
}

.popup-card {
  backdrop-filter: blur(18px);
  background: rgba(15,23,42,0.96);
  background: #f5f5f7;
  max-width: 720px;
  border-radius: 16px;
  padding: 2rem 2.5rem;
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
  border: 1px solid rgba(212, 175, 55, 0.7);
}

.popup-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #111827;
}

.popup-card p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1.5rem;
}

.popup-card button {
  background: #e5b15a;
  border: none;
  color: #111827;
  font-weight: 600;
  padding: 0.7rem 1.8rem;
  border-radius: 999px;
  cursor: pointer;
}

/* Top Bar */
.top-bar {
  border-bottom: 1px solid #1f2940;
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 50;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffeec2 0, #e5b15a 45%, #b58b11 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(0,0,0,0.22);
}

.brand-icon-inner {
  font-size: 1.4rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-sub {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #aa8a30;
  font-weight: 500;
}

.brand-main {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: linear-gradient(120deg, #1b1b1b 0, #5a4614 40%, #e5b15a 75%, #8a6a16 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  font-size: 0.85rem;
}

.top-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.top-contact-item .label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #888;
}

.top-contact-item a {
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.18s ease-out;
  white-space: nowrap;
}

.btn-primary {
  background: #e5b15a;
  color: #111827;
  border-color: #e5b15a;
}

.btn-primary:hover {
  background: #f2c66e;
  border-color: #f2c66e;
}

.btn-outline {
  background: transparent;
  color: #111827;
  border-color: #e5b15a;
}

.btn-outline:hover {
  background: #151c30;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(212, 175, 55, 0.35);
}

.btn-ghost:hover {
  background: #151c30;
}

.btn-full {
  width: 100%;
}

/* Hero */
.hero {
  padding: 3.5rem 0 3rem;
  background: radial-gradient(circle at top left, #fff7e7 0, #ffffff 55%);
  border-bottom: 1px solid #1f2940;
}


.hero {
  padding: 4rem 0 3rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 70%;
  background: radial-gradient(circle at top, #e5e7eb 0, #f9fafb 35%, #ffffff 100%);
  z-index: -2;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
  text-align: center;
}

.hero-text {
  max-width: 720px;
}

.hero-tag {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9ca3af;
}

.hero h1 {
  margin-top: 0.8rem;
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  line-height: 1.25;
}

.hero p {
  margin-top: 0.75rem;
  max-width: 36rem;
  color: #4b5563;
  font-size: 0.98rem;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

.hero-highlights {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.highlight-item {
  min-width: 130px;
  text-align: left;
}

.highlight-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: #e5b15a;
}

.hero-card {
  position: relative;
  max-width: 420px;
  width: 100%;
  border-radius: 28px;
  padding: 1.8rem 1.6rem;
  background: linear-gradient(145deg, #020617, #111827);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.55);
  color: #e5e7eb;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(229,177,90,0.9), rgba(199,210,254,0.75));
  -webkit-mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.hero-photo {
  width: 100%;
  border-radius: 18px;
  border: none;
  overflow: hidden;
  margin-bottom: 1.2rem;
}

/* Advocate photo should always fit nicely without cut */
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-photo-initials {
  font-family: "Playfair Display", serif;
  font-size: 3.1rem;
  letter-spacing: 0.12em;
  color: #f9fafb;
}

.hero-card-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
}

.hero-card-text p {
  font-size: 0.9rem;
  color: #e5e7eb;
}


/* Sections */
.section {
  padding: 3rem 0;
}

.section-alt {
  background: #faf7f0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #e5b15a;
}

.section h2 {
  margin-top: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
}

.section-header p {
  margin-top: 0.5rem;
  color: #4b5563;
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.4rem 1.4rem 1.3rem;
  border: 1px solid #1f2940;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.03);
}

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

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 0.9rem;
  color: #4b5563;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: flex-start;
}

.check-list {
  list-style: none;
  margin-top: 1rem;
}

.check-list li {
  padding-left: 1.3rem;
  position: relative;
  font-size: 0.95rem;
  color: #d1d5db;
}

.check-list li + li {
  margin-top: 0.4rem;
}

.check-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #e5b15a;
}

.about-boxes {
  display: grid;
  gap: 1rem;
}

.info-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.3rem;
  border: 1px solid #1f2940;
  font-size: 0.9rem;
}

.info-box h3 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
  font-family: 'Playfair Display', serif;
}

/* Appointment */
.appointment-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2rem;
}

.contact-summary p {
  font-size: 0.9rem;
}

.contact-summary p + p {
  margin-top: 0.3rem;
}

.appointment-form {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.5rem 1.4rem 1.4rem;
  border: 1px solid #1f2940;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}

.form-field label {
  font-size: 0.8rem;
  color: #4b5563;
}

.form-field input,
.form-field textarea {
  border-radius: 10px;
  border: 1px solid #dfd3b5;
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.16s ease-out, box-shadow 0.16s ease-out;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: #e5b15a;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.35);
}

.form-note {
  margin-top: 0.65rem;
  font-size: 0.78rem;
  color: #4b5563;
}

/* Footer */
.footer {
  border-top: 1px solid #1f2940;
  padding: 1.6rem 0;
  background: #ffffff;
}

.footer-inner {
  text-align: center;
  font-size: 0.8rem;
  color: #4b5563;
}

.footer-small {
  margin-top: 0.3rem;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-card {
    max-width: 360px;
    margin-inline: auto;
  }
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-grid,
  .appointment-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .top-contact {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 2.4rem;
  }
  .hero h1 {
    font-size: 1.9rem;
  }
  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
  .popup-card {
  backdrop-filter: blur(18px);
  background: rgba(15,23,42,0.96);
    margin: 0 1rem;
    padding: 1.6rem 1.4rem;
  }
}


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

.review-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.4rem 1.4rem 1.3rem;
  border: 1px solid #1f2940;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-text {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 0.9rem;
  font-style: italic;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.review-name {
  font-size: 0.9rem;
  font-weight: 600;
}

.review-tagline {
  font-size: 0.8rem;
  color: #4b5563;
}

.reviews-note {
  margin-top: 1.4rem;
  font-size: 0.78rem;
  color: #4b5563;
}

@media (max-width: 960px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .reviews-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* WhatsApp Icon in Buttons */
.btn .wa-icon,
a .wa-icon {
  width: 18px;
  height: 18px;
  margin-right: 0.45rem;
  border-radius: 999px;
  background-image: url('whatsapp-logo.png');
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

a .wa-icon.small {
  width: 16px;
  height: 16px;
  margin-right: 0.35rem;
}

.btn span,
a span {
  display: inline-flex;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}


/* Education list */
.edu-list {
  list-style: none;
  margin-top: 0.8rem;
  margin-bottom: 0.6rem;
  padding-left: 0;
}

.edu-list li {
  font-size: 0.9rem;
  color: #d1d5db;
  padding-left: 1.3rem;
  position: relative;
}

.edu-list li + li {
  margin-top: 0.25rem;
}

.edu-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: #e5b15a;
}

/* Business card */
.business-card {
  max-width: 760px;
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid #1f2940;
  box-shadow: 0 14px 36px rgba(0,0,0,0.05);
  padding: 1.6rem 1.7rem;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  gap: 1.4rem;
  background: linear-gradient(135deg, #fffdf6 0, #ffffff 55%, #fff7e4 100%);
}

.business-card-left h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 0.1rem;
}

.bc-role {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.5rem;
}

.bc-text {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 0.6rem;
}

.bc-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.bc-tags li {
  font-size: 0.78rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  border: 1px solid #e4d6af;
  background: #fffaf0;
}

.business-card-right p {
  font-size: 0.86rem;
  color: #444;
}

.business-card-right p + p {
  margin-top: 0.6rem;
}

@media (max-width: 720px) {
  .business-card {
    grid-template-columns: minmax(0, 1fr);
  }
}


/* Bottom courts & practice strip */
.bottom-strip {
  background: #111111;
  color: #f5f5f5;
  padding: 1.9rem 0 1.6rem;
  margin-top: 2rem;
}

.bottom-strip-inner {
  font-size: 0.85rem;
}

.bottom-line + .bottom-line {
  margin-top: 1.1rem;
}

.bottom-line.small {
  font-size: 0.8rem;
  color: #bbbbbb;
}

@media (max-width: 640px) {
  .bottom-strip-inner {
    text-align: left;
  }
}


.hero-photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.25), #000);
}

.hero-photo-initials {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  letter-spacing: 0.1em;
  color: #f7f1d5;
}


.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
