/* ============================================================
   RAJ DIGITAL TILES & BORDERS — Premium Frontend Stylesheet
   Design System: Luxury Tile Showroom
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  --gold:          #F4A825;
  --gold-dark:     #D48B0A;
  --gold-light:    #F7C55A;
  --gold-pale:     #FEF4D9;
  --navy:          #0B1C3D;
  --navy-2:        #0D2247;
  --navy-3:        #102D5F;
  --cream:         #F8F9FB;
  --cream-2:       #F1F3F5;
  --white:         #FFFFFF;
  --text:          #1E2D3D;
  --text-muted:    #6B7A8D;
  --text-light:    #A0ADB8;
  --border:        rgba(244,168,37,0.2);
  --border-hard:   rgba(244,168,37,0.45);
  --shadow-sm:     0 2px 12px rgba(11,28,61,0.06);
  --shadow-md:     0 6px 24px rgba(11,28,61,0.10);
  --shadow-lg:     0 16px 50px rgba(11,28,61,0.14);
  --shadow-gold:   0 8px 32px rgba(244,168,37,0.22);
  --radius:        10px;
  --radius-lg:     16px;
  --transition:    all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-accent:   'Poppins', sans-serif;
  --font-body:     'Poppins', sans-serif;
  --section-gap:   48px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 12.8px;
  overflow-x: hidden; /* Prevents iOS Safari horizontal scroll (body alone is not enough) */
}

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

::selection { background: var(--gold); color: var(--white); }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--navy);
  font-weight: 700;
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
  font-style: italic;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  position: relative;
}

.section-title .highlight {
  color: var(--gold);
  position: relative;
}

.section-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
}

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

.divider-gold.center { margin-left: auto; margin-right: auto; }

/* ── Preloader ── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulseLogo 1.5s ease-in-out infinite;
  background: rgba(244,168,37,0.1);
}

.preloader-logo span {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: fillBar 2s ease forwards;
}

.preloader-text {
  font-family: var(--font-accent);
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 4px;
  text-transform: uppercase;
}

@keyframes pulseLogo {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(244,168,37,0.4); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(244,168,37,0); }
}

@keyframes fillBar {
  0% { width: 0; }
  100% { width: 100%; }
}

/* ── Navigation ── */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

#mainNav.scrolled {
  background: rgba(11,28,61,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

#mainNav.scrolled::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-brand-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.nav-logo-img {
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1.5px solid rgba(244,168,37,0.4);
}

img[loading="lazy"] {
  transition: opacity 0.35s ease;
}

.img-placeholder {
  background: linear-gradient(135deg, var(--cream-2), var(--cream));
  animation: shimmer 1.5s ease-in-out infinite alternate;
}

@keyframes shimmer {
  from { background-position: -200% 0; }
  to   { background-position: 200% 0; }
}

.nav-brand-text .brand-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  display: block;
}

.nav-brand-text .brand-tagline {
  font-size: 0.65rem;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
}

.navbar-nav .nav-link {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85) !important;
  letter-spacing: 0.5px;
  padding: 8px 16px !important;
  transition: var(--transition);
  position: relative;
}

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

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

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

.btn-nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  border: none;
  transition: var(--transition) !important;
  box-shadow: 0 4px 15px rgba(244,168,37,0.35);
}

.btn-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244,168,37,0.5) !important;
  color: var(--white) !important;
}

.btn-nav-cta::after { display: none !important; }

.navbar-toggler {
  border: 1.5px solid rgba(244,168,37,0.5) !important;
  padding: 6px 10px !important;
  border-radius: 8px !important;
}

.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='rgba(244,168,37,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* ── Buttons ── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(244,168,37,0.35);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(244,168,37,0.5);
  color: var(--white);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.btn-gold:active::before {
  width: 300px;
  height: 300px;
}

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

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244,168,37,0.35);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
  color: var(--navy);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37,211,102,0.5);
  color: var(--white);
}

/* ── Floating WhatsApp Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 25px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: var(--transition);
  animation: floatPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15) translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.6);
}

.whatsapp-float i {
  font-size: 1.6rem;
  color: white;
}

.whatsapp-float .wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--navy);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  pointer-events: none;
}

.whatsapp-float .wa-tooltip::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy);
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
  right: 74px;
}

@keyframes floatPulse {
  0%, 100% { box-shadow: 0 6px 25px rgba(37,211,102,0.5), 0 0 0 0 rgba(37,211,102,0.4); }
  50% { box-shadow: 0 6px 25px rgba(37,211,102,0.5), 0 0 0 12px rgba(37,211,102,0); }
}

/* ── Back to Top ── */
#backToTop {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 998;
  width: 46px;
  height: 46px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  text-decoration: none;
  border: 1.5px solid var(--border-hard);
  font-size: 1.1rem;
}

#backToTop.show {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}

/* Prevent any section from causing horizontal scroll */
#main-content { overflow-x: hidden; }

/* ── Section Wrapper ── */
.section-block {
  padding-top: var(--section-gap);
  padding-bottom: var(--section-gap);
}

.section-block.bg-cream { background: var(--cream); }
.section-block.bg-cream-2 { background: var(--cream-2); }
.section-block.bg-navy { background: var(--navy); }
.section-block.bg-navy-2 { background: var(--navy-2); }

/* ── Page Hero ── */
.page-hero {
  min-height: 260px;
  padding-top: 110px;
  padding-bottom: 52px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy-3) 100%);
  position: relative;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244,168,37,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,168,37,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, var(--white), transparent);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 12px;
}

.page-hero-title span { color: var(--gold); }

.page-hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 500px;
}

/* ── Breadcrumb ── */
.breadcrumb-wrap {
  padding: 14px 0;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  margin: 0;
  background: none;
  padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: '›';
  color: var(--gold);
  font-size: 1.1rem;
}

.breadcrumb-item a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
}

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

.breadcrumb-item.active {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
}

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

/* Animated tile grid background */
.hero-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 3px;
  opacity: 0.08;
  z-index: 0;
}

.hero-grid-cell {
  background: var(--gold);
  border-radius: 3px;
  animation: tileFlicker var(--dur, 4s) ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  opacity: var(--opacity, 0.3);
}

@keyframes tileFlicker {
  0%, 100% { opacity: var(--opacity, 0.3); }
  50% { opacity: calc(var(--opacity, 0.3) * 3); }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 70% 50%, rgba(244,168,37,0.12) 0%, transparent 60%),
    linear-gradient(135deg, rgba(11,28,61,0.98) 0%, rgba(11,28,61,0.85) 40%, rgba(15,52,96,0.7) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
  /* do NOT set horizontal padding here — Bootstrap col gutters handle left/right */
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244,168,37,0.12);
  border: 1px solid rgba(244,168,37,0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-accent);
  margin-bottom: 24px;
  font-style: italic;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 800;
}

.hero-title .line-1 { display: block; }
.hero-title .line-2 { display: block; color: var(--gold); }
.hero-title .line-3 { display: block; font-size: 0.6em; font-weight: 400; color: rgba(255,255,255,0.8); font-style: italic; margin-top: 8px; }

.hero-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat { text-align: left; }

.hero-stat .stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.hero-stat .stat-num span { font-size: 1.4rem; }

.hero-stat .stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
}

.hero-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  position: relative;
  z-index: 1;
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.6s ease;
  object-fit: cover;
  height: 500px;
}

.hero-image-wrap:hover .hero-main-img {
  transform: perspective(1000px) rotateY(0) rotateX(0);
}

.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
  animation: floatCard 4s ease-in-out infinite;
}

.hero-float-card.card-1 { bottom: 40px; left: -30px; animation-delay: 0s; }
.hero-float-card.card-2 { top: 30px; right: -20px; animation-delay: 2s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.float-card-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;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.float-card-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.1;
}

.float-card-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounceDown 2s ease-in-out infinite;
}

.scroll-mouse {
  width: 24px;
  height: 36px;
  border: 2px solid rgba(244,168,37,0.5);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-mouse::before {
  content: '';
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollDot 1.5s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0; }
}

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

/* ══════════════════════════════════════
   STATS BAR
═══════════════════════════════════════ */
.stats-bar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
}

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

.stat-item {
  text-align: center;
  padding: 10px 20px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(244,168,37,0.2);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
}

/* ══════════════════════════════════════
   CATEGORIES SECTION
═══════════════════════════════════════ */
.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  display: block;
  text-decoration: none;
  border: 1px solid var(--border);
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}

.category-card-img {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-card-img img {
  transform: scale(1.1);
}

.category-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,28,61,0.7) 0%, transparent 60%);
  transition: var(--transition);
}

.category-card:hover .category-card-img-overlay {
  background: linear-gradient(to top, rgba(11,28,61,0.8) 0%, rgba(244,168,37,0.15) 100%);
}

.category-card-body {
  padding: 14px 16px;
  position: relative;
}

.category-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  transition: var(--transition);
}

.category-card:hover .category-card-title { color: var(--gold); }

.category-card-count {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.category-card-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) translateX(-8px);
  opacity: 0;
  color: var(--gold);
  transition: var(--transition);
  font-size: 1.1rem;
}

.category-card:hover .category-card-arrow {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* ══════════════════════════════════════
   PRODUCT CARDS
═══════════════════════════════════════ */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(244,168,37,0.4);
}

.product-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--cream-2);
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.product-card:hover .product-card-img img {
  transform: scale(1.08);
}

.product-card-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #F5EDD8, #E8D5B0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-placeholder i {
  font-size: 2.5rem;
  color: rgba(244,168,37,0.45);
}

.product-card-badge-dot {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(244,168,37,0.25);
  z-index: 1;
}

.product-card-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(11,28,61,0.88), transparent);
  padding: 24px 12px 12px;
  transform: translateY(101%);
  transition: var(--transition);
  display: flex;
  gap: 8px;
}

.product-card:hover .product-card-actions {
  transform: translateY(0);
}

.product-wa-btn {
  width: 100%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.product-wa-btn:hover {
  background: linear-gradient(135deg, #128C7E, #075E54);
}

.product-card-body {
  padding: 12px 14px 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  padding: 9px 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: 1.5px solid transparent;
}

.product-card-cta-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 4px 14px rgba(244,168,37,0.3);
}

.product-category-tag {
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.product-meta span {
  font-size: 0.7rem;
  color: var(--text-muted);
  background: var(--cream-2);
  padding: 2px 8px;
  border-radius: 20px;
}

.product-stars {
  display: flex;
  gap: 1px;
}

.product-stars i {
  color: var(--gold);
  font-size: 0.72rem;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}

.product-price span {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
}

/* ══════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════ */
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: var(--border-hard);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--gold-pale), var(--cream-2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  color: var(--gold);
  border: 2px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.feature-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed var(--border);
  animation: spinBorder 10s linear infinite;
}

@keyframes spinBorder {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  border-color: var(--gold);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
  margin: 10px;
  transition: var(--transition);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold-pale);
  position: absolute;
  top: -4px;
  left: 18px;
  line-height: 1;
}

.testimonial-text {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

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

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
  overflow: hidden;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-name {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}

.testimonial-city {
  font-size: 0.8rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 4px;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-top: 4px;
}

.testimonial-stars i { color: #FFC107; font-size: 0.8rem; }

/* Swiper custom */
.swiper-pagination-bullet {
  background: var(--gold) !important;
  opacity: 0.4;
  width: 8px;
  height: 8px;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--gold) !important;
  width: 46px !important;
  height: 46px !important;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1rem !important;
  font-weight: 900;
}

/* ══════════════════════════════════════
   BLOG CARDS
═══════════════════════════════════════ */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-hard);
}

.blog-card-img {
  height: 185px;
  overflow: hidden;
  background: var(--cream-2);
}

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

.blog-card:hover .blog-card-img img { transform: scale(1.06); }

.blog-card-body { padding: 16px 18px; flex: 1; display: flex; flex-direction: column; }

.blog-category-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold-dark);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
  text-decoration: none;
  display: block;
  transition: var(--transition);
}

.blog-title:hover { color: var(--gold); }

.blog-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: auto;
}

.blog-meta i { color: var(--gold); font-size: 0.85rem; }

/* ══════════════════════════════════════
   CONTACT FORM
═══════════════════════════════════════ */
.form-gold .form-control,
.form-gold .form-select {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 18px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  box-shadow: none;
}

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

.form-gold label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

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

/* ══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  position: relative;
  overflow: hidden;
}

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

.footer-main { padding: 56px 0 32px; }

.footer-brand { margin-bottom: 24px; }

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-brand-tagline {
  font-size: 0.8rem;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-about-text {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(244,168,37,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.9rem;
  transition: var(--transition);
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

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

.footer-links { list-style: none; padding: 0; margin: 0; }

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

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
  transition: var(--transition);
}

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

.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  background: rgba(244,168,37,0.12);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-label {
  font-size: 0.75rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.footer-contact-value {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  margin-top: 2px;
}

.footer-contact-value a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-value a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(244,168,37,0.12);
  padding: 20px 0;
}

.footer-bottom-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom-text a {
  color: var(--gold);
  text-decoration: none;
}

/* ══════════════════════════════════════
   CATEGORY TABS
═══════════════════════════════════════ */
.cat-tabs-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 20px;
  overflow: hidden;
}

.cat-tabs-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.cat-tabs-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--cream);
}

.cat-tabs-scroll::-webkit-scrollbar { height: 4px; }
.cat-tabs-scroll::-webkit-scrollbar-track { background: var(--cream); border-radius: 2px; }
.cat-tabs-scroll::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

.cat-tab {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.cat-tab:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--gold-dark);
  text-decoration: none;
}

.cat-tab.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: 0 3px 12px rgba(244,168,37,0.35);
}

.cat-tab .cat-count {
  font-size: 0.7rem;
  background: rgba(255,255,255,0.35);
  border-radius: 10px;
  padding: 1px 6px;
  font-weight: 700;
}

.cat-tab.active .cat-count { background: rgba(255,255,255,0.35); }
.cat-tab:not(.active) .cat-count { background: rgba(11,28,61,0.08); color: var(--text-muted); }

/* ══════════════════════════════════════
   PRODUCT FILTER BAR
═══════════════════════════════════════ */
.filter-bar {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
}

.filter-group { flex: 1; min-width: 160px; }

.filter-group label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
}

.filter-group select,
.filter-group input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C8A96E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
}

.filter-group input {
  background-image: none;
  background: var(--white);
}

.filter-group select:focus,
.filter-group input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(244,168,37,0.12);
}

/* ══════════════════════════════════════
   BLOG SINGLE PAGE
═══════════════════════════════════════ */
.blog-content {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text);
}

.blog-content h2 {
  font-size: 1.8rem;
  margin: 40px 0 16px;
  color: var(--navy);
}

.blog-content h3 {
  font-size: 1.4rem;
  margin: 32px 0 12px;
  color: var(--navy);
}

.blog-content p { margin-bottom: 20px; }

.blog-content ul, .blog-content ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

.blog-content ul li, .blog-content ol li {
  margin-bottom: 8px;
}

.blog-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 16px 24px;
  background: var(--cream-2);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--navy);
}

.blog-content img {
  width: 100%;
  border-radius: var(--radius);
  margin: 20px 0;
}

/* ══════════════════════════════════════
   PRODUCT DETAIL
═══════════════════════════════════════ */
.product-gallery-main {
  width: 100%;
  height: 450px;
  background: var(--cream-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
  border: 2px solid var(--border);
}

.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-gallery-main:hover img { transform: scale(1.05); }

.product-gallery-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.product-gallery-thumb {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  flex-shrink: 0;
  transition: var(--transition);
}

.product-gallery-thumb.active,
.product-gallery-thumb:hover { border-color: var(--gold); }

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.product-detail-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 800;
}

.product-detail-price .per {
  font-size: 1rem;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-weight: 400;
}

.product-specs {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-specs li {
  display: flex;
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  font-size: 0.9rem;
}

.product-specs li:last-child { border-bottom: none; }

.product-specs .spec-label {
  width: 140px;
  flex-shrink: 0;
  font-weight: 700;
  color: var(--navy);
}

.product-specs .spec-value { color: var(--text-muted); }

/* ══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.about-image-block {
  position: relative;
}

.about-main-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  height: 500px;
}

.about-badge-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.about-badge-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-badge-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.value-icon {
  width: 46px;
  height: 46px;
  background: var(--gold-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.value-card:hover .value-icon {
  background: var(--gold);
  color: white;
}

/* ══════════════════════════════════════
   CITY LANDING PAGE
═══════════════════════════════════════ */
.city-hero {
  background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.city-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244,168,37,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,168,37,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* ══════════════════════════════════════
   CTA SECTION (WhatsApp)
═══════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 40%, var(--navy-3) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(244,168,37,0.08), transparent 60%);
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-title span { color: var(--gold); }

.cta-desc { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 500px; }

/* ══════════════════════════════════════
   SEARCH PAGE
═══════════════════════════════════════ */
.search-hero {
  background: var(--cream-2);
  padding: 120px 0 60px;
}

.search-form-wrap {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 18px 60px 18px 24px;
  border: 2px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  outline: none;
  transition: var(--transition);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(244,168,37,0.12);
}

.search-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gold);
  color: white;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
}

.search-btn:hover { background: var(--gold-dark); }

/* ══════════════════════════════════════
   PAGINATION
═══════════════════════════════════════ */
.pagination-wrap {
  padding: 24px 0 8px;
}

.pagination-custom {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination-custom .page-item { display: flex; }

.pagination-custom .page-link {
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--border);
  padding: 7px 13px;
  font-weight: 600;
  font-size: 0.82rem;
  transition: var(--transition);
  border-radius: 8px !important;
  min-width: 36px;
  text-align: center;
  line-height: 1.5;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-custom .page-nav {
  padding: 7px 15px;
  font-size: 0.82rem;
  letter-spacing: 0.3px;
}

.pagination-custom .page-dots {
  border-color: transparent;
  background: transparent;
  color: var(--text-muted);
  padding: 7px 6px;
}

.pagination-custom .page-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  box-shadow: 0 4px 12px rgba(244,168,37,0.3);
}

.pagination-custom .page-item.active .page-link {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  box-shadow: 0 4px 12px rgba(244,168,37,0.3);
}

.pagination-custom .page-item.disabled .page-link {
  color: var(--text-light);
  border-color: var(--cream-2);
  background: var(--cream);
  cursor: not-allowed;
  box-shadow: none;
}

/* ══════════════════════════════════════
   CITIES GRID
═══════════════════════════════════════ */
.city-tag {
  display: inline-block;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  margin: 4px;
}

.city-tag:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(244,168,37,0.3);
}

/* ══════════════════════════════════════
   ALERTS & NOTIFICATIONS
═══════════════════════════════════════ */
.alert-gold {
  background: var(--gold-pale);
  border: 1px solid var(--border-hard);
  color: var(--gold-dark);
  border-radius: var(--radius);
  padding: 14px 20px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ══════════════════════════════════════
   ADMIN BLOG MANAGEMENT
═══════════════════════════════════════ */
.admin-blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: var(--transition);
}

.admin-blog-card:hover { box-shadow: var(--shadow-md); }

/* ══════════════════════════════════════
   UTILITY CLASSES
═══════════════════════════════════════ */
.text-gold { color: var(--gold) !important; }
.text-navy { color: var(--navy) !important; }
.bg-gold { background: var(--gold) !important; }
.bg-navy { background: var(--navy) !important; }
.bg-cream { background: var(--cream) !important; }
.bg-cream-2 { background: var(--cream-2) !important; }
.border-gold { border-color: var(--border) !important; }

.font-heading { font-family: var(--font-heading) !important; }
.font-accent { font-family: var(--font-accent) !important; font-style: italic; }

.rounded-gold { border-radius: var(--radius) !important; }
.rounded-gold-lg { border-radius: var(--radius-lg) !important; }

.shadow-gold { box-shadow: var(--shadow-gold) !important; }

.transition-smooth { transition: var(--transition) !important; }

/* ══════════════════════════════════════
   ANIMATIONS (AOS overrides)
═══════════════════════════════════════ */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
/* ══════════════════════════════════════
   TABLET  ≤ 991px
═══════════════════════════════════════ */
@media (max-width: 991.98px) {
  :root { --section-gap: 44px; }

  /* Hero */
  .hero-section { min-height: auto; }
  .hero-content { padding-top: 100px; padding-bottom: 40px; }
  .hero-title { font-size: clamp(2rem, 6vw, 3.2rem); }
  .hero-cta { margin-bottom: 32px; gap: 12px; }
  .hero-stats { gap: 24px; }
  .hero-image-wrap { margin-top: 40px; }
  .hero-float-card.card-1 { left: 0; }
  .hero-float-card.card-2 { right: 0; }

  /* AOS: convert horizontal slide to vertical fade to prevent blank right-scroll */
  [data-aos="fade-right"],
  [data-aos="fade-left"] {
    transform: translate3d(0, 30px, 0) !important;
    opacity: 0;
  }
  [data-aos="fade-right"].aos-animate,
  [data-aos="fade-left"].aos-animate {
    transform: translate3d(0, 0, 0) !important;
    opacity: 1;
  }

  /* Navbar mobile */
  .navbar-collapse {
    background: linear-gradient(180deg, rgba(11,28,61,0.99) 0%, rgba(13,34,71,0.98) 100%);
    backdrop-filter: blur(20px);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    padding: 24px 0;
    margin-top: 12px;
    border-top: 2px solid var(--border-hard);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  }

  .navbar-nav {
    flex-direction: column;
    gap: 0 !important;
  }

  .navbar-nav .nav-link {
    padding: 14px 24px !important;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(244,168,37,0.15);
    color: rgba(255,255,255,0.9) !important;
    position: relative;
  }

  .navbar-nav .nav-link::after {
    bottom: auto;
    left: 24px;
    right: auto;
    width: 3px;
    height: 3px;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.3s ease;
    border-radius: 50%;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background: rgba(244,168,37,0.1);
    color: var(--gold) !important;
    padding-left: 28px !important;
  }

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

  .btn-nav-cta {
    margin: 16px 24px 0;
    width: calc(100% - 48px);
    justify-content: center;
    padding: 12px 24px !important;
    font-size: 0.9rem !important;
  }

  .stat-item:not(:last-child)::after { display: none; }

  /* About */
  .about-badge-card { right: 0; bottom: -10px; }
}

/* ══════════════════════════════════════
   MOBILE  ≤ 767px
═══════════════════════════════════════ */
@media (max-width: 767.98px) {
  :root { --section-gap: 36px; }

  /* Give ALL containers more breathing room on mobile */
  .container { padding-left: 20px !important; padding-right: 20px !important; }

  /* Hero compact */
  .hero-section { min-height: auto; }
  .hero-content { padding-top: 88px; padding-bottom: 32px; }
  .hero-title { font-size: clamp(1.9rem, 7vw, 2.8rem); line-height: 1.15; }
  .hero-desc { font-size: 1rem; margin-bottom: 20px; line-height: 1.7; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 24px; }
  .hero-cta .btn-gold,
  .hero-cta .btn-whatsapp { width: 100%; justify-content: center; padding: 13px 20px; text-align: center; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .hero-badge { font-size: 0.72rem; padding: 6px 14px; letter-spacing: 1px; }

  /* Hide scroll hint — it overlaps stats on mobile */
  .hero-scroll-hint { display: none; }

  /* Floating buttons */
  .whatsapp-float { width: 52px; height: 52px; bottom: 20px; right: 16px; }
  .whatsapp-float i { font-size: 1.3rem; }
  .whatsapp-float .wa-tooltip { display: none; }
  #backToTop { bottom: 20px; left: 16px; width: 40px; height: 40px; font-size: 0.95rem; }

  /* Typography */
  .section-title { font-size: clamp(1.6rem, 5vw, 2rem); }
  .section-subtitle { font-size: 0.85rem; letter-spacing: 2px; }
  .section-desc { font-size: 0.95rem; }

  /* Product cards — 2 per row on mobile */
  .row.g-4 > .col-sm-6.col-lg-4.col-xl-3,
  .row.g-4 > .col-sm-6.col-lg-3 {
    width: 50%;
  }
  .product-card-body { padding: 10px 12px 12px; }
  .product-name { font-size: 0.85rem; }
  .product-price { font-size: 1rem; }
  .product-card-cta-btn { padding: 8px 10px; font-size: 0.75rem; }

  /* Page hero on mobile */
  .page-hero { min-height: 220px; padding-top: 80px; padding-bottom: 36px; }
  .page-hero-title { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .page-hero-desc { font-size: 0.92rem; }

  /* Category tabs */
  .cat-tabs-wrap { padding: 12px 14px; }
  .cat-tab { padding: 6px 12px; font-size: 0.78rem; }

  /* Filter bar */
  .filter-bar { padding: 14px; gap: 10px; }
  .filter-group { min-width: 140px; }
  .filter-group select,
  .filter-group input { padding: 8px 10px; font-size: 0.82rem; }

  /* Stats bar */
  .stat-number { font-size: 2rem; }
  .stat-label { font-size: 0.72rem; }

  /* Footer */
  .footer-main { padding: 36px 0 20px; }
  .footer-heading { font-size: 1rem; margin-bottom: 12px; }
  .footer-links li { margin-bottom: 6px; }

  /* Hero stats */
  .hero-stat div:first-child { font-size: 1.7rem !important; }
}

/* ══════════════════════════════════════
   SMALL MOBILE  ≤ 575px
═══════════════════════════════════════ */
@media (max-width: 575.98px) {
  .hero-content { padding-top: 80px; padding-bottom: 28px; }
  .hero-title { font-size: clamp(1.7rem, 8vw, 2.4rem); }

  .hero-float-card { display: none; }
  .hero-stats { gap: 16px; }
  .hero-stat div:first-child { font-size: 1.6rem !important; }

  /* Product cards — still 2 per row, but smaller padding */
  .product-card-body { padding: 8px 10px 10px; }
  .product-category-tag { font-size: 0.65rem; }

  /* CTA section */
  .cta-section { padding: 48px 0; }
  .cta-title { font-size: 1.6rem; }

  /* Testimonial text smaller */
  .testimonial-text { font-size: 0.9rem; }

  /* Section subtitle */
  .section-subtitle { font-size: 0.78rem; }

  /* Breadcrumb */
  .breadcrumb-item, .breadcrumb-item.active { font-size: 0.78rem; }
}

/* ══════════════════════════════════════
   PRINT STYLES
═══════════════════════════════════════ */
@media print {
  #mainNav, .whatsapp-float, #backToTop, #preloader { display: none !important; }
  .hero-section { min-height: auto; }
}
