/* =============================================
   ADVOCATE DASARI SAI SREENIVASULU
   Simple, Clean CSS — styles.css
   ============================================= */

/* ===== GLOBAL ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  background-color: #ffffff;
}

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

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

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
}

/* ===== UTILITY ===== */
.gold-text { color: #c9a84c; }

.section-white  { padding: 80px 0; background-color: #ffffff; }
.section-dark   { padding: 80px 0; background-color: #0a1628; }
.section-tinted { padding: 80px 0; background-color: #f5f0e8; }

.eyebrow {
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 10px;
}

.eyebrow.light { color: #e2c074; }

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-title.light { color: #ffffff; }

.section-sub {
  font-size: 16px;
  color: #888;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #c9a84c;
  color: #0a1628;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid #c9a84c;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.btn-gold:hover {
  background-color: #e2c074;
  border-color: #e2c074;
  color: #0a1628;
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: transparent;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
}

.btn-outline:hover {
  border-color: #c9a84c;
  color: #c9a84c;
}

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25d366;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.btn-wa:hover {
  background-color: #1ebe59;
  color: #ffffff;
  transform: translateY(-2px);
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #0a1628;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  background-color: #c9a84c;
  color: #0a1628;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.brand-sub {
  font-size: 12px;
  color: #c9a84c;
  margin-top: 2px;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.header-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s;
}

.header-links a:hover { color: #c9a84c; }

.wa-btn {
  background-color: #25d366;
  color: #ffffff !important;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
}

.wa-btn:hover {
  background-color: #1ebe59;
  color: #ffffff !important;
}

/* ===== NAVBAR ===== */
.main-nav {
  background-color: #0f2040;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 4px;
  padding-bottom: 4px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 0;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  padding: 8px 16px;
  border-radius: 4px;
  transition: color 0.3s, background-color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #c9a84c;
  background-color: rgba(201,168,76,0.1);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 26px;
  cursor: pointer;
  position: absolute;
  right: 0;
  padding: 4px 8px;
}

/* ===== HERO ===== */
.hero-section {
  background: linear-gradient(135deg, #0a1628 0%, #0f2040 60%, #0e2a55 100%);
  padding: 80px 0 70px;
  color: #ffffff;
}

.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c9a84c;
  margin-bottom: 16px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 520px;
}

.hero-desc strong { color: #e2c074; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(201,168,76,0.15);
  color: #e2c074;
  border: 1px solid rgba(201,168,76,0.35);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ===== ADVOCATE PHOTO ===== */
.photo-wrap {
  position: relative;
  display: inline-block;
}

.advocate-photo {
  width: 300px;
  height: 360px;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  border: 3px solid rgba(201,168,76,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.photo-badge {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #c9a84c;
  color: #0a1628;
  font-weight: 700;
  font-size: 13px;
  padding: 7px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

/* ===== ABOUT PHOTO ===== */
.about-photo {
  width: 100%;
  max-width: 360px;
  height: 420px;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.15);
  border: 3px solid #f0e8d0;
}

/* ===== CHECK LIST ===== */
.check-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
}

.check-list li .bi {
  color: #c9a84c;
  font-size: 18px;
  flex-shrink: 0;
}

/* ===== STATS BAR ===== */
.stats-bar {
  background-color: #c9a84c;
  padding: 0;
}

.stat-box {
  padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,0.3);
}

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

.stat-box .bi {
  font-size: 22px;
  color: #0a1628;
  margin-bottom: 6px;
  display: block;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #0a1628;
  line-height: 1;
}

.stat-lbl {
  font-size: 12px;
  font-weight: 600;
  color: #0a1628;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ===== SERVICE CARDS ===== */
.service-card {
  background-color: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-top: 3px solid #c9a84c;
  border-radius: 12px;
  padding: 28px 24px;
  height: 100%;
  transition: transform 0.3s, background-color 0.3s;
}

.service-card:hover {
  background-color: rgba(201,168,76,0.07);
  transform: translateY(-6px);
}

.svc-icon {
  font-size: 32px;
  color: #c9a84c;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 16px;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.svc-tags span {
  background-color: rgba(201,168,76,0.12);
  color: #e2c074;
  border: 1px solid rgba(201,168,76,0.25);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}

/* ===== TRUST CARDS ===== */
.trust-card {
  background-color: #ffffff;
  border: 1px solid #e5e0d5;
  border-radius: 12px;
  padding: 32px 24px;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.1);
}

.trust-icon {
  font-size: 36px;
  color: #c9a84c;
  margin-bottom: 16px;
  display: block;
}

.trust-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0a1628;
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* ===== FAQ ===== */
.faq-item {
  background-color: #ffffff;
  border: 1px solid #ddd8cc;
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #0a1628;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.3s;
}

.faq-q:hover { background-color: #f5f0e8; }

.faq-q.open { background-color: #f5f0e8; color: #c9a84c; }

.faq-icon {
  font-size: 14px;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-q.open .faq-icon { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 22px;
}

.faq-a.open {
  max-height: 300px;
  padding: 4px 22px 18px;
}

.faq-a p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
}

/* ===== CONTACT CARDS ===== */
.contact-card {
  background-color: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 12px;
  padding: 28px 20px;
  height: 100%;
  transition: background-color 0.3s, transform 0.3s;
}

.contact-card:hover {
  background-color: rgba(201,168,76,0.08);
  transform: translateY(-4px);
}

.contact-icon {
  font-size: 32px;
  color: #c9a84c;
  margin-bottom: 12px;
  display: block;
}

.contact-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.contact-card a {
  color: #e2c074;
  font-weight: 600;
  transition: color 0.3s;
}

.contact-card a:hover { color: #c9a84c; }

.hours-bar {
  background-color: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 10px;
  padding: 16px 24px;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
}

.hours-bar strong { color: #e2c074; }
.hours-bar .bi { color: #c9a84c; margin-right: 6px; }

/* ===== FOOTER ===== */
.site-footer {
  background-color: #0a1628;
  padding: 48px 0 20px;
  border-top: 3px solid #c9a84c;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 46px;
  height: 46px;
  background-color: #c9a84c;
  color: #0a1628;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.footer-brand strong {
  display: block;
  color: #ffffff;
  font-size: 16px;
}

.footer-brand small {
  color: #c9a84c;
  font-size: 12px;
}

.footer-link {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 8px;
  transition: color 0.3s;
}

.footer-link:hover { color: #c9a84c; }

.footer-hr {
  border-color: rgba(255,255,255,0.1);
  margin: 24px 0 16px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===== SCROLL TO TOP ===== */
#scrollTopBtn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  background-color: #c9a84c;
  color: #0a1628;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: background-color 0.3s, transform 0.2s;
  z-index: 999;
}

#scrollTopBtn.show { display: flex; }
#scrollTopBtn:hover { background-color: #e2c074; transform: translateY(-3px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .hero-title { font-size: 40px; }
  .advocate-photo { width: 260px; height: 310px; }
  .about-photo { height: 340px; }
  .section-white, .section-dark, .section-tinted { padding: 60px 0; }
}

@media (max-width: 767px) {
  /* Mobile nav */
  .nav-toggle { display: block; }
  .nav-list {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background-color: #0f2040;
    padding: 12px 16px;
    gap: 2px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .nav-list.open { display: flex; }
  .nav-link { width: 100%; padding: 10px 12px; }

  /* Hero */
  .hero-section { padding: 50px 0; }
  .hero-title { font-size: 32px; }
  .hero-desc { font-size: 15px; }
  .advocate-photo { width: 220px; height: 260px; }

  /* Stats */
  .stat-box { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }

  .section-white, .section-dark, .section-tinted { padding: 50px 0; }
  .section-title { font-size: 28px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 26px; }
  .hero-badges { gap: 8px; }
  .hero-btns { flex-direction: column; }
  .btn-gold, .btn-outline, .btn-wa { width: 100%; justify-content: center; }
  .brand-name { font-size: 16px; }
  .header-links { gap: 10px; }
}
