/* ============================================================
   Hari Om Enterprises — Custom Stylesheet
   Colors: #51535F (Primary) | #C9A84C (Gold Accent)
   ============================================================ */

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --primary:        #51535F;
  --primary-dark:   #3a3c46;
  --primary-light:  #6c6e7a;
  --gold:           #C9A84C;
  --gold-dark:      #a8882f;
  --gold-light:     #e0c06a;
  --bg-light:       #F8F7F4;
  --bg-dark:        #2a2b32;
  --text-dark:      #2C2C2C;
  --text-muted:     #6c757d;
  --white:          #ffffff;
  --border:         #e5e2da;
  --shadow-sm:      0 2px 12px rgba(81,83,95,0.10);
  --shadow-md:      0 6px 30px rgba(81,83,95,0.15);
  --shadow-lg:      0 12px 48px rgba(81,83,95,0.20);
  --radius:         10px;
  --radius-lg:      18px;
  --transition:     0.3s ease;
}

/* ── Base ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  font-size: 15px;
  line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  font-weight: 700;
  line-height: 1.3;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }

img { max-width: 100%; height: auto; }

/* ── Utility ─────────────────────────────────────────────── */
.text-gold          { color: var(--gold) !important; }
.text-primary-c     { color: var(--primary) !important; }
.bg-primary-c       { background-color: var(--primary) !important; }
.bg-gold            { background-color: var(--gold) !important; }
.bg-light-c         { background-color: var(--bg-light) !important; }
.bg-dark-c          { background-color: var(--bg-dark) !important; }

.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

.section-py { padding-top: 90px; padding-bottom: 90px; }
.section-py-sm { padding-top: 60px; padding-bottom: 60px; }

/* Section Heading */
.section-heading {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 0.5rem;
  position: relative;
}
.section-subheading {
  color: var(--text-muted);
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 2.5rem;
}
.section-title-wrap {
  margin-bottom: 3rem;
}
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px;
  margin: 0.75rem auto 1rem;
  display: block;
}
.gold-divider.left {
  margin-left: 0;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.65rem 1.9rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.4px;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(201,168,76,0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.45);
}
.btn-primary-c {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  border-radius: 50px;
  padding: 0.65rem 1.9rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.btn-primary-c:hover {
  background: transparent;
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50px;
  padding: 0.65rem 1.9rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50px;
  padding: 0.65rem 1.9rem;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ── Navbar ──────────────────────────────────────────────── */
#mainNavbar {
  background: rgba(81, 83, 95, 0.97);
  backdrop-filter: blur(10px);
  padding: 18px 0;
  transition: padding var(--transition), box-shadow var(--transition),
              background var(--transition);
  box-shadow: none;
  z-index: 1050;
}
#mainNavbar.scrolled {
  padding: 10px 0;
  background: rgba(58, 60, 70, 0.99);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand .brand-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(201,168,76,0.4);
}
.navbar-brand .brand-text .brand-name {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: 0.3px;
}
.navbar-brand .brand-text .brand-tagline {
  display: block;
  font-size: 0.65rem;
  color: var(--gold-light);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 400;
}
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 0.88rem;
  padding: 0.4rem 1rem !important;
  letter-spacing: 0.3px;
  position: relative;
  transition: color var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold-light) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}
.navbar-toggler {
  border: none;
  color: var(--white);
  font-size: 1.3rem;
  padding: 4px 8px;
}
.navbar-toggler:focus { box-shadow: none; }

/* ── Page Hero / Breadcrumb ──────────────────────────────── */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #3d3f4d 100%);
  padding: 110px 0 60px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero .page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}
.breadcrumb { background: none; padding: 0; margin: 0; }
.breadcrumb-item a { color: var(--gold-light); }
.breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }
.page-hero-img {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  object-fit: cover;
  opacity: 0.15;
}

/* ── Hero Section ────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--primary-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1504328345606-18bbc8c9d7d1?w=1600&q=80');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(42,43,50,0.92) 0%,
    rgba(81,83,95,0.80) 55%,
    rgba(42,43,50,0.60) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 5;
  padding: 120px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light);
  border-radius: 50px;
  padding: 5px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.hero-title .highlight {
  color: var(--gold);
  position: relative;
}
.hero-subtitle {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  max-width: 540px;
  margin-bottom: 2.2rem;
  line-height: 1.8;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-stat {
  text-align: left;
}
.hero-stat .stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
}
.hero-image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
.hero-image-card .card-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(201,168,76,0.92);
  backdrop-filter: blur(8px);
  color: var(--white);
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
}
.hero-image-card .card-badge i { margin-right: 6px; }

/* ── Marquee Ticker ──────────────────────────────────────── */
.marquee-section {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marqueeScroll 22s linear infinite;
  white-space: nowrap;
  will-change: transform;
}
.marquee-track span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.marquee-track span i { opacity: 0.7; font-size: 0.75rem; }
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Features Strip ──────────────────────────────────────── */
.features-section {
  background: var(--white);
  padding: 70px 0;
}
.feature-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  border: 1px solid transparent;
  height: 100%;
}
.feature-card:hover {
  background: var(--bg-light);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
  transform: translateY(-6px);
}
.feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.22));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.65rem;
  color: var(--gold);
  transition: all var(--transition);
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  transform: rotate(10deg) scale(1.1);
}
.feature-card h5 {
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--primary);
}
.feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── About Teaser / About Page ───────────────────────────── */
.about-section { background: var(--bg-light); }
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-image-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  transition: transform 0.5s ease;
}
.about-image-wrap:hover img { transform: scale(1.04); }
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge .badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.about-badge .badge-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  opacity: 0.9;
}
.about-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.about-list li {
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.about-list li i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}
.vision-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform var(--transition), box-shadow var(--transition);
}
.vision-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.vision-card .vc-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: var(--white);
}
.vision-card h5 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Why Choose Us */
.why-card {
  text-align: center;
  padding: 1.75rem 1rem;
}
.why-card .why-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: var(--primary);
  transition: all var(--transition);
}
.why-card:hover .why-icon-wrap {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: scale(1.12);
}
.why-card h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
}

/* ── Products ─────────────────────────────────────────────── */
.products-section { background: var(--white); }
.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-light);
}
.product-card .card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.product-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .card-img-wrap img {
  transform: scale(1.08);
}
.product-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42,43,50,0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .card-overlay { opacity: 1; }
.product-card .card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--white);
  border-radius: 6px;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.product-card .card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card .card-body h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.product-card .card-body p {
  font-size: 0.83rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 1rem;
}
.product-card .btn-enquire {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 0.5rem 1.3rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  align-self: flex-start;
}
.product-card .btn-enquire:hover {
  transform: translateX(3px);
  box-shadow: 0 4px 14px rgba(201,168,76,0.4);
}
/* Filter Tabs */
.filter-tabs .nav-link {
  color: var(--primary);
  border: 1px solid var(--border);
  border-radius: 50px !important;
  padding: 0.45rem 1.2rem;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 3px;
  transition: all var(--transition);
  background: var(--white);
}
.filter-tabs .nav-link:hover,
.filter-tabs .nav-link.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ── Stats Counter ───────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23C9A84C' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
}
.stat-item { text-align: center; padding: 2rem 1rem; position: relative; }
.stat-item::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  height: 60px;
  width: 1px;
  background: rgba(255,255,255,0.15);
  transform: translateY(-50%);
}
.stat-item:last-child::after { display: none; }
.stat-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
}
.stat-suffix {
  color: var(--gold);
  font-size: 1.8rem;
}
.stat-label {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
  display: block;
}

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-section { background: var(--bg-light); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 7rem;
  font-family: Georgia, serif;
  color: var(--gold);
  opacity: 0.12;
  line-height: 1;
}
.testimonial-stars { color: var(--gold); margin-bottom: 1rem; font-size: 0.9rem; }
.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author .avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--white);
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author .author-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary);
}
.testimonial-author .author-loc {
  font-size: 0.78rem;
  color: var(--text-muted);
}
/* Carousel dots */
.testimonial-controls .carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  opacity: 1 !important;
  transition: background var(--transition);
}
.testimonial-controls .carousel-indicators .active { background: var(--gold); }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(201,168,76,0.05);
  pointer-events: none;
}
.cta-section h2 { color: var(--white); }
.cta-section p { color: rgba(255,255,255,0.7); }

/* ── Blog ────────────────────────────────────────────────── */
.blog-section { background: var(--bg-light); }
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.blog-card .blog-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.blog-card .blog-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img-wrap img { transform: scale(1.06); }
.blog-card .blog-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
}
.blog-card .blog-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card .blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.6rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.blog-card .blog-meta i { color: var(--gold); margin-right: 4px; }
.blog-card h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
  flex: 1;
}
.blog-card .blog-excerpt {
  font-size: 0.83rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}
.blog-card .read-more {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition);
}
.blog-card .read-more:hover { gap: 9px; color: var(--gold-dark); }
/* Sidebar */
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.sidebar-widget h6 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.sidebar-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-dark);
  transition: color var(--transition);
  text-decoration: none;
}
.sidebar-category:hover { color: var(--gold); }
.sidebar-category span {
  background: var(--bg-light);
  border-radius: 50px;
  padding: 1px 8px;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.recent-post {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}
.recent-post:last-child { border-bottom: none; }
.recent-post img {
  width: 60px;
  height: 52px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.recent-post .rp-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
  transition: color var(--transition);
}
.recent-post:hover .rp-title { color: var(--gold); }
.recent-post .rp-date { font-size: 0.75rem; color: var(--text-muted); }

/* ── Contact ─────────────────────────────────────────────── */
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  height: 100%;
  transition: all var(--transition);
}
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-light);
}
.contact-card .cc-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 5px 18px rgba(201,168,76,0.35);
}
.contact-card h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.contact-card p, .contact-card a {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}
.contact-card a:hover { color: var(--gold); }
/* Form */
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.form-label { font-size: 0.88rem; font-weight: 600; color: var(--primary); margin-bottom: 0.35rem; }
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  background: var(--white);
  outline: none;
}
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.map-embed iframe { display: block; width: 100%; border: none; }

/* ── Footer ──────────────────────────────────────────────── */
#footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.75);
  padding-top: 70px;
}
.footer-brand-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 700;
}
.footer-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-top: 0.75rem;
  color: rgba(255,255,255,0.55);
}
.footer h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.6rem;
}
.footer h6::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition), gap var(--transition);
}
.footer-links a i { font-size: 0.7rem; color: var(--gold); }
.footer-links a:hover { color: var(--gold-light); gap: 9px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 0.9rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  align-items: flex-start;
}
.footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.9rem;
}
.footer-contact-item a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 10px; margin-top: 1rem; }
.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}
.footer-bottom {
  margin-top: 50px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: var(--gold-light); }

/* ── Floating Buttons ────────────────────────────────────── */
.floating-buttons {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 9999;
}
.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--white);
  text-decoration: none;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.float-btn:hover { transform: scale(1.12); color: var(--white); }
.float-btn.whatsapp-btn {
  background: #25D366;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
}
.float-btn.call-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 4px 18px rgba(201,168,76,0.45);
}
.float-btn.scroll-top-btn {
  background: var(--primary);
  box-shadow: 0 4px 18px rgba(81,83,95,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.float-btn.scroll-top-btn.visible {
  opacity: 1;
  pointer-events: auto;
}
/* Pulse ring */
.float-btn.whatsapp-btn::before,
.float-btn.call-btn::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid currentColor;
  opacity: 0;
  animation: pulsering 2.2s ease-out infinite;
}
.float-btn.whatsapp-btn::before { border-color: #25D366; }
.float-btn.call-btn::before     { border-color: var(--gold); }
@keyframes pulsering {
  0%   { transform: scale(1);   opacity: 0.6; }
  80%  { transform: scale(1.5); opacity: 0;   }
  100% { transform: scale(1.5); opacity: 0;   }
}
/* Tooltip labels on float btns */
.float-btn-label {
  position: absolute;
  right: 62px;
  background: var(--primary-dark);
  color: var(--white);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition);
}
.float-btn:hover .float-btn-label {
  opacity: 1;
  transform: translateX(0);
}

/* ── Scroll-to-Top ───────────────────────────────────────── */
/* (handled in .float-btn.scroll-top-btn above) */

/* ── Preloader ───────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-logo {
  font-family: 'Playfair Display', serif;
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 700;
}
.preloader-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(201,168,76,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── General Card hover & active ────────────────────────── */
.highlight-link { color: var(--gold); font-weight: 600; }
.highlight-link:hover { color: var(--gold-dark); }
hr.gold-hr { border-color: var(--gold); opacity: 0.3; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 991.98px) {
  .section-py { padding-top: 64px; padding-bottom: 64px; }
  .hero-content { padding: 130px 0 60px; }
  .hero-image-card { display: none; }
  .stat-item::after { display: none; }
  .about-badge { bottom: 10px; right: 10px; }
}

@media (max-width: 767.98px) {
  .section-py { padding-top: 48px; padding-bottom: 48px; }
  .hero-stats { gap: 1.2rem; }
  .hero-stat .stat-num { font-size: 1.6rem; }
  .about-image-wrap img { height: 300px; }
  .floating-buttons { bottom: 18px; right: 14px; }
  .float-btn { width: 46px; height: 46px; font-size: 1.1rem; }
  .contact-form-box { padding: 1.5rem; }
}

@media (max-width: 575.98px) {
  .hero-title { font-size: 1.9rem; }
  .navbar-brand .brand-text .brand-tagline { display: none; }
}

/* ── AOS overrides ───────────────────────────────────────── */
[data-aos] { transition-duration: 0.7s !important; }
