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

body {
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #ffffff;
  color: #1e1e1e;
  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 {
  background: #ffffff;
  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: #1e1e1e;
}

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

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

/* Top Bar */
.top-bar {
  border-bottom: 1px solid #f0e5c8;
  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, #d4af37 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%, #d4af37 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: #d4af37;
  color: #1e1e1e;
  border-color: #d4af37;
}

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

.btn-outline {
  background: transparent;
  color: #1e1e1e;
  border-color: #d4af37;
}

.btn-outline:hover {
  background: #fff8df;
}

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

.btn-ghost:hover {
  background: #fff8df;
}

.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 #f0e5c8;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 3rem;
}

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

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

.hero p {
  margin-top: 0.8rem;
  max-width: 32rem;
  color: #545454;
}

.hero-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-highlights {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.highlight-item {
  min-width: 120px;
}

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

.highlight-label {
  display: block;
  font-size: 0.8rem;
  color: #666;
}

/* Hero Card */
.hero-card {
  background: #101010;
  border-radius: 28px;
  padding: 1.6rem;
  border: 1px solid rgba(212, 175, 55, 0.55);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.52);
  color: #f9f3db;
}

.hero-photo {
  height: 260px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.75);
  overflow: hidden;
  background: #000;
  margin-bottom: 1rem;
}

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

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

.hero-card-text p {
  font-size: 0.8rem;
  color: #d6c797;
}

/* 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: #b0902c;
}

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

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

/* 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 #f0e5c8;
  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: #555;
}

/* 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: #424242;
}

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

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

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

.info-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.3rem;
  border: 1px solid #f0e5c8;
  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 #f0e5c8;
  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: #555;
}

.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: #d4af37;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.35);
}

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

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

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

.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 {
    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 #f0e5c8;
  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: #777;
}

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

@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: #424242;
  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: #b0902c;
}

/* Business card */
.business-card {
  max-width: 760px;
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid #f0e5c8;
  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: #777;
  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;
  }
}
