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

:root {
  --primary-gold: #D4AF37;
  --secondary-gold: #9E7428;
  --dark-maroon: #5C1315;
  --royal-blue: #1A428A;
  --warm-text: #FBF8F3;
  --dark-text: #2A1C12;
  --font-serif-heading: 'Playfair Display', Georgia, serif;
  --font-brand-title: 'Cinzel', serif;
  --font-sans-body: 'Plus Jakarta Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 85px;
}

body {
  font-family: var(--font-sans-body);
  background-color: #120D09;
  color: var(--warm-text);
  overflow-x: hidden;
}

/* Landing Page Wrapper */
.dhanlaxmi-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header & Navigation */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 40px;
  background: rgba(222, 214, 203, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: background 0.3s ease;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1100px;
  position: relative;
}

.desktop-nav {
  flex: 1;
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  color: #44352A;
  text-decoration: none;
  font-family: var(--font-sans-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #1F140D;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0%;
  height: 2px;
  background: #5C1315;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

/* Logo Styling */
.brand-logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin: 0 60px;
  flex-shrink: 0;
}

.brand-logo-container:hover {
  transform: scale(1.05);
}

.brand-logo-badge {
  width: 95px;
  height: 60px;
  background: radial-gradient(circle, #7D1B1E 0%, #42080A 100%);
  border: 3px solid #D4AF37;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4), inset 0 0 8px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4px;
  position: relative;
}

.logo-img {
  width: 85px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
  border-radius: 8px;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url('../img/dhanlaxmi_hero_bg.jpg');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 5% 40px;
}

/* Dark overlay gradient to make text ultra readable */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(18, 13, 9, 0.8) 0%, rgba(18, 13, 9, 0.4) 60%, rgba(18, 13, 9, 0.75) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-body {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1350px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 30px;
  align-items: center;
}

/* Left Hero Content */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 20px;
}

.hero-title {
  font-family: var(--font-serif-heading);
  font-size: clamp(2.2rem, 3.5vw, 2.85rem);
  font-weight: 500;
  line-height: 1.18;
  color: #FFFFFF;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  margin-bottom: 35px;
}

.hero-title span {
  display: block;
}

/* CTA Pill Buttons Group */
.cta-buttons-container {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.btn-pill {
  padding: 18px 36px;
  border-radius: 12px;
  font-family: var(--font-serif-heading);
  font-size: 1.25rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Steam Jeera Pill Button - Gold Metallic */
.btn-steam-jeera {
  background: linear-gradient(135deg, #D4AF37 0%, #F5D77F 40%, #B88B35 100%);
  border: 2px solid #F5D77F;
  color: #120D09;
  font-weight: 700;
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.5), 0 8px 20px rgba(212, 175, 55, 0.35);
}

.btn-steam-jeera:hover {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(135deg, #F0C74B 0%, #FFF3C4 40%, #9E7428 100%);
  box-shadow: inset 0 1px 5px rgba(255, 255, 255, 0.7), 0 12px 28px rgba(212, 175, 55, 0.5);
  color: #000000;
}

/* Raw Jeera Pill Button - Blue & White Glass */
.btn-raw-jeera {
  background: linear-gradient(135deg, #1A428A 0%, #3B82F6 40%, #0F2952 100%);
  border: 2px solid #93C5FD;
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.3), 0 8px 20px rgba(26, 66, 138, 0.35);
}

.btn-raw-jeera:hover {
  transform: translateY(-3px) scale(1.03);
  background: linear-gradient(135deg, #2563EB 0%, #60A5FA 40%, #1D4ED8 100%);
  box-shadow: inset 0 1px 5px rgba(255, 255, 255, 0.5), 0 12px 28px rgba(37, 99, 235, 0.5);
  color: #FFFFFF;
}

/* Subtext Below Buttons */
.hero-subtext {
  font-family: var(--font-sans-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: #FBF8F3;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  background: rgba(92, 19, 21, 0.85); /* var(--dark-maroon) is #5C1315 */
  border: 1.5px solid var(--primary-gold);
  padding: 8px 20px;
  border-radius: 30px;
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
  white-space: nowrap; /* Prevent wrapping onto multiple lines */
}

.hero-subtext:hover {
  background: rgba(92, 19, 21, 0.95);
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

/* Right Product Image Container */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-display-wrapper {
  position: relative;
  width: 100%;
  max-width: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-bags-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.45));
  transition: transform 0.4s ease, filter 0.4s ease;
  cursor: pointer;
}

.product-bags-image:hover {
  transform: translateY(-6px) scale(1.02);
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.55));
}

/* Interactive Badge Tooltips on Products */
.product-hotspot {
  position: absolute;
  padding: 8px 16px;
  background: rgba(18, 13, 9, 0.85);
  border: 1.5px solid var(--primary-gold);
  border-radius: 20px;
  color: #FFF;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.product-hotspot:hover {
  opacity: 1;
  transform: scale(1.08);
  background: var(--dark-maroon);
  border-color: #FFF;
}

.hotspot-steam {
  top: 15%;
  left: 5%;
}

.hotspot-raw {
  top: 15%;
  right: 5%;
}

/* Carousel Control Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(30, 22, 16, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.carousel-btn:hover {
  background: rgba(212, 175, 55, 0.85);
  color: #120D09;
  border-color: var(--primary-gold);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 20px;
}

.carousel-btn.next {
  right: 20px;
}

/* Premium Scroll Navigation Arrow Button (Bottom Right) */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.9) 0%, rgba(158, 116, 40, 0.95) 100%);
  border: 1.5px solid #F5D77F;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #120D09;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  font-size: 1.15rem;
}

.scroll-top-btn:hover {
  transform: translateY(-4px) scale(1.1);
  background: linear-gradient(135deg, #F0C74B 0%, #B88B35 100%);
  color: #000000;
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45);
}

/* Modal Popup Dialog */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow-y: auto;
  padding: 40px 20px;
}

/* Custom premium scrollbar for modal backdrop */
.modal-backdrop::-webkit-scrollbar {
  width: 8px;
}

.modal-backdrop::-webkit-scrollbar-track {
  background: rgba(18, 13, 9, 0.95);
}

.modal-backdrop::-webkit-scrollbar-thumb {
  background: var(--primary-gold);
  border-radius: 4px;
}

.modal-backdrop::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-gold);
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: #1C1510;
  border: 2px solid var(--primary-gold);
  border-radius: 24px;
  width: 90%;
  max-width: 650px;
  padding: 35px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
  transform: translateY(20px);
  transition: transform 0.3s ease;
  color: #FBF8F3;
  margin: auto;
}

.modal-backdrop.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #AAA;
  font-size: 1.8rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.modal-close:hover {
  color: #FFF;
}

.modal-header-title {
  font-family: var(--font-serif-heading);
  font-size: 2rem;
  color: var(--primary-gold);
  margin-bottom: 15px;
}

.modal-body-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #D1C7BD;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #E2D9CD;
  margin-bottom: 6px;
}

.form-input, .form-select {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  background: #2A2019;
  border: 1px solid #4D3B2E;
  color: #FFF;
  font-family: var(--font-sans-body);
  font-size: 1rem;
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--primary-gold);
}

.btn-submit-order {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #D4AF37 0%, #9E7428 100%);
  border: none;
  border-radius: 12px;
  color: #120D09;
  font-family: var(--font-serif-heading);
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.btn-submit-order:hover {
  background: linear-gradient(135deg, #F0C74B 0%, #B88B35 100%);
  transform: translateY(-2px);
}

/* Toast Notification */
.toast-msg {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #28A745;
  color: #FFF;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2000;
}

.toast-msg.show {
  transform: translateX(-50%) translateY(0);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-body {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-left {
    align-items: center;
    padding-left: 0;
  }
  .hero-title {
    font-size: clamp(1.65rem, 4vw, 2.2rem);
  }
  .cta-buttons-container {
    justify-content: center;
  }
  .product-display-wrapper {
    max-width: 460px;
  }
}

@media (max-width: 768px) {
  .header-nav {
    padding: 15px 20px;
  }
  .nav-group {
    gap: 20px;
  }
  .nav-link {
    font-size: 0.8rem;
  }
  .hero-title {
    font-size: clamp(1.6rem, 6.5vw, 2.2rem);
    line-height: 1.25;
  }
  .btn-pill {
    padding: 14px 24px;
    font-size: 1rem;
  }
  .hero-subtext {
    font-size: 0.95rem; /* Smaller size on mobile to prevent overflow */
    padding: 6px 16px;
  }
}

/* ==========================================================================
   LAXMI RICE MILL - CORPORATE SECTIONS STYLING
   ========================================================================== */

.sec-padding {
  padding: 90px 5%;
}

.sec-bg-light {
  background-color: #FDFBF7;
}

.sec-bg-white {
  background-color: #FFFFFF;
}

.sec-bg-blue {
  background: linear-gradient(135deg, #0F2952 0%, #1A428A 100%);
  color: #FFFFFF;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-sans-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #D4AF37;
  background: rgba(212, 175, 55, 0.12);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 15px;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.section-title {
  font-family: var(--font-serif-heading);
  font-size: 2.75rem;
  font-weight: 600;
  color: #1A2B4C;
  margin-bottom: 15px;
  line-height: 1.2;
}

.sec-bg-blue .section-title {
  color: #FFFFFF;
}

.section-subtitle {
  font-size: 1.15rem;
  color: #66584B;
  line-height: 1.6;
}

.sec-bg-blue .section-subtitle {
  color: #D1DDF0;
}

/* --- ABOUT SECTION --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content h2 {
  font-family: var(--font-serif-heading);
  font-size: 2.5rem;
  color: #1A2B4C;
  margin-bottom: 24px;
  line-height: 1.25;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4A3E35;
  margin-bottom: 24px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.about-card {
  background: #FFFFFF;
  padding: 20px;
  border-radius: 12px;
  border-left: 4px solid #D4AF37;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.about-card h4 {
  color: #1A2B4C;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.about-card p {
  color: #66584B;
  font-size: 0.95rem;
  margin: 0;
}

.about-img-box {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.about-img-box img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-img-box:hover img {
  transform: scale(1.03);
}

/* --- PRODUCT COLLECTION SECTION --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: #FFFFFF;
  border-radius: 20px;
  border: 1px solid #EBE4D8;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(26, 43, 76, 0.12);
  border-color: #D4AF37;
}

.product-img-holder {
  background: radial-gradient(circle, #F9F6F0 0%, #EFEAE0 100%);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 320px;
  position: relative;
}

.product-img-holder img {
  max-height: 260px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.2));
  transition: transform 0.4s ease;
}

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

.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #1A428A;
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 12px;
  letter-spacing: 0.5px;
}

.product-details {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-brand {
  font-size: 0.85rem;
  font-weight: 700;
  color: #D4AF37;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-name {
  font-family: var(--font-serif-heading);
  font-size: 1.45rem;
  color: #1A2B4C;
  margin-bottom: 12px;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.95rem;
  color: #66584B;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.btn-product-details {
  align-self: flex-start;
  padding: 12px 24px;
  border-radius: 12px;
  background: #1A2B4C;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 1px solid #1A2B4C;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-product-details:hover {
  background: #D4AF37;
  color: #120D09;
  border-color: #D4AF37;
}

/* Product Category Dividers */
.product-category-divider {
  max-width: 1200px;
  margin: 0 auto 30px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-gold);
}

.category-title {
  font-family: var(--font-serif-heading);
  font-size: 1.75rem;
  color: #1A2B4C;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}

.category-title i {
  color: var(--primary-gold);
}

.category-subtitle {
  font-size: 1rem;
  color: #66584B;
}

.gold-badge {
  background: linear-gradient(135deg, #D4AF37 0%, #9E7428 100%) !important;
  color: #120D09 !important;
  font-weight: 700 !important;
}

.featured-basmati {
  border: 2px solid var(--primary-gold) !important;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2) !important;
}

/* --- 26 KG FEATURED RANGE SECTION --- */
.range-feature-banner {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1A428A 0%, #0F2952 100%);
  border-radius: 24px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  color: #FFFFFF;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.range-feature-text h3 {
  font-family: var(--font-serif-heading);
  font-size: 2.5rem;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.range-feature-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #D1DDF0;
  margin-bottom: 30px;
}

.range-feature-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.range-feature-img img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.4));
}

/* --- QUALITY SECTION --- */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.quality-card {
  background: #FDFBF7;
  border-radius: 16px;
  padding: 30px;
  border: 1fr solid #EBE4D8;
  transition: all 0.3s ease;
}

.quality-card:hover {
  background: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.quality-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.15);
  color: #D4AF37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.quality-card h4 {
  font-family: var(--font-serif-heading);
  font-size: 1.3rem;
  color: #1A2B4C;
  margin-bottom: 10px;
}

.quality-card p {
  font-size: 0.95rem;
  color: #66584B;
  line-height: 1.6;
}

/* --- PROCESS SECTION --- */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-6px);
  border-color: #D4AF37;
}

.step-num {
  font-family: var(--font-serif-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: #D4AF37;
  margin-bottom: 12px;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.85rem;
  color: #C8D7ED;
  line-height: 1.5;
}

/* --- WHY CHOOSE US --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 30px 24px;
  border-top: 4px solid #1A428A;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.why-card:hover {
  border-top-color: #D4AF37;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
}

.why-card h4 {
  font-family: var(--font-serif-heading);
  font-size: 1.25rem;
  color: #1A2B4C;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.95rem;
  color: #66584B;
  line-height: 1.6;
}

/* --- BRAND STORY --- */
.brand-story-box {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.brand-story-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.brand-story-img img {
  width: 100%;
  height: auto;
  display: block;
}

.brand-story-content h2 {
  font-family: var(--font-serif-heading);
  font-size: 2.5rem;
  color: #1A2B4C;
  margin-bottom: 20px;
}

.brand-story-content p {
  font-size: 1.05rem;
  color: #524439;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* --- GALLERY --- */
/* --- GALLERY CAROUSEL SLIDER --- */
.gallery-carousel-container {
  position: relative;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 60px;
}

.gallery-slider-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 20px;
  padding: 15px 0;
}

.gallery-slider-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  gap: 25px;
}

.gallery-slide {
  flex: 0 0 calc(33.333% - 17px);
  min-width: 280px;
  box-sizing: border-box;
}

.gallery-card {
  height: 380px;
  background: #FDFBF7;
  border-radius: 20px;
  border: 1px solid #EBE4D8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.35s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(26, 43, 76, 0.12);
  border-color: #D4AF37;
}

.gallery-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s ease;
}

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

.gallery-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(180deg, rgba(15, 41, 82, 0) 0%, rgba(15, 41, 82, 0.92) 100%);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transition: opacity 0.35s ease;
  color: #FFFFFF;
}

.gallery-card:hover .gallery-slide-overlay {
  opacity: 1;
}

.gallery-slide-overlay span {
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 10px;
}

.gallery-slide-overlay i {
  color: #D4AF37;
  font-size: 1.1rem;
}

.gallery-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4AF37 0%, #9E7428 100%);
  color: #120D09;
  border: none;
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.gallery-nav-btn:hover {
  background: linear-gradient(135deg, #F0C74B 0%, #B88B35 100%);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.gallery-prev {
  left: 0;
}

.gallery-next {
  right: 0;
}

.gallery-dots-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #D5CDBF;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dot.active {
  background: #D4AF37;
  width: 32px;
  border-radius: 10px;
}

/* Lightbox Modal for Uncropped Image View */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 8, 6, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 30px;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 30px;
  background: transparent;
  border: none;
  color: #FFF;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
  z-index: 3010;
}

.lightbox-close:hover {
  color: #D4AF37;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
  margin-top: 18px;
  color: #FBF8F3;
  font-family: var(--font-serif-heading);
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  text-align: center;
}

/* --- BUSINESS ENQUIRY B2B CTA --- */
.enquiry-cta-box {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1A428A 0%, #0F2952 100%);
  border-radius: 24px;
  padding: 50px;
  text-align: center;
  color: #FFFFFF;
  box-shadow: 0 15px 40px rgba(26, 66, 138, 0.25);
}

.enquiry-cta-box h3 {
  font-family: var(--font-serif-heading);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.enquiry-cta-box p {
  font-size: 1.15rem;
  color: #D1DDF0;
  max-width: 700px;
  margin: 0 auto 35px;
}

.enquiry-btns-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-enquiry-gold {
  padding: 16px 36px;
  border-radius: 12px;
  background: linear-gradient(135deg, #D4AF37 0%, #9E7428 100%);
  color: #120D09;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-enquiry-gold:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #F0C74B 0%, #B88B35 100%);
}

.btn-enquiry-outline {
  padding: 16px 36px;
  border-radius: 12px;
  background: transparent;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.btn-enquiry-outline:hover {
  background: #FFFFFF;
  color: #1A428A;
  transform: translateY(-3px);
}

.btn-whatsapp {
  padding: 16px 36px;
  border-radius: 12px;
  background: #25D366;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp:hover {
  background: #1DA851;
  transform: translateY(-3px);
}

/* --- CONTACT SECTION --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info-box {
  background: #FDFBF7;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #EBE4D8;
}

.contact-info-box h3 {
  font-family: var(--font-serif-heading);
  font-size: 2rem;
  color: #1A2B4C;
  margin-bottom: 25px;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(26, 66, 138, 0.1);
  color: #1A428A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-item h5 {
  font-size: 1rem;
  color: #1A2B4C;
  margin-bottom: 4px;
}

.contact-detail-item p, .contact-detail-item a {
  font-size: 0.95rem;
  color: #66584B;
  text-decoration: none;
  line-height: 1.6;
}

.contact-detail-item a:hover {
  color: #1A428A;
}

.contact-form-box {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #EBE4D8;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-box h3 {
  font-family: var(--font-serif-heading);
  font-size: 1.8rem;
  color: #1A2B4C;
  margin-bottom: 20px;
}

.b2b-form-group {
  margin-bottom: 18px;
}

.b2b-form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1A2B4C;
  margin-bottom: 6px;
}

.b2b-form-input, .b2b-form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid #D5CDBF;
  font-family: var(--font-sans-body);
  font-size: 0.95rem;
  background: #FDFBF7;
  color: #222;
}

.b2b-form-input:focus, .b2b-form-textarea:focus {
  outline: none;
  border-color: #1A428A;
  background: #FFFFFF;
}

.btn-b2b-submit {
  width: 100%;
  padding: 15px;
  background: #1A428A;
  color: #FFFFFF;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-b2b-submit:hover {
  background: #0F2952;
}

/* --- FOOTER --- */
.site-footer {
  background: #0F172A;
  color: #94A3B8;
  padding: 70px 5% 30px;
  border-top: 3px solid #D4AF37;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand h4 {
  font-family: var(--font-serif-heading);
  font-size: 1.8rem;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.footer-brand p {
  color: #CBD5E1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-links h5, .footer-contact-col h5 {
  font-family: var(--font-serif-heading);
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 20px;
}

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

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

.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #D4AF37;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 25px;
  border-top: 1px solid #1E293B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.footer-bottom a {
  color: var(--primary-gold);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.footer-bottom a:hover {
  color: #FFFFFF;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

/* Mobile Actions & Toggle Button styling */
.mobile-actions {
  display: none; /* Hidden on desktop */
}

.mobile-toggle {
  background: transparent;
  border: none;
  color: #44352A;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 6px;
  transition: color 0.3s ease;
}

.mobile-toggle:hover {
  color: #120D09;
}

.mobile-call-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, #D4AF37 0%, #B88B35 100%);
  border: 1.5px solid #F5D77F;
  color: #120D09;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(212, 175, 55, 0.25);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-call-btn i {
  font-size: 0.85rem;
}

.mobile-call-btn:hover {
  background: linear-gradient(135deg, #F0C74B 0%, #B88B35 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(212, 175, 55, 0.4);
}

/* Backdrop Overlay */
.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Right-to-Left Slide Drawer Panel */
.mobile-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: linear-gradient(180deg, #18120B 0%, #0F0B07 100%);
  border-left: 2px solid var(--primary-gold);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.7);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0;
}

.mobile-menu-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  background: rgba(0, 0, 0, 0.3);
}

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

.drawer-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1.5px solid var(--primary-gold);
  object-fit: cover;
}

.drawer-brand span {
  font-family: var(--font-serif-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-gold);
  letter-spacing: 0.5px;
}

.drawer-close {
  background: transparent;
  border: none;
  color: #AAA;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.drawer-close:hover {
  color: #FFF;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  flex-grow: 1;
}

.mobile-nav-link {
  color: #E6DFD5;
  text-decoration: none;
  font-family: var(--font-sans-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav-link i {
  color: var(--primary-gold);
  font-size: 1rem;
  width: 20px;
  text-align: center;
}

.mobile-nav-link:hover, .mobile-nav-link:active {
  color: #FFFFFF;
  background: rgba(212, 175, 55, 0.12);
  border-left-color: var(--primary-gold);
}

.drawer-footer {
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.drawer-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #D4AF37 0%, #9E7428 100%);
  color: #120D09;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
  transition: all 0.3s ease;
}

.drawer-call-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #F0C74B 0%, #B88B35 100%);
}

/* Responsive Grid Adjustments */
@media (max-width: 1024px) {
  .about-grid, .brand-story-box, .range-feature-banner, .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .products-grid, .quality-grid, .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .desktop-nav {
    display: none !important;
  }
  
  .mobile-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .mobile-toggle {
    display: block;
    color: #120D09; /* Visible dark color matching brand */
  }

  .header-nav {
    padding: 10px 20px;
    background: rgba(248, 245, 240, 0.92); /* Luxury translucent cream background */
    border-bottom: 2px solid var(--primary-gold); /* Premium brand gold accent line */
  }

  .brand-logo-container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }

  .brand-logo-badge {
    width: auto;
    height: 38px;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
  }

  .logo-img {
    height: 38px;
    width: auto;
    max-height: 38px;
    border-radius: 8px; /* Slightly rounded corners */
  }

  .hero-section {
    padding: 100px 4% 50px;
  }

  .hero-title {
    font-size: clamp(2.1rem, 6.5vw, 3rem);
    text-align: center;
  }

  .cta-buttons-container {
    justify-content: center;
    width: 100%;
    gap: 12px;
  }

  .btn-pill {
    padding: 14px 24px;
    font-size: 1rem;
    width: 100%;
    max-width: 320px;
  }

  .hero-subtext {
    font-size: 1.1rem;
    text-align: center;
  }

  .sec-padding {
    padding: 60px 5%;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .range-feature-banner {
    padding: 30px 20px;
  }

  .range-feature-text h3 {
    font-size: 1.9rem;
  }

  .enquiry-cta-box {
    padding: 35px 20px;
  }

  .enquiry-cta-box h3 {
    font-size: 1.9rem;
  }

  .enquiry-btns-group {
    flex-direction: column;
    width: 100%;
  }

  .enquiry-btns-group a {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .gallery-carousel-container {
    padding: 0 45px;
  }

  .gallery-slide {
    flex: 0 0 calc(50% - 13px);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .modal-backdrop {
    padding: 0;
  }

  .scroll-top-btn {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    font-size: 1rem;
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 10000 !important;
  }
}

@media (max-width: 640px) {
  .products-grid, .quality-grid, .process-timeline, .why-grid {
    grid-template-columns: 1fr;
  }

  .gallery-carousel-container {
    padding: 0;
  }

  .gallery-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .gallery-prev {
    left: -10px;
  }

  .gallery-next {
    right: -10px;
  }

  .gallery-slide {
    flex: 0 0 100%;
  }

  .gallery-card {
    height: 320px;
    padding: 16px;
  }

  .product-img-holder {
    height: 250px;
    padding: 15px;
  }

  .product-details {
    padding: 20px;
  }

  .contact-info-box, .contact-form-box {
    padding: 25px 18px;
  }

  .modal-content {
    padding: 24px 18px;
  }

  .hero-title {
    font-size: clamp(1.45rem, 6.5vw, 1.95rem);
    line-height: 1.25;
  }
}

/* ==========================================================================
   GOVERNMENT CERTIFICATIONS & TRUST CREDENTIALS SECTION (BRAND MATCHED)
   ========================================================================== */
#certifications.sec-bg-light {
  background: #FDFBF7;
  border-top: 1px solid #EBE4D8;
  border-bottom: 1px solid #EBE4D8;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
  max-width: 1200px;
  margin: 0 auto 45px auto;
}

.cert-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid #EBE4D8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #D4AF37, #1A428A);
}

.cert-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(26, 66, 138, 0.12);
  border-color: #D4AF37;
}

.cert-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.cert-badge-status {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cert-badge-status.status-green {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.cert-badge-status.status-gold {
  background: rgba(212, 175, 55, 0.15);
  color: #9E7428;
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.cert-type {
  font-size: 0.82rem;
  color: #66584B;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cert-body {
  display: flex;
  gap: 22px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.cert-emblem-wrap {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 16px;
  background: #FFFFFF;
  padding: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #EBE4D8;
}

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

.cert-info {
  flex-grow: 1;
}

.cert-title {
  font-family: var(--font-serif-heading);
  font-size: 1.45rem;
  color: #1A2B4C;
  margin-bottom: 4px;
}

.cert-authority {
  font-size: 0.88rem;
  color: #66584B;
  margin-bottom: 12px;
  font-weight: 500;
}

.cert-lic-pill {
  background: #FDF8EC;
  border: 1px solid #E8D9B5;
  padding: 6px 12px;
  border-radius: 8px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.lic-label {
  color: #66584B;
}

.lic-number {
  color: #9E7428;
  font-family: monospace;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.cert-desc {
  font-size: 0.92rem;
  color: #52473C;
  line-height: 1.6;
  margin-bottom: 14px;
}

.cert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-item {
  font-size: 0.78rem;
  background: #F5F0E6;
  color: #3D3227;
  padding: 4px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid #E6DCCF;
  font-weight: 500;
}

.tag-item i {
  color: #D4AF37;
}

.cert-footer {
  padding-top: 18px;
  border-top: 1px solid #F0E8DC;
}

.btn-cert-pdf {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  background: linear-gradient(135deg, #1A428A 0%, #0F2952 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(26, 66, 138, 0.2);
  transition: all 0.3s ease;
  border: none;
}

.btn-cert-pdf i {
  color: #D4AF37;
  font-size: 1.1rem;
}

.btn-cert-pdf:hover {
  background: linear-gradient(135deg, #D4AF37 0%, #9E7428 100%);
  color: #120D09;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
}

.btn-cert-pdf:hover i {
  color: #120D09;
}

/* Trust Assurance Bar */
.trust-assurance-bar {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  background: #FFFFFF;
  border: 1px solid #EBE4D8;
  border-radius: 18px;
  padding: 24px 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
}

.assurance-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.assurance-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.15);
  color: #9E7428;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.assurance-text h4 {
  font-size: 1.05rem;
  color: #1A2B4C;
  margin-bottom: 4px;
  font-weight: 700;
}

.assurance-text p {
  font-size: 0.88rem;
  color: #66584B;
  line-height: 1.5;
}

/* Responsive adjust for Certifications Grid */
@media (max-width: 992px) {
  .cert-grid {
    grid-template-columns: 1fr;
  }
  
  .trust-assurance-bar {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .cert-body {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cert-header {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }

  .cert-card {
    padding: 22px 18px;
  }
}



