/* ===== DESIGN TOKENS ===== */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');

/* ===== PAGE LOADER ===== */
.page-loader {
  position: fixed; inset: 0; z-index: 9999;
  background: #ffffff;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-gif { width: 140px; height: 140px; object-fit: contain; }


:root {
  --gold: #987243;
  --gold-light: #b89060;
  --gold-dark: #7a5a32;
  --black: #0f0f0f;
  --white: #ffffff;
  --off-white: #f8f5f0;
  --muted: #f3efe8;
  --text: #1a1a1a;
  --text-light: #555;
  --border: #e2d9ca;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 6px 24px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.18);
  --shadow-gold: 0 4px 24px rgba(152, 114, 67, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
}

/* ===== LAYOUT ===== */
.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-muted {
  background: var(--muted);
}

/* ===== TYPOGRAPHY ===== */
.section-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-top: 0.8rem;
  max-width: 55ch;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.82rem 1.6rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Roboto', sans-serif;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(152, 114, 67, 0.32);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

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

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

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

.btn-dark:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c3e);
  color: var(--white);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* ===== NAVBAR ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--black);
  font-weight: 700;
  font-size: 1.35rem;
}

.logo-icon {
  color: var(--gold);
  font-size: 1.6rem;
}

.logo span {
  color: var(--gold);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-cta {
  margin-left: 0.8rem;
  padding: 0.6rem 1.3rem;
  font-size: 0.9rem;
}

.services-dropdown {
  position: relative;
}

.services-dropdown>a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.5rem;
  min-width: 220px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 200;
}

.whatsapp-nav {
  color: #ffffff !important;
}

.whatsapp-nav:hover {
  color: #0a0a0a !important;
}

.services-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem;
  color: var(--text);
  font-size: 0.825rem;
  border-radius: 8px;
  transition: var(--transition);
}

.dropdown-menu a:hover {
  background: var(--muted);
  color: var(--gold);
  padding-left: 1.2rem;
}

.menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(125deg, #0f0f0f 0%, #1c1409 40%, #2a1c09 70%, #0f0f0f 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1600&q=80') center/cover no-repeat;
  opacity: 0.18;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(15, 15, 15, 0.92) 50%, rgba(15, 15, 15, 0.55));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--white);
  line-height: 1.15;
  font-weight: 700;
}

.hero h1 em {
  color: var(--gold);
  font-style: normal;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  margin: 1.2rem 0 2rem;
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(152, 114, 67, 0.4);
  border-radius: 100px;
  padding: 0.8rem 1.8rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-rating-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 4px;
  display: flex;
  align-items: center;
}

.hero-rating-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-rating-text {
  display: flex;
  flex-direction: column;
}

.hero-rating-text strong {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
}

.hero-rating-text span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.hero-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(152, 114, 67, 0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-card h3 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}

.hero-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.hero-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.hero-card li::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-bar .container {
  display: flex;
  align-items: stretch;
}

.stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.8rem 1.5rem;
  border-right: 1px solid var(--border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-icon {
  font-size: 2rem;
  color: var(--gold);
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.1rem;
}

/* ===== SERVICE CARDS ===== */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.services-all-btn {
  white-space: nowrap;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.service-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.06);
}

.service-card-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
  transition: var(--transition);
}

.service-card:hover .service-card-badge {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.1);
}

.service-card-body {
  padding: 1.8rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.6rem;
}

.service-card-body p {
  color: var(--text-light);
  font-size: 0.93rem;
  flex: 1;
  line-height: 1.65;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 1.2rem;
  transition: var(--transition);
}

.service-card-link:hover {
  gap: 0.7rem;
}

.service-card-link svg {
  transition: var(--transition);
}

/* ===== TESTIMONIALS CAROUSEL ===== */
.testimonials-carousel-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  padding-bottom: 1rem;
}

.testimonials-slider {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 0;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: left;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 0.75rem);
    min-width: calc(50% - 0.75rem);
  }
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(152, 114, 67, 0.4);
}

.testimonial-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  margin: 0;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 0.2rem;
  display: flex;
  gap: 2px;
}

.testimonial-name {
  font-weight: 700;
  color: var(--black);
  font-size: 1.05rem;
  line-height: 1.2;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-light);
}

.testimonial-text {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  position: relative;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  flex: 1;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.testimonial-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

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

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 2rem;
  left: -0.5rem;
  background: var(--gold);
  color: var(--white);
  padding: 0.825rem 1rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.about-badge strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
}

.about-badge span {
  font-size: 0.82rem;
}

.about-content .section-title {
  margin-bottom: 1rem;
}

.about-text {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin: 2rem 0;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-feature-icon {
  width: 42px;
  height: 42px;
  background: rgba(152, 114, 67, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.about-feature-text strong {
  display: block;
  font-size: 1.05rem;
  color: var(--black);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.about-feature-text span {
  display: block;
  font-size: 0.95rem;
  color: var(--text-light);
}

.about-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--black) 0%, #1c1409 50%, #2a1c09 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1200&q=60') center/cover;
  opacity: 0.06;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section .section-label {
  margin-bottom: 0.8rem;
}

.cta-section h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 50ch;
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
}

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

/* ===== FOOTER ===== */
.site-footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  color: var(--white);
  margin-block: 0.5rem;
  display: inline-flex;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 28ch;
}

.footer-logo-wrap {
  display: inline-flex;
  align-items: center;
  margin-bottom: 20px;
  background: rgb(253 253 253);
  border-radius: 14px;
  padding: 10px;
}

.footer-socials {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  transition: var(--transition);
}

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

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
}

.footer-contact-icon {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.footer-contact-item p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
  color: var(--gold);
}

/* ===== PAGE BANNER ===== */
.page-banner {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
}

.page-banner-bg {
  position: absolute;
  inset: 0;
}

.page-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 15, 15, 0.7) 0%, rgba(15, 15, 15, 0.85) 100%);
}

.page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-banner-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  font-weight: 700;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.8rem;
  font-size: 0.88rem;
}

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

.breadcrumb span {
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.3);
}

/* ===== SERVICE DETAIL PAGE ===== */
.service-detail {
  padding: 4rem 0 5rem;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}

.service-main h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
}

.service-tagline {
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0.3rem 0 2rem;
}

.service-section {
  margin-bottom: 2.5rem;
}

.service-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.service-section p {
  color: var(--text-light);
  line-height: 1.8;
}

.sub-services-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1rem;
}

.sub-services-list li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1.2rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  cursor: default;
}

.sub-services-list li:hover {
  background: var(--white);
  border-color: var(--gold);
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
  color: var(--gold);
}

.sub-check {
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--white);
  font-weight: 700;
}

/* ===== HELP SIDEBAR ===== */
.help-card {
  position: sticky;
  top: 100px;
  background: linear-gradient(145deg, #161616, #1f1409);
  border: 1px solid rgba(152, 114, 67, 0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(152, 114, 67, 0.1);
}

.help-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.help-card .help-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin-bottom: 1.8rem;
}

.help-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  margin-bottom: 1.4rem;
}

.help-item-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(152, 114, 67, 0.15);
  border: 1px solid rgba(152, 114, 67, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}

.help-item-text label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.15rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.help-item-text a,
.help-item-text p {
  color: var(--white);
  font-size: 0.93rem;
  font-weight: 500;
  transition: var(--transition);
}

.help-item-text a:hover {
  color: var(--gold);
}

.help-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 1.5rem 0;
}

.help-card .btn-whatsapp {
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
  margin-top: 0.5rem;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #25d366, #128c3e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  color: white;
  font-size: 1.6rem;
  transition: var(--transition);
  animation: pulse-green 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-green {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 4px 32px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.08);
  }
}

/* ===== ADVOCATE SECTION ===== */
.advocate-section {
  background: var(--white);
}

.advocate-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 4rem;
  align-items: start;
}

/* --- Image column --- */
.advocate-img-col {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.advocate-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.advocate-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
}

.advocate-img-wrap:hover img {
  transform: scale(1.03);
}

.advocate-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(152, 114, 67, 0.4);
}

.advocate-contact-strip {
  display: flex;
  gap: 0.8rem;
}

.advocate-contact-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  background: var(--muted);
  color: var(--black);
  border: 1px solid var(--border);
}

.advocate-contact-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.advocate-contact-wa {
  background: linear-gradient(135deg, #25d366, #128c3e);
  color: var(--white);
  border-color: transparent;
}

.advocate-contact-wa:hover {
  background: #128c3e;
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

/* --- Details column --- */
.advocate-designation {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 0.3rem;
  margin-bottom: 1.4rem;
}

.advocate-bio {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.advocate-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.8rem 0;
}

.advocate-credential-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 1rem;
  background: var(--muted);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.advocate-credential-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.advocate-credential-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(152, 114, 67, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.advocate-credential-item strong {
  display: block;
  font-size: 0.82rem;
  color: var(--black);
  font-weight: 700;
  margin-bottom: 0.15rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.advocate-credential-item span {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.4;
}

.advocate-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.advocate-tag {
  padding: 0.35rem 0.9rem;
  background: rgba(152, 114, 67, 0.08);
  color: var(--gold-dark);
  border: 1px solid rgba(152, 114, 67, 0.25);
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  transition: var(--transition);
}

.advocate-tag:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.advocate-cta {
  padding: 0.95rem 2rem;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .advocate-grid {
    grid-template-columns: 360px 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .advocate-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .advocate-img-wrap img {
    height: 380px;
  }

  .advocate-credentials {
    grid-template-columns: 1fr;
  }
}

/* ===== LOCATION SECTION ===== */
.location-section {
  padding-top: 2rem;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.location-info {
  padding: 4rem;
}

.location-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-top: 1rem;
  margin-bottom: 2.5rem;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

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

.location-detail-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--muted);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.location-detail-content h4 {
  font-size: 1.05rem;
  color: var(--black);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.location-detail-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
  line-height: 1.5;
}

.location-detail-content a {
  color: var(--text-light);
  font-size: 0.95rem;
  display: block;
  margin-bottom: 0.2rem;
  transition: var(--transition);
}

.location-detail-content a:hover {
  color: var(--gold);
}

.location-detail-content .whatsapp-link {
  color: #25d366;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.location-detail-content .whatsapp-link:hover {
  color: #128c3e;
}

.location-cta {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: 1.05rem;
}

.location-map {
  min-height: 400px;
  height: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }

  .help-card {
    position: static;
  }

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

  .location-info {
    padding: 2.5rem;
  }

  .location-grid {
    gap: 0;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    display: none;
  }

  .service-cards-grid {
    grid-template-columns: 1fr;
  }

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

  .stats-bar .container {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 1 1 50%;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  /* Mobile Nav Improvements */
  .menu-btn {
    display: flex !important;
    margin-left: auto;
    z-index: 1001;
    position: relative;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 5rem 2rem 2rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    height: 100vh;
    overflow-y: auto;
    text-align: center;
    gap: 1rem;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    font-size: 1.2rem;
    padding: 1rem;
    display: block;
  }

  .nav-cta {
    margin: 1rem auto 0;
    display: inline-flex !important;
  }

  .services-dropdown {
    width: 100%;
  }

  .services-dropdown>a {
    justify-content: center;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--muted);
    margin-top: 0.5rem;
    display: none;
    padding-left: 0;
  }

  .services-dropdown.active .dropdown-menu {
    display: block;
  }

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

  .location-map {
    height: 400px;
  }

  .service-card-badge {
    display: none;
  }
}

@media (max-width: 540px) {
  /* ── Global typography scale-down ── */
  .section-title {
    font-size: 1.5rem !important;
    line-height: 1.3;
  }

  .section-label {
    font-size: 0.75rem;
  }

  .section-subtitle {
    font-size: 0.92rem;
  }

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

  /* ── Navbar / Logo ── */
  .logo {
    font-size: 1.1rem;
    gap: 0.4rem;
  }

  .logo img {
    height: 32px !important;
    width: 32px !important;
  }

  .nav-wrap {
    padding: 0.75rem 0;
  }

  /* ── Hero ── */
  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 3.5rem 0 2.5rem;
  }

  .hero h1 {
    font-size: 1.7rem !important;
    line-height: 1.25;
  }

  .hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .hero-lead {
    font-size: 0.93rem;
    margin: 0.9rem 0 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.7rem;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 1rem;
    font-size: 0.9rem;
  }

  .hero-rating {
    gap: 0.9rem;
    padding: 0.65rem 1.1rem;
    border-radius: 60px;
    flex-wrap: wrap;
  }

  .hero-rating-stars {
    font-size: 0.85rem;
    letter-spacing: 2px;
  }

  .hero-rating-divider {
    height: 22px;
  }

  .hero-rating-text strong {
    font-size: 0.88rem;
  }

  .hero-rating-text span {
    font-size: 0.75rem;
  }

  /* ── Stats bar ── */
  .stat-item {
    flex: 1 1 100%;
    padding: 1.2rem 1rem;
  }

  .stat-num {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.78rem;
  }

  .stat-icon {
    font-size: 1.5rem;
  }

  /* ── Services section ── */
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .service-card-body {
    padding: 1.2rem 1rem 1rem;
  }

  .service-card-body h3 {
    font-size: 1rem;
  }

  .service-card-body p {
    font-size: 0.85rem;
  }

  /* ── About section ── */
  .about-img-wrap img {
    height: 260px;
  }

  .about-badge strong {
    font-size: 1.3rem;
  }

  .about-text {
    font-size: 0.92rem;
  }

  .about-feature-text strong {
    font-size: 0.95rem;
  }

  .about-feature-text span {
    font-size: 0.85rem;
  }

  .about-actions {
    flex-direction: column;
    gap: 0.7rem;
  }

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

  /* ── Advocate section ── */
  .advocate-img-wrap img {
    height: 300px;
  }

  .advocate-designation {
    font-size: 0.82rem;
  }

  .advocate-bio {
    font-size: 0.9rem;
  }

  .advocate-credentials {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .advocate-credential-item {
    padding: 0.8rem;
  }

  .advocate-credential-item strong {
    font-size: 0.75rem;
  }

  .advocate-credential-item span {
    font-size: 0.82rem;
  }

  .advocate-tag {
    font-size: 0.75rem;
    padding: 0.28rem 0.7rem;
  }

  .advocate-cta {
    width: 100%;
    justify-content: center;
    font-size: 0.9rem;
  }

  .advocate-contact-strip {
    gap: 0.6rem;
  }

  .advocate-contact-btn {
    font-size: 0.85rem;
    padding: 0.65rem 0.8rem;
  }

  /* ── Testimonials ── */
  .testimonial-card {
    padding: 1.2rem;
  }

  .testimonial-name {
    font-size: 0.95rem;
  }

  .testimonial-text {
    font-size: 0.88rem;
  }

  .testimonial-avatar {
    width: 50px;
    height: 50px;
  }

  /* ── Location section ── */
  .location-info {
    padding: 1.5rem;
  }

  .location-desc {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .location-detail-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .location-detail-content h4 {
    font-size: 0.9rem;
  }

  .location-detail-content p,
  .location-detail-content a {
    font-size: 0.85rem;
  }

  .location-details {
    gap: 1rem;
    margin-bottom: 1.8rem;
  }

  .location-cta {
    font-size: 0.9rem;
    padding: 0.8rem;
  }

  /* ── CTA section ── */
  .cta-section h2 {
    font-size: 1.5rem;
  }

  .cta-section p {
    font-size: 0.9rem;
  }

  .cta-actions {
    flex-direction: column;
    gap: 0.7rem;
  }

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

  /* ── Page banner (service pages) ── */
  .page-banner {
    height: 240px;
  }

  .page-banner-content h1 {
    font-size: 1.8rem;
  }

  .breadcrumb {
    font-size: 0.78rem;
  }

  /* ── Footer ── */
  .footer-logo-wrap {
    padding: 8px;
  }

  .footer-logo-wrap .logo {
    font-size: 1rem;
  }

  .footer-logo-wrap img {
    height: 30px !important;
    width: 30px !important;
  }

  .footer-brand p {
    font-size: 0.83rem;
  }

  .footer-col h4 {
    font-size: 0.88rem;
    margin-bottom: 0.8rem;
  }

  .footer-links a {
    font-size: 0.82rem;
  }

  .footer-contact-item p,
  .footer-contact-item a {
    font-size: 0.82rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
  }

  /* ── Service detail pages ── */
  .service-main h2 {
    font-size: 1.4rem;
  }

  .service-tagline {
    font-size: 0.9rem;
  }

  .service-section h3 {
    font-size: 1rem;
  }

  .service-section p {
    font-size: 0.9rem;
  }

  .sub-services-list li {
    font-size: 0.88rem;
    padding: 0.75rem 1rem;
  }

  .help-card {
    padding: 1.4rem;
  }

  .help-card h3 {
    font-size: 1.1rem;
  }

  .help-item-text a,
  .help-item-text p {
    font-size: 0.85rem;
  }
}