/* ============================================================
   JEWEL CASTLE — style.css
   Brand: Red #D1050C | Gold #F0BE22 | White #FFFFFF
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --primary:        #D1050C;
  --primary-dark:   #A90409;
  --primary-light:  #f8d7d8;
  --gold:           #F0BE22;
  --gold-dark:      #c9970a;
  --gold-light:     #FFF5CC;
  --white:          #FFFFFF;
  --text-dark:      #1A1A1A;
  --text-body:      #333333;
  --text-muted:     #666666;
  --light-bg:       #FFF9F5;
  --light-bg2:      #F8F8F8;
  --border-light:   #EEEEEE;
  --border-gold:    #F0BE2240;
  --shadow-sm:      0 2px 12px rgba(0,0,0,.07);
  --shadow-md:      0 6px 28px rgba(0,0,0,.11);
  --shadow-lg:      0 16px 48px rgba(0,0,0,.14);
  --radius:         12px;
  --radius-lg:      20px;
  --transition:     all .3s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }

/* ── Typography ── */
.font-playfair { font-family: 'Playfair Display', serif; }
h1,h2,h3 { font-family: 'Playfair Display', serif; line-height: 1.25; color: var(--text-dark); }
h4,h5,h6 { font-family: 'Poppins', sans-serif; line-height: 1.35; color: var(--text-dark); }

/* ── Utility ── */
.text-primary   { color: var(--primary) !important; }
.text-gold      { color: var(--gold) !important; }
.text-white     { color: var(--white) !important; }
.bg-primary     { background: var(--primary) !important; }
.bg-gold        { background: var(--gold) !important; }
.bg-light-warm  { background: var(--light-bg) !important; }
.btn-primary-jc {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
  padding: .7rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .4px;
  transition: var(--transition);
  display: inline-block;
  cursor: pointer;
}
.btn-primary-jc:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(209,5,12,.3);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: .7rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .4px;
  transition: var(--transition);
  display: inline-block;
  cursor: pointer;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(240,190,34,.35);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
  padding: .7rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .4px;
  transition: var(--transition);
  display: inline-block;
  cursor: pointer;
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}
.section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.section-subheading {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 620px;
}
.gold-bar {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--primary));
  border-radius: 2px;
  margin: .6rem 0 1.2rem;
}
.section-py { padding: 80px 0; }
.section-py-sm { padding: 50px 0; }

/* ── Navbar ── */
#mainNav {
  background: var(--white);
  padding: 0;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
  z-index: 1040;
}
#mainNav.scrolled {
  box-shadow: var(--shadow-sm);
}
#mainNav .navbar-brand img {
  height: 56px;
  width: auto;
  object-fit: contain;
}
#mainNav .nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: .88rem;
  color: var(--text-dark) !important;
  letter-spacing: .3px;
  padding: 1.5rem .85rem !important;
  position: relative;
  transition: color .25s ease;
}
#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 12px;
  left: .85rem;
  right: .85rem;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform .25s ease;
  border-radius: 2px;
}
#mainNav .nav-link:hover,
#mainNav .nav-link.active {
  color: var(--primary) !important;
}
#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
  transform: scaleX(1);
}
#mainNav .btn-quote {
  background: var(--primary);
  color: var(--white) !important;
  border-radius: 50px;
  padding: .5rem 1.4rem !important;
  font-weight: 600;
  font-size: .85rem;
  border: 2px solid var(--primary);
  margin-left: .5rem;
  transition: var(--transition);
}
#mainNav .btn-quote:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--text-dark) !important;
  transform: translateY(-1px);
}
#mainNav .btn-quote::after { display: none; }
.navbar-toggler {
  border: none;
  padding: .4rem .6rem;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23D1050C' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Gold Rate Ticker ── */
#goldTicker {
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  border-top: 1px solid var(--border-light);
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  height: 42px;
  display: flex;
  align-items: center;
}
#goldTicker .ticker-label {
  background: var(--primary);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .8px;
  padding: .3rem .8rem;
  text-transform: uppercase;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: .35rem;
  z-index: 2;
  height: 100%;
}
#goldTicker .ticker-label .dot {
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
#goldTicker .ticker-track {
  display: flex;
  animation: tickerScroll 40s linear infinite;
  gap: 0;
}
#goldTicker .ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 0 2.5rem;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-body);
  white-space: nowrap;
}
.ticker-item i { color: var(--gold); font-size: .75rem; }
.ticker-item .rate { color: var(--primary); font-weight: 700; }
.ticker-sep {
  color: var(--border-light);
  font-size: 1rem;
  line-height: 1;
  margin: 0 .5rem;
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Page Banner ── */
.page-banner {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,10,10,.72) 0%, rgba(209,5,12,.35) 100%);
}
.page-banner .banner-content {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}
.page-banner h1 {
  color: var(--white);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.page-banner .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}
.page-banner .breadcrumb-item { font-size: .85rem; }
.page-banner .breadcrumb-item,
.page-banner .breadcrumb-item a { color: rgba(255,255,255,.7); }
.page-banner .breadcrumb-item.active,
.page-banner .breadcrumb-item a:hover { color: var(--gold); }
.page-banner .breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.5); }

/* ── HERO SECTION ── */
#hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    background-image: var(--desktop-bg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}
    #hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(20,8,8,.82) 0%, rgba(120,10,10,.65) 50%, rgba(20,5,5,.55) 100% );
    }

    #hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient( 90deg, var(--primary), var(--gold), var(--primary) );
    }
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 0 80px;
}
.hero-eyebrow {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--gold);
}
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  color: var(--white);
}
.hero-title .highlight { color: var(--gold); }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 2rem;
  font-weight: 400;
  max-width: 540px;
}
.hero-sub span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.hero-sub span::after { content: '|'; color: rgba(255,255,255,.35); margin: 0 .4rem; }
.hero-sub span:last-child::after { display: none; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2.5rem;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50px;
  padding: .45rem 1rem;
  font-size: .78rem;
  color: rgba(255,255,255,.85);
  font-weight: 500;
}
.hero-badge i { color: var(--gold); font-size: .8rem; }

/* ── Trust Features ── */
#trustFeatures {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 30px 0;
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
}
.trust-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #fff4f4;
  border: 1.5px solid #ffdde0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  font-size: 1.2rem;
}
.trust-item h6 {
  font-size: .88rem;
  font-weight: 600;
  margin-bottom: .15rem;
  color: var(--text-dark);
}
.trust-item p { font-size: .78rem; color: var(--text-muted); margin: 0; }
.trust-sep {
  border-left: 1px solid var(--border-light);
}
@media (max-width: 767px) { .trust-sep { border-left: none; border-top: 1px solid var(--border-light); } }

/* ── Statistics ── */
#statistics {
  background: linear-gradient(135deg, #1a0202 0%, #3a0b0b 50%, #1a0202 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
#statistics::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='%23F0BE22' fill-opacity='0.04'%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");
}
.stat-item {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 1rem;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-number sup { font-size: 1.4rem; vertical-align: super; }
.stat-label {
  font-size: .8rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}
.stat-divider {
  border-right: 1px solid rgba(255,255,255,.12);
}
@media (max-width:767px) { .stat-divider { border-right: none; } }

/* ── Why Choose Us ── */
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
  padding: 2rem 1.5rem;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  transform: scaleX(0);
  transition: transform .35s ease;
  transform-origin: left;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: #fff4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1.2rem;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--primary); color: var(--white); }
.why-card h5 { font-size: 1rem; font-weight: 600; margin-bottom: .6rem; color: var(--text-dark); }
.why-card p { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* ── Services ── */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card .card-img-wrap {
  overflow: hidden;
  height: 220px;
  background: linear-gradient(135deg, #f5e6e6 0%, #fdf3e3 100%);
}
.service-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .card-img-wrap img { transform: scale(1.05); }
.service-card .card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-card .svc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.service-card h5 { font-size: 1rem; font-weight: 600; color: var(--text-dark); margin-bottom: .6rem; }
.service-card p { font-size: .83rem; color: var(--text-muted); flex: 1; }
.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--primary);
  font-size: .82rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: var(--transition);
}
.service-card .learn-more:hover { gap: .7rem; }

/* ── Process ── */
#process { background: var(--light-bg); }
.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}
.process-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 6px 18px rgba(209,5,12,.3);
  position: relative;
  z-index: 1;
}
.process-connector {
  position: absolute;
  top: 49px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 40%, transparent 100%);
  z-index: 0;
}
.process-img-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid var(--gold);
  background: linear-gradient(135deg, #f5e6e6 0%, #fdf3e3 100%);
}
.process-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.process-step h5 { font-size: .92rem; font-weight: 600; color: var(--text-dark); margin-bottom: .4rem; }
.process-step p { font-size: .8rem; color: var(--text-muted); }

/* ── Testimonials ── */
#testimonials { background: var(--light-bg); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--primary);
  opacity: .12;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}
.testimonial-stars { color: var(--gold); font-size: .85rem; margin-bottom: .8rem; }
.testimonial-text { font-size: .88rem; color: var(--text-body); font-style: italic; margin-bottom: 1.2rem; }
.testimonial-author { display: flex; align-items: center; gap: .8rem; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.testimonial-name { font-size: .88rem; font-weight: 600; color: var(--text-dark); margin: 0; }
.testimonial-loc { font-size: .76rem; color: var(--text-muted); margin: 0; }
.swiper-pagination-bullet { background: var(--border-light); opacity: 1; }
.swiper-pagination-bullet-active { background: var(--primary); }
.swiper-button-next,
.swiper-button-prev {
  color: var(--primary);
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.swiper-button-next::after,
.swiper-button-prev::after { font-size: .85rem; font-weight: 700; }
.swiper-button-next:hover,
.swiper-button-prev:hover { background: var(--primary); color: var(--white); }

/* ── FAQ ── */
.faq-accordion .accordion-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius) !important;
  margin-bottom: .8rem;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  font-family: 'Poppins', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--white);
  padding: 1.1rem 1.3rem;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: #fff4f4;
}
.faq-accordion .accordion-button:focus { box-shadow: 0 0 0 3px rgba(209,5,12,.15); }
.faq-accordion .accordion-button::after {
  filter: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23D1050C' d='M8 1a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 1z'/%3E%3C/svg%3E");
  transition: transform .3s ease;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(45deg);
}
.faq-accordion .accordion-body { font-size: .87rem; color: var(--text-muted); padding: 1rem 1.3rem 1.3rem; }
.faq-gold-accent {
  width: 40px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: .5rem;
}

/* ── CTA Banner ── */
#ctaBanner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #6b0204 100%);
  position: relative;
  overflow: hidden;
}
#ctaBanner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(240,190,34,.08);
}
#ctaBanner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
#ctaBanner .cta-content { position: relative; z-index: 1; }

/* ── Map Section ── */
#mapSection { background: var(--light-bg); }
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  height: auto;
}
.contact-info-card h4 { font-size: 1.3rem; font-weight: 600; color: var(--text-dark); margin-bottom: 1.2rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--border-light);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail i {
  color: var(--primary);
  font-size: 1rem;
  width: 18px;
  flex-shrink: 0;
  margin-top: .15rem;
}
.contact-detail span { font-size: .87rem; color: var(--text-body); }
.contact-detail a { color: var(--text-body); }
.contact-detail a:hover { color: var(--primary); }

/* ── Contact Form ── */
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 2.5rem; box-shadow: var(--shadow-md); }
.form-label { font-size: .84rem; font-weight: 600; color: var(--text-dark); margin-bottom: .35rem; }
.form-control {
  border: 1.5px solid var(--border-light);
  border-radius: 8px;
  padding: .65rem 1rem;
  font-size: .87rem;
  color: var(--text-dark);
  transition: var(--transition);
  background: var(--white);
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(209,5,12,.12);
  outline: none;
}
.form-control.is-invalid { border-color: var(--primary); }
.invalid-feedback { font-size: .78rem; color: var(--primary); }

/* ── Products ── */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-card .card-img-wrap {
  overflow: hidden;
  height: 240px;
  background: linear-gradient(135deg, #f5e6e6 0%, #fdf3e3 100%);
}
.product-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .card-img-wrap img { transform: scale(1.04); }
.product-card .card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.product-category {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 50px;
  margin-bottom: .8rem;
}
.product-card h5 { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: .6rem; }
.product-card p { font-size: .83rem; color: var(--text-muted); flex: 1; }
.product-cta-row { display: flex; gap: .6rem; margin-top: 1.2rem; flex-wrap: wrap; }

/* ── About Sections ── */
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.about-img-wrap img { width: 100%; height: 400px; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.3rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-img-badge strong { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 800; color: var(--gold); line-height: 1; }
.about-img-badge span { font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; opacity: .85; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: .55rem 0;
  font-size: .88rem;
  color: var(--text-body);
  border-bottom: 1px solid var(--border-light);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li i { color: var(--primary); font-size: .75rem; margin-top: .35rem; flex-shrink: 0; }

/* ── Warning Box ── */
.warning-box {
  background: #fff8f8;
  border: 1.5px solid #f5c6c8;
  border-left: 5px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.5rem 1.8rem;
}
.warning-box i { color: var(--primary); font-size: 1.4rem; }
.warning-box h5 { font-size: .95rem; font-weight: 700; color: var(--text-dark); margin: .5rem 0 .4rem; }
.warning-box p { font-size: .85rem; color: var(--text-muted); margin: 0; }

/* ── Footer ── */
#footer {
  background: var(--white);
  border-top: 3px solid var(--gold);
}
.footer-main { padding: 60px 0 40px; }
.footer-col-title {
  font-size: .82rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.footer-title-bar {
  width: 36px;
  height: 2.5px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 1.2rem;
}
.footer-brand img {
  height: 52px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: .83rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 300px;
}
/* ── Footer social buttons ── */
.footer-social { display: flex; gap: 10px; margin-top: 1.2rem; flex-wrap: wrap; align-items: center; }
.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  padding: 0;
  background: #FFF1F1;
  color: #D1050C;
  border: 1px solid rgba(209,5,12,.15);
  transition: all 0.25s ease;
  box-shadow: none;
  filter: none;
  flex-shrink: 0;
}
.social-btn i {
  font-size: 18px;
  color: #D1050C;
  opacity: 1;
  line-height: 1;
  /* Reset any inherited FA or .fab styles */
  width: auto !important;
  height: auto !important;
  background: none !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  display: inline !important;
}
.social-btn:hover {
  background: #D1050C;
  color: #FFFFFF;
  border-color: #D1050C;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(209,5,12,.22);
}
.social-btn:hover i { color: #FFFFFF; }
.footer-links li {
  padding: .3rem 0;
}
.footer-links li a {
  font-size: .84rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: var(--transition);
}
.footer-links li a i { color: var(--gold); font-size: .7rem; }
.footer-links li a:hover { color: var(--primary); padding-left: 4px; }
/* ── Footer contact column ── */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .8rem;
  padding: .4rem 0;
}
/* Reset ALL icons inside contact items — prevents .fab FA class collision */
.footer-contact-item > i {
  color: var(--primary) !important;
  font-size: 17px !important;
  width: 18px !important;
  min-width: 18px !important;
  height: auto !important;
  flex-shrink: 0;
  margin-top: .15rem;
  background: none !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  filter: none !important;
  display: inline-block !important;
  line-height: 1.2 !important;
  text-align: center;
  opacity: 1 !important;
}
.footer-contact-item span,
.footer-contact-item a {
  font-size: .82rem;
  color: var(--text-muted);
}
.footer-contact-item a:hover { color: var(--primary); }
#footerBottom {
  background: var(--primary);
  padding: .9rem 0;
}
#footerBottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.85);
  margin: 0;
  text-align: center;
}
#footerBottom span { color: var(--gold); font-weight: 600; }

/* ── Floating Action Buttons ── */
.floating-buttons {
  position: fixed;
  right: 24px;
  bottom: 35px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 18px rgba(0,0,0,.22);
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  color: #FFFFFF;
  position: relative;
  text-decoration: none;
  flex-shrink: 0;
}
.float-btn:hover {
  transform: scale(1.08);
  color: #FFFFFF;
  text-decoration: none;
}
.float-btn-call { background: #D1050C; }
.float-btn-call:hover { box-shadow: 0 6px 20px rgba(209,5,12,.4); }
.float-btn-whatsapp { background: #25D366; }
.float-btn-whatsapp:hover { box-shadow: 0 6px 20px rgba(37,211,102,.4); }
.float-btn i {
  /* Ensure the icon inside is NOT affected by any other CSS rule */
  width: auto !important;
  height: auto !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  filter: none !important;
  color: #FFFFFF !important;
  font-size: 1.5rem !important;
  line-height: 1 !important;
  display: inline-block !important;
  opacity: 1 !important;
}
.float-btn-tooltip {
  position: absolute;
  right: 68px;
  background: rgba(30,30,30,.82);
  color: #FFFFFF;
  font-size: .72rem;
  font-weight: 500;
  padding: .3rem .7rem;
  border-radius: 5px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
}
.float-btn:hover .float-btn-tooltip { opacity: 1; }

/* ── Scroll To Top ── */
#scrollTop {
  position: fixed;
  bottom: 30px;
  left: 24px;
  z-index: 1050;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(209,5,12,.3);
  opacity: 0;
  transform: translateY(12px);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
#scrollTop.visible { opacity: 1; transform: translateY(0); }
#scrollTop:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ── Animations ── */
[data-aos] { transition-property: transform, opacity !important; }

/* ── Responsive ── */
@media (max-width: 991px) {
  #mainNav .nav-link { padding: .75rem 1rem !important; }
  #mainNav .nav-link::after { display: none; }
  #mainNav .navbar-collapse { border-top: 1px solid var(--border-light); padding-top: .5rem; margin-top: .3rem; }
  .section-heading { font-size: 1.8rem; }
  .hero-title { font-size: 2.4rem; }
}
@media (max-width: 767px) {
  .section-py { padding: 55px 0; }
  .page-banner h1 { font-size: 2rem; }
  .hero-title { font-size: 2rem; }
  #statistics .stat-divider { border: none; }
  .floating-buttons {
    right: 16px;
    bottom: calc(20px + env(safe-area-inset-bottom));
    gap: 10px;
  }
  .float-btn {
    width: 52px;
    height: 52px;
    font-size: 1.3rem;
  }
  .float-btn i { font-size: 1.3rem !important; }
  #scrollTop { bottom: calc(20px + env(safe-area-inset-bottom)); left: 16px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.7rem; }
  .hero-cta .btn-primary-jc,
  .hero-cta .btn-outline-white { width: 100%; text-align: center; }
}

/* ── Business Hours Badge ── */
.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold-light);
  border: 1px solid #f0be2260;
  border-radius: 50px;
  padding: .3rem 1rem;
  font-size: .78rem;
  color: var(--gold-dark);
  font-weight: 600;
}
.hours-badge i { color: var(--gold); }

/* ── Image fallback for missing product images ── */
.img-fallback-gold {
  background: linear-gradient(135deg, #f9e8c4 0%, #f5d48a 40%, #e8b84b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a07810;
  font-size: 2.5rem;
}
.img-fallback-silver {
  background: linear-gradient(135deg, #e8e8e8 0%, #c8c8c8 50%, #a8a8a8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 2.5rem;
}

/* ── Section divider accent ── */
.gold-line-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1px 0;
}

/* ── Info ribbon ── */
.info-ribbon {
  background: #fff4f4;
  border-bottom: 2px solid var(--primary-light);
  padding: .45rem 0;
  font-size: .78rem;
  color: var(--text-muted);
}
.info-ribbon i { color: var(--primary); }
.info-ribbon a { color: var(--primary); font-weight: 500; }
