/* 
  =============================================================================
  ANKUR YASHWANT RAUT - ULTRA-PREMIUM POLITICAL PORTFOLIO
  COMPONENTS STYLESHEET (COMPONENTS.CSS)
  =============================================================================
*/

/* -----------------------------------------------------------------------------
   1. HEADER & NAVIGATION BAR
   ----------------------------------------------------------------------------- */
.header-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-normal);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 107, 0, 0.1);
}

.header-navbar.scrolled {
  height: 75px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-bottom-color: rgba(255, 107, 0, 0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-emblem-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--bg-cream);
  padding: 4px;
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.2);
  border: 1.5px solid var(--gold-bright);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-emblem-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text-box h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.brand-text-box span {
  font-size: 0.76rem;
  font-family: var(--font-subheading);
  color: var(--primary-saffron);
  font-weight: 700;
  display: block;
}

.nav-menu-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-subheading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
  position: relative;
  padding: 0.4rem 0;
  transition: var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: linear-gradient(90deg, var(--primary-saffron), var(--accent-green));
  border-radius: 2px;
  transition: var(--transition-normal);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-saffron);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: var(--saffron-light);
  color: var(--primary-saffron);
  border: 1px solid var(--border-saffron);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.lang-switch-btn:hover {
  background: var(--primary-saffron);
  color: var(--bg-white);
}

.hamburger-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* -----------------------------------------------------------------------------
   2. HERO SECTION
   ----------------------------------------------------------------------------- */
.hero-section {
  min-height: 100vh;
  padding-top: calc(var(--header-height) + 2rem);
  padding-bottom: 4rem;
  position: relative;
  background: linear-gradient(135deg, #FFF9EE 0%, #FFFFFF 50%, #FFF4DF 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Hero Background Decorative Patterns */
.hero-bg-accent {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-accent-2 {
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(19, 136, 8, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 3.5rem;
  position: relative;
  z-index: 2;
}

.hero-content-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.political-badge-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.bjp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: var(--bg-white);
  border: 1.5px solid var(--primary-saffron);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.15);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary-saffron);
}

.foundation-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.1rem;
  background: var(--bg-white);
  border: 1.5px solid var(--accent-green);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(19, 136, 8, 0.15);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--accent-green);
}

.hero-title-name {
  font-size: 3.6rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -1.2px;
  margin-bottom: 0.8rem;
}

.hero-title-name span {
  color: var(--primary-saffron);
  background: linear-gradient(135deg, #FF6B00 0%, #D84315 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-designation-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary-saffron);
  padding-left: 1.2rem;
}

.hero-designation-item {
  font-family: var(--font-subheading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.hero-designation-item span {
  color: var(--accent-green);
  font-weight: 800;
}

.hero-tagline {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.2rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* Hero Portrait Frame */
.hero-portrait-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-portrait-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  border-radius: 30px;
  padding: 12px;
  background: linear-gradient(145deg, #FFFFFF, #FFF0E5);
  box-shadow: 0 25px 60px rgba(255, 107, 0, 0.2);
  border: 2px solid rgba(255, 215, 0, 0.6);
  overflow: hidden;
}

.portrait-img-box {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 22px;
  overflow: hidden;
  background: #EAEAEA;
  position: relative;
}

.portrait-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.hero-portrait-card:hover .portrait-img-box img {
  transform: scale(1.04);
}

.portrait-gold-tag {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  background: rgba(18, 22, 31, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 215, 0, 0.5);
  padding: 0.85rem 1.2rem;
  border-radius: 16px;
  color: var(--bg-white);
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.portrait-gold-tag h4 {
  color: var(--gold-bright);
  font-size: 1rem;
  font-weight: 800;
}

.portrait-gold-tag p {
  font-size: 0.8rem;
  color: #CBD5E0;
}

/* Quick Stats Bar in Hero Bottom */
.hero-quick-stats {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  padding: 1.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 107, 0, 0.15);
  position: relative;
  z-index: 3;
}

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

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

.quick-stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--saffron-light);
  color: var(--primary-saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.quick-stat-info h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
}

.quick-stat-info p {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* -----------------------------------------------------------------------------
   3. ABOUT SECTION
   ----------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-img-container {
  position: relative;
}

.about-main-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-white);
  background: #EEE;
}

.about-main-card img {
  width: 100%;
  height: auto;
  display: block;
}

.about-quote-box {
  position: absolute;
  bottom: -25px;
  right: -20px;
  background: var(--primary-saffron);
  color: var(--bg-white);
  padding: 1.5rem 1.8rem;
  border-radius: 20px;
  max-width: 320px;
  box-shadow: 0 15px 30px var(--saffron-glow);
}

.about-quote-box p {
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.4;
}

.about-tabs-nav {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 0.5rem;
}

.about-tab-btn {
  padding: 0.6rem 1.4rem;
  background: none;
  border: none;
  font-family: var(--font-subheading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}

.about-tab-btn.active {
  color: var(--primary-saffron);
}

.about-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -0.6rem;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-saffron);
  border-radius: 3px;
}

.about-tab-pane {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.about-tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.mv-card {
  padding: 1.8rem;
  border-radius: 18px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.mv-card:hover {
  border-color: var(--primary-saffron);
  box-shadow: var(--shadow-md);
}

.mv-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: var(--saffron-light);
  color: var(--primary-saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.mv-card.green .mv-icon {
  background: var(--green-light);
  color: var(--accent-green);
}

.mv-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* -----------------------------------------------------------------------------
   4. ACHIEVEMENTS & COUNTERS
   ----------------------------------------------------------------------------- */
.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.counter-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 107, 0, 0.12);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.counter-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-saffron), var(--accent-green));
}

.counter-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.counter-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--saffron-light);
  color: var(--primary-saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.2rem auto;
}

.counter-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.counter-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* -----------------------------------------------------------------------------
   5. POLITICAL JOURNEY TIMELINE
   ----------------------------------------------------------------------------- */
.timeline-wrapper {
  position: relative;
  max-width: 950px;
  margin: 3rem auto 0 auto;
}

.timeline-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-saffron) 0%, var(--accent-green) 100%);
  transform: translateX(-50%);
  border-radius: 4px;
}

.timeline-item {
  position: relative;
  margin-bottom: 3.5rem;
  width: 50%;
  padding: 0 2.5rem;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 15px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-saffron);
  border: 4px solid var(--bg-white);
  box-shadow: 0 0 0 4px var(--saffron-glow);
  z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -11px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -11px;
}

.timeline-content-card {
  background: var(--bg-white);
  padding: 1.8rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
}

.timeline-content-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-saffron);
  box-shadow: var(--shadow-hover);
}

.timeline-year-tag {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  background: var(--saffron-light);
  color: var(--primary-saffron);
  font-weight: 800;
  font-size: 0.88rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.8rem;
}

.timeline-content-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.timeline-content-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* -----------------------------------------------------------------------------
   6. SOCIAL WORK & KALYANJI FOUNDATION INITIATIVES
   ----------------------------------------------------------------------------- */
.initiatives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.initiative-card {
  background: var(--bg-white);
  border-radius: 22px;
  padding: 2.2rem 1.8rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.initiative-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-saffron);
}

.initiative-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--saffron-light);
  color: var(--primary-saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.3rem;
}

.initiative-card.green-accent .initiative-icon {
  background: var(--green-light);
  color: var(--accent-green);
}

.initiative-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.initiative-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.initiative-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
}

.initiative-stat-badge {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-green);
}

.read-more-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary-saffron);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

/* -----------------------------------------------------------------------------
   7. GALLERY (MASONRY & LIGHTBOX)
   ----------------------------------------------------------------------------- */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary-saffron);
  color: var(--bg-white);
  border-color: var(--primary-saffron);
  box-shadow: 0 4px 15px var(--saffron-glow);
}

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

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4/3;
  cursor: pointer;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(18, 22, 31, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-fast);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-category-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-bright);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-overlay h4 {
  color: var(--bg-white);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

/* -----------------------------------------------------------------------------
   8. VIDEOS SHOWCASE
   ----------------------------------------------------------------------------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.video-card {
  background: var(--bg-white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.video-thumb-box {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  cursor: pointer;
}

.video-thumb-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.video-thumb-box:hover img {
  opacity: 0.7;
}

.play-btn-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: var(--primary-saffron);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 10px 25px var(--saffron-glow);
  transition: var(--transition-bounce);
}

.video-thumb-box:hover .play-btn-circle {
  transform: translate(-50%, -50%) scale(1.15);
  background: var(--secondary-orange);
}

.video-info {
  padding: 1.5rem;
}

.video-info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

/* -----------------------------------------------------------------------------
   9. NEWS & PRESS COVERAGE
   ----------------------------------------------------------------------------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.news-card {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.news-img-box {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #EEE;
  position: relative;
}

.news-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-paper-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(18, 22, 31, 0.85);
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.news-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.news-date {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.news-content h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

/* -----------------------------------------------------------------------------
   10. TESTIMONIALS CAROUSEL
   ----------------------------------------------------------------------------- */
.testimonial-card-single {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.testimonial-stars {
  color: var(--gold-bright);
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.testimonial-user {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--saffron-light);
  color: var(--primary-saffron);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  border: 2px solid var(--primary-saffron);
}

.testimonial-meta h4 {
  font-size: 1rem;
  color: var(--text-dark);
}

.testimonial-meta p {
  font-size: 0.85rem;
  color: var(--accent-green);
  font-weight: 600;
}

/* -----------------------------------------------------------------------------
   11. CONTACT & OFFICES
   ----------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.office-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.office-card {
  background: var(--bg-white);
  padding: 1.8rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex;
  gap: 1.2rem;
}

.office-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--saffron-light);
  color: var(--primary-saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.office-card.green-icon .office-icon {
  background: var(--green-light);
  color: var(--accent-green);
}

.contact-form-container {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  border: 1.5px solid var(--border-light);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-saffron);
  box-shadow: 0 0 0 4px var(--saffron-glow);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* -----------------------------------------------------------------------------
   12. FLOATING BUTTONS & UTILITIES
   ----------------------------------------------------------------------------- */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 990;
  text-decoration: none;
  transition: var(--transition-bounce);
}

.floating-whatsapp-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

.scroll-top-btn {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--text-dark);
  color: var(--bg-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
  z-index: 990;
}

.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
}

/* Modal Popup Framework */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--bg-white);
  border-radius: 24px;
  max-width: 700px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal-backdrop.open .modal-box {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--bg-cream);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
}
