/* ============================================
   Tirupati Jewellery & Casting - Main Styles
   ============================================ */

:root {
  --gold: #C8A045;
  --gold-light: #d4b35c;
  --gold-dark: #a8862e;
  --black: #111111;
  --white: #FFFFFF;
  --bg: #F8F8F8;
  --text: #333333;
  --text-muted: #666666;
  --border: #e8e8e8;
  --shadow: 0 4px 24px rgba(17, 17, 17, 0.08);
  --shadow-hover: 0 12px 40px rgba(200, 160, 69, 0.18);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-lg: 20px;
  --font: 'Poppins', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ---- Loading Spinner ---- */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-ring {
  width: 56px;
  height: 56px;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---- Scroll Progress ---- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 10000;
  width: 0%;
  transition: width 0.1s linear;
}

/* ---- Top Bar ---- */
.top-bar {
  background: var(--black);
  color: var(--white);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(200, 160, 69, 0.2);
}

.top-bar a {
  color: rgba(255, 255, 255, 0.85);
}

.top-bar a:hover {
  color: var(--gold);
}

.top-bar i {
  color: var(--gold);
  margin-right: 6px;
}

.top-bar .whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #25D366;
  border-radius: 50%;
  color: var(--white) !important;
  font-size: 1rem;
  transition: var(--transition);
}

.top-bar .whatsapp-link:hover {
  transform: scale(1.1);
  background: #1ebe57;
}

/* ---- Navbar ---- */
.navbar-main {
  background: var(--white);
  padding: 12px 0;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar-main.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  border-bottom-color: var(--border);
  padding: 8px 0;
  animation: slideDown 0.4s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.navbar-brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar-brand-wrap img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-text {
  line-height: 1.2;
}

.brand-text .brand-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  display: block;
}

.brand-text .brand-tag {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black) !important;
  padding: 8px 16px !important;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold) !important;
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon-custom {
  width: 28px;
  height: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.navbar-toggler-icon-custom span {
  display: block;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- Buttons ---- */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  letter-spacing: 0.3px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 10px 26px;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 10px 26px;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* ---- Section Utilities ---- */
section {
  padding: 80px 0;
}

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

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title .subtitle {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}

.section-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  margin: 0 auto 16px;
  border-radius: 2px;
}

/* ---- Animations ---- */
.fade-up, .fade-left, .fade-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up {
  transform: translateY(40px);
}

.fade-left {
  transform: translateX(-40px);
}

.fade-right {
  transform: translateX(40px);
}

.fade-up.visible, .fade-left.visible, .fade-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* Hero content visible immediately (above the fold) */
.hero-content .fade-up,
.hero-content .fade-left,
.hero-content .fade-right,
.page-banner .fade-up {
  opacity: 1;
  transform: none;
}

/* ---- Hero ---- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero.jpg') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-section:hover .hero-bg {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.88) 0%, rgba(17, 17, 17, 0.6) 50%, rgba(200, 160, 69, 0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 0 100px;
}

.hero-badge {
  display: inline-block;
  background: rgba(200, 160, 69, 0.15);
  border: 1px solid rgba(200, 160, 69, 0.4);
  color: var(--gold);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-content h1 span {
  color: var(--gold);
}

.hero-content .hero-sub {
  font-size: 1.15rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 8px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  text-align: center;
  animation: bounce 2s infinite;
}

.hero-scroll i {
  display: block;
  font-size: 1.2rem;
  margin-top: 4px;
  color: var(--gold);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ---- Page Banner ---- */
.page-banner {
  position: relative;
  padding: 160px 0 80px;
  background: var(--black);
  text-align: center;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(200, 160, 69, 0.2));
}

.page-banner .banner-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero.jpg') center/cover no-repeat;
  opacity: 0.25;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.breadcrumb-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
}

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

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

.breadcrumb-nav .current {
  color: rgba(255, 255, 255, 0.8);
}

/* ---- About Preview ---- */
.about-preview-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-preview-img img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-preview-img:hover img {
  transform: scale(1.05);
}

.about-preview-img .experience-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--gold);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.experience-badge .year {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content .highlight-list {
  margin: 24px 0;
}

.about-content .highlight-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-weight: 500;
}

.about-content .highlight-list i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* ---- Service Cards ---- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(200, 160, 69, 0.2);
}

.service-card .icon-wrap {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(200, 160, 69, 0.1), rgba(200, 160, 69, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.service-card:hover .icon-wrap {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.service-card .icon-wrap i {
  font-size: 2rem;
  color: var(--gold);
  transition: var(--transition);
}

.service-card:hover .icon-wrap i {
  color: var(--white);
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* ---- Why Choose Us ---- */
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

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

.why-card .icon-box {
  width: 60px;
  height: 60px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: var(--transition);
}

.why-card:hover .icon-box {
  background: var(--gold);
}

.why-card .icon-box i {
  font-size: 1.4rem;
  color: var(--gold);
  transition: var(--transition);
}

.why-card:hover .icon-box i {
  color: var(--white);
}

.why-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---- Counter Section ---- */
.counter-section {
  background: linear-gradient(135deg, var(--black) 0%, #1a1a1a 50%, var(--black) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.counter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.counter-item {
  text-align: center;
  padding: 20px;
}

.counter-item .counter-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.counter-item .counter-label {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- Gallery ---- */
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1;
}

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

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

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
  transform: scale(0.5);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

/* ---- Testimonials ---- */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  flex-shrink: 0;
  padding: 0 15px;
}

.testimonial-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.testimonial-inner::before {
  content: '\201C';
  font-size: 5rem;
  color: rgba(200, 160, 69, 0.15);
  position: absolute;
  top: 10px;
  left: 24px;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-inner .stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
}

.testimonial-inner p {
  font-size: 1.05rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-inner .author {
  font-weight: 600;
  color: var(--black);
}

.testimonial-inner .role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

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

.testimonial-dots button.active {
  background: var(--gold);
  width: 28px;
  border-radius: 5px;
}

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  padding: 70px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-section .phone-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  display: block;
}

.cta-section .phone-number a {
  color: var(--white);
}

.cta-section .phone-number a:hover {
  opacity: 0.85;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- Contact Form ---- */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-label {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--black);
  margin-bottom: 6px;
}

.form-control, .form-select {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.92rem;
  transition: var(--transition);
  font-family: var(--font);
}

.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 160, 69, 0.15);
}

.form-control.is-invalid {
  border-color: #dc3545;
}

.invalid-feedback {
  font-size: 0.8rem;
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 350px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
}

/* ---- Footer ---- */
.site-footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 70px;
}

.footer-brand img {
  width: 60px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-title {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-contact i {
  color: var(--gold);
  margin-top: 4px;
  flex-shrink: 0;
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
  margin-top: 50px;
  text-align: center;
  font-size: 0.85rem;
}

/* ---- Floating Elements ---- */
.floating-whatsapp {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  z-index: 9998;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-wa 2s infinite;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: var(--white);
  background: #1ebe57;
}

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--gold);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 9997;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
}

/* ---- About Page ---- */
.about-intro-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  height: 100%;
}

.about-intro-card .icon {
  width: 56px;
  height: 56px;
  background: rgba(200, 160, 69, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.about-intro-card .icon i {
  font-size: 1.5rem;
  color: var(--gold);
}

.about-intro-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.process-step {
  text-align: center;
  padding: 24px;
  position: relative;
}

.process-step .step-num {
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 16px;
  font-size: 1.1rem;
}

.process-step h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.value-card {
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateX(6px);
}

.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
}

.timeline-item {
  position: relative;
  padding-bottom: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}

.timeline-item .date {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}

.timeline-item h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 4px 0;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ---- Services Page ---- */
.service-detail {
  padding: 60px 0;
}

.service-detail:nth-child(even) {
  background: var(--bg);
}

.service-detail-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-detail-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-detail-img:hover img {
  transform: scale(1.05);
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
}

.benefit-list i {
  color: var(--gold);
  margin-top: 3px;
}

/* ---- Contact Page ---- */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-item .icon-wrap {
  width: 50px;
  height: 50px;
  background: rgba(200, 160, 69, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-item .icon-wrap i {
  color: var(--gold);
  font-size: 1.2rem;
}

.contact-info-item h5 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

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

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

/* ---- Policy Pages ---- */
.policy-content {
  padding: 60px 0 80px;
}

.policy-content .policy-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}

.policy-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin: 32px 0 16px;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin: 24px 0 12px;
  color: var(--black);
}

.policy-content p, .policy-content li {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.policy-content ul li {
  margin-bottom: 8px;
}

.policy-updated {
  background: rgba(200, 160, 69, 0.08);
  border-left: 4px solid var(--gold);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 32px;
  font-size: 0.9rem;
}

/* ---- Navbar offset for sticky ---- */
body.has-sticky-nav {
  padding-top: 0;
}

.navbar-spacer {
  height: 0;
  transition: height 0.3s ease;
}

.navbar-spacer.active {
  height: 76px;
}
