/* =============================================
   FLENCH EXIM - Luxury Minimal CSS
   Color Palette: Deep Navy, Gold, Ivory, Slate
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --primary:    #0a1628;   /* Deep Navy */
  --gold:       #c9a84c;   /* Luxury Gold */
  --gold-light: #e8c97a;   /* Light Gold */
  --ivory:      #f8f5ef;   /* Warm Ivory */
  --white:      #ffffff;
  --slate:      #4a5568;
  --light-gray: #f0ece4;
  --dark-gray:  #2d3748;
  --text:       #1a202c;
  --transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-luxury: 0 20px 60px rgba(10,22,40,0.15);
  --shadow-gold:   0 8px 30px rgba(201,168,76,0.25);
  --font-heading: 'Cormorant Garamond', serif;
  --font-body:    'Montserrat', sans-serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ---- GLOBAL: Hide broken image alt text ---- */
img {
  color: transparent !important;
  font-size: 0 !important;
  text-indent: -9999px;
}
img[alt]::after  { display: none !important; content: none !important; }
img[alt]::before { display: none !important; content: none !important; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--primary);
  letter-spacing: 1px;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1.2rem 0;
}

.gold-line.center { margin: 1.2rem auto; }

/* ---- BUTTONS ---- */
.btn-luxury {
  display: inline-block;
  padding: 14px 40px;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-luxury::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: var(--transition);
  z-index: -1;
}

.btn-luxury:hover::before { left: 0; }
.btn-luxury:hover { color: var(--primary); border-color: var(--gold); text-decoration: none; }

.btn-luxury-solid {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border: 1.5px solid var(--gold);
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.btn-luxury-solid:hover {
  background: transparent;
  color: var(--gold);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* =============================================
   POPUP / MODAL
   ============================================= */
#enquiryPopup {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 22, 40, 0.75);
  backdrop-filter: blur(6px);
  opacity: 0;
  animation: fadeInPopup 0.6s 1.2s forwards;
}

@keyframes fadeInPopup {
  to { opacity: 1; }
}

.popup-box {
  background: var(--white);
  width: 90%;
  max-width: 560px;
  padding: 50px 45px;
  position: relative;
  box-shadow: 0 40px 100px rgba(10,22,40,0.4);
  animation: slideUpPopup 0.6s 1.2s both;
}

@keyframes slideUpPopup {
  from { transform: translateY(40px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.popup-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.popup-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--slate);
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

.popup-close:hover { color: var(--gold); transform: rotate(90deg); }

.popup-logo {
  text-align: center;
  margin-bottom: 20px;
}

.popup-logo img { height: 100px; }

.popup-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 6px;
}

.popup-desc {
  font-size: 0.8rem;
  color: var(--slate);
  text-align: center;
  letter-spacing: 1px;
  margin-bottom: 28px;
}

.popup-box .form-control {
  border: 1px solid #e2ddd5;
  border-radius: 0;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text);
  background: var(--ivory);
  transition: var(--transition);
}

.popup-box .form-control:focus {
  border-color: var(--gold);
  box-shadow: none;
  background: var(--white);
}

.popup-box .btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary), #1a2f50);
  color: var(--gold);
  border: none;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}

.popup-box .btn-submit:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* =============================================
   NAVBAR
   ============================================= */
#mainNav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 9999;
  padding: 18px 0;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background 0.4s ease,
              padding 0.4s ease,
              box-shadow 0.4s ease;
  background: transparent;
}

/* Solid — after scrolling 50px */
#mainNav.scrolled {
  background: rgba(10, 22, 40, 0.98) !important;
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(10,22,40,0.35);
}

/* Inner pages — always solid */
#mainNav.nav-solid {
  background: rgba(10, 22, 40, 0.98) !important;
  box-shadow: 0 4px 20px rgba(10,22,40,0.3);
}

/* Home hero top — subtle dark gradient */
#mainNav.nav-top {
  background: linear-gradient(to bottom, rgba(10,22,40,0.65) 0%, transparent 100%);
}

/* HIDE on scroll DOWN — slides up off screen */
#mainNav.nav-hidden {
  transform: translateY(-100%);
  box-shadow: none !important;
}

/* ---- Mobile menu dropdown ---- */
#mainNav .navbar-collapse {
  background: #0a1628;
}

#mainNav .navbar-collapse .container {
  padding-top: 8px;
  padding-bottom: 16px;
}

/* Mobile: links right-aligned, full-width tap area */
@media (max-width: 991.98px) {
  #mainNav .navbar-nav {
    width: 100%;
    align-items: flex-end !important; /* right-align */
  }

  #mainNav .nav-link {
    text-align: right;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(201,168,76,0.08);
    width: 100%;
    display: block;
  }

  #mainNav .nav-item:last-child .nav-link,
  #mainNav .nav-item:last-child .btn-luxury {
    border-bottom: none;
  }

  #mainNav .btn-luxury {
    display: inline-block;
    margin-top: 8px;
    margin-bottom: 4px;
    float: right;
  }
}

#mainNav .navbar-brand img {
  height: 125px;
  transition: var(--transition);
  filter: brightness(0) invert(1);
}

#mainNav.scrolled .navbar-brand img { height: 40px; }

#mainNav .nav-link {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85) !important;
  padding: 8px 18px !important;
  position: relative;
  transition: var(--transition);
}

#mainNav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
  transform: translateX(-50%);
}

#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after { width: 60%; }

#mainNav .nav-link:hover,
#mainNav .nav-link.active { color: var(--gold) !important; }

.navbar-toggler {
  border: 1.5px solid rgba(201,168,76,0.6);
  padding: 6px 10px;
  margin-right: 8px;
}

.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(201, 168, 76, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ---- HERO ---- */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.35;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.6) 60%, rgba(10,22,40,0.4) 100%);
}

.hero-content { position: relative; z-index: 2; }

.hero-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 8px 20px;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.8s 0.3s both;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeSlideUp 0.8s 0.5s both;
}

.hero-title span { color: var(--gold); font-style: italic; }

.hero-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  line-height: 1.9;
  margin-bottom: 36px;
  font-weight: 300;
  animation: fadeSlideUp 0.8s 0.7s both;
}

.hero-btns { animation: fadeSlideUp 0.8s 0.9s both; }

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%,100% { opacity: 0.3; height: 50px; }
  50%      { opacity: 1;   height: 70px; }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   MARQUEE / TICKER
   ============================================= */
.marquee-strip {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marqueeRoll 30s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--primary);
  padding: 0 40px;
}

.marquee-track span::before {
  content: '✦';
  margin-right: 40px;
  color: var(--primary);
}

@keyframes marqueeRoll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   ABOUT SECTION
   ============================================= */
#about { padding: 120px 0; background: var(--white); }

.about-img-wrap {
  position: relative;
  padding: 20px 20px 0 0;
}

.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.about-img-wrap:hover img { transform: scale(1.02); }

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 2px solid var(--gold);
  z-index: -1;
  transition: var(--transition);
}

.about-img-wrap:hover::before { top: 8px; right: 8px; }

.about-badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: linear-gradient(135deg, var(--primary), #1a2f50);
  color: var(--gold);
  padding: 28px 32px;
  text-align: center;
  box-shadow: var(--shadow-luxury);
}

.about-badge .num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  display: block;
}

.about-badge .label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.8);
  margin-top: 4px;
}

.about-content { padding-left: 40px; }
.about-content p { color: var(--slate); font-size: 0.92rem; line-height: 1.9; margin-bottom: 1rem; }

.about-stats { display: flex; gap: 40px; margin: 32px 0; }

.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--primary);
  font-weight: 500;
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

/* =============================================
   PRODUCTS SECTION
   ============================================= */
#products { padding: 120px 0; background: var(--ivory); }

.product-card {
  background: var(--white);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(10,22,40,0.06);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-luxury);
}

.product-img {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-card:hover .product-img img { transform: scale(1.08); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 28px;
}

.product-card:hover .product-overlay { opacity: 1; }

.product-overlay-link {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: var(--transition);
}

.product-body { padding: 24px 28px; }

.product-cat {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.product-desc {
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.8;
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
#why { padding: 120px 0; background: var(--primary); position: relative; overflow: hidden; }

#why::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
}

.why-card {
  padding: 40px 32px;
  border: 1px solid rgba(201,168,76,0.2);
  position: relative;
  transition: var(--transition);
  background: transparent;
  margin-bottom: 24px;
  height: 100%;          /* ← same height sab cards */
  display: flex;         /* ← flex so content aligns */
  flex-direction: column;
}

.why-card:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.why-icon {
  width: 56px; height: 56px;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--gold);
}

.why-icon svg, .why-icon i {
  color: var(--gold);
  font-size: 1.4rem;
  transition: var(--transition);
}

.why-card:hover .why-icon svg,
.why-card:hover .why-icon i { color: var(--primary); }

.why-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}

.why-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
}

/* =============================================
   GALLERY / SHOWCASE
   ============================================= */
#gallery { padding: 120px 0; background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 12px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:nth-child(1) { grid-column: span 5; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 3; }
.gallery-item:nth-child(4) { grid-column: span 3; }
.gallery-item:nth-child(5) { grid-column: span 5; }
.gallery-item:nth-child(6) { grid-column: span 4; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img { transform: scale(1.1); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.8), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

/* =============================================
   PROCESS / HOW IT WORKS
   ============================================= */
#process { padding: 120px 0; background: var(--light-gray); }

.process-step {
  text-align: center;
  padding: 40px 24px;
  position: relative;
  transition: var(--transition);
}

.process-num {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 600;
  color: rgba(10,22,40,0.06);
  line-height: 1;
  position: absolute;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  transition: var(--transition);
}

.process-step:hover .process-num { color: rgba(201,168,76,0.15); }

.process-icon {
  width: 70px; height: 70px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  position: relative; z-index: 1;
  background: var(--white);
  transition: var(--transition);
}

.process-step:hover .process-icon {
  background: var(--primary);
  box-shadow: var(--shadow-gold);
}

.process-icon i { color: var(--gold); font-size: 1.5rem; transition: var(--transition); }
.process-step:hover .process-icon i { color: var(--gold); }

.process-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 12px;
  position: relative; z-index: 1;
}

.process-desc {
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.9;
  position: relative; z-index: 1;
}

.process-connector {
  position: absolute;
  top: 70px; right: -50%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,0.2));
  z-index: 0;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
#testimonials { padding: 120px 0; background: var(--primary); }

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 44px 40px;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(201,168,76,0.6);
  background: rgba(255,255,255,0.07);
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: -10px; left: 24px;
  line-height: 1;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.testimonial-author { display: flex; align-items: center; gap: 16px; }

.author-avatar {
  width: 56px; height: 66px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.author-name {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
}

.author-role {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; margin-bottom: 20px; }

/* =============================================
   CTA BANNER
   ============================================= */
#cta {
  padding: 100px 0;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
  text-align: center;
}

#cta::before {
  content: 'EXIM';
  position: absolute;
  font-family: var(--font-heading);
  font-size: 20vw;
  font-weight: 600;
  color: rgba(10,22,40,0.04);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

#cta .section-title { margin-bottom: 16px; }
#cta p { font-size: 0.92rem; color: var(--slate); max-width: 520px; margin: 0 auto 36px; }

/* =============================================
   CONTACT SECTION
   ============================================= */
#contact { padding: 120px 0; background: var(--white); }

.contact-info-item {
  display: flex; align-items: flex-start; gap: 20px;
  margin-bottom: 36px;
}

.contact-icon {
  width: 52px; height: 52px;
  min-width: 52px;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  transition: var(--transition);
}

.contact-info-item:hover .contact-icon {
  background: var(--gold);
  color: var(--primary);
}

.contact-info-label {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info-value {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 500;
  line-height: 1.6;
}

.contact-form .form-control,
.contact-form .form-select {
  border: none;
  border-bottom: 1.5px solid #e2ddd5;
  border-radius: 0;
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  background: transparent;
  transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-bottom-color: var(--gold);
  box-shadow: none;
  background: transparent;
}

.contact-form textarea { resize: none; }

.contact-map { height: 300px; margin-top: 40px; }
.contact-map iframe { width: 100%; height: 100%; border: none; filter: grayscale(30%); }

/* =============================================
   FOOTER — LUXURY REDESIGN
   ============================================= */
#footer {
  background: #060e1c;
  position: relative;
}

/* ---- Main content area ---- */
.footer-main {
  padding: 80px 0 60px;
  position: relative;
}

.footer-main::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 100%;
  background: rgba(201,168,76,0.07);
  pointer-events: none;
}

/* ---- Logo ---- */
.footer-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  /* filter: drop-shadow(0 4px 16px rgba(201,168,76,0.15)); */
}

/* ---- Tagline ---- */
.footer-tagline {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.95;
  max-width: 300px;
  margin-bottom: 28px;
}

/* ---- Social Icons ---- */
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }

.fs-link {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.fs-link::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: var(--transition);
  border-radius: 50%;
}

.fs-link:hover::before { opacity: 1; }
.fs-link:hover { color: var(--primary); border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 8px 20px rgba(201,168,76,0.3); }
.fs-link i { position: relative; z-index: 1; }

/* ---- Column headings ---- */
.footer-col { padding-top: 4px; }

.footer-col-heading {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-heading-line {
  display: inline-block;
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  flex-shrink: 0;
}

/* ---- Nav list ---- */
.footer-nav-list {
  list-style: none;
  padding: 0; margin: 0;
}

.footer-nav-list li {
  margin-bottom: 13px;
}

.footer-nav-list a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 0.83rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.footer-nav-list a i {
  font-size: 0.6rem;
  color: var(--gold);
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition);
}

.footer-nav-list a:hover {
  color: var(--gold);
  padding-left: 6px;
}

.footer-nav-list a:hover i {
  opacity: 1;
  transform: translateX(0);
}

/* ---- Contact list ---- */
.footer-contact-list {
  list-style: none;
  padding: 0; margin: 0 0 24px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.45);
  font-size: 0.83rem;
  line-height: 1.7;
}

.fci {
  width: 36px; height: 36px;
  min-width: 36px;
  border: 1px solid rgba(201,168,76,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 0.8rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.footer-contact-list li:hover .fci {
  background: var(--gold);
  color: var(--primary);
}

.footer-contact-list a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-list a:hover { color: var(--gold); }

/* ---- WhatsApp Button ---- */
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 11px 22px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  border-radius: 2px;
}

.footer-wa-btn i { font-size: 1.1rem; }
.footer-wa-btn:hover { background: #1db954; color: #fff; transform: translateY(-3px); box-shadow: 0 8px 20px rgba(37,211,102,0.3); }

/* ---- Bottom Bar ---- */
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 22px 0;
  background: rgba(0,0,0,0.25);
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.74rem;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.8px;
  margin: 0;
}

.fc-gold { color: var(--gold); }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  min-height: 42vh;
  background: var(--primary);
  display: flex; align-items: flex-end;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.2;
}

.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.9), rgba(10,22,40,0.7));
}

.page-hero-content { position: relative; z-index: 2; }

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 12px;
}

.breadcrumb-item, .breadcrumb-item a {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.breadcrumb-item.active { color: var(--gold); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(201,168,76,0.4); }

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white);
  font-weight: 300;
  line-height: 1.1;
}

.page-hero-title span { color: var(--gold); font-style: italic; }

/* =============================================
   ANIMATIONS & AOS CUSTOM
   ============================================= */
[data-aos] { transition-property: transform, opacity !important; }

.reveal-left  { opacity: 0; transform: translateX(-40px); transition: 0.8s ease; }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: 0.8s ease; }
.reveal-up    { opacity: 0; transform: translateY(40px);  transition: 0.8s ease; }
.reveal-scale { opacity: 0; transform: scale(0.92);       transition: 0.8s ease; }

.revealed {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}

/* Stagger */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* Gold shimmer text */
.gold-shimmer {
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Floating ornament */
.ornament {
  position: absolute;
  opacity: 0.06;
  font-family: var(--font-heading);
  font-size: 18vw;
  font-weight: 700;
  color: var(--primary);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* =============================================
   PRELOADER — Typewriter Animation
   ============================================= */
#preloader {
  position: fixed; inset: 0;
  z-index: 999999;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Center content wrapper */
.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Logo — fades in first */
.preloader-logo {
  height: 110px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  animation: preloaderLogoIn 0.8s ease forwards;
}

@keyframes preloaderLogoIn {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Typewriter text wrap */
.preloader-text-wrap {
  display: flex;
  align-items: center;
  gap: 2px;
  min-height: 52px;
}

/* "Flench Exim" typed text */
.preloader-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 6px;
  text-transform: uppercase;
}

/* Blinking cursor */
.preloader-cursor {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  animation: blinkCursor 0.7s step-end infinite;
  line-height: 1;
  margin-left: 2px;
}

@keyframes blinkCursor {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Subtitle */
.preloader-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: preloaderSubIn 0.6s ease 2s forwards;
}

@keyframes preloaderSubIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Gold progress bar */
.preloader-bar {
  width: 200px;
  height: 1.5px;
  background: rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: preloaderSubIn 0.4s ease 1.8s forwards;
}

.preloader-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  animation: preloaderProgress 2.2s ease 0.3s forwards;
}

@keyframes preloaderProgress {
  from { width: 0%; }
  to   { width: 100%; }
}

/* =============================================
   BACK TO TOP
   ============================================= */
#backTop {
  position: fixed;
  bottom: 36px; right: 30px;
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  z-index: 999;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

#backTop.show { opacity: 1; visibility: visible; }
#backTop:hover { background: var(--primary); color: var(--gold); transform: translateY(-4px); }

/* =============================================
   FULLY RESPONSIVE — All Breakpoints
   ============================================= */

/* ── Tablet Landscape & Small Desktop (max 1199px) ── */
@media (max-width: 1199.98px) {
  .section-title { font-size: clamp(2rem, 4vw, 3.2rem); }
  .hero-title    { font-size: clamp(2.8rem, 6vw, 5rem); }
  .about-content { padding-left: 20px; }
  .footer-main   { padding: 60px 0 40px; }
}

/* ── Tablet Portrait (max 991px) ── */
@media (max-width: 991.98px) {

  /* About */
  .about-content { padding-left: 0; margin-top: 50px; }
  .about-stats   { gap: 20px; flex-wrap: wrap; justify-content: flex-start; }
  .about-img-wrap img { height: 420px; }

  /* Gallery grid — 2 column on tablet */
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 220px);
  }
  .gallery-item:nth-child(1) { grid-column: span 6; }
  .gallery-item:nth-child(2) { grid-column: span 3; }
  .gallery-item:nth-child(3) { grid-column: span 3; }
  .gallery-item:nth-child(4) { grid-column: span 2; }
  .gallery-item:nth-child(5) { grid-column: span 2; }
  .gallery-item:nth-child(6) { grid-column: span 2; }

  /* Process */
  .process-connector { display: none; }
  .process-step { padding: 30px 16px; }

  /* Why cards */
  .why-card { margin-bottom: 20px; }

  /* Footer */
  .footer-logo { height: 70px; }
  .footer-tagline { max-width: 100%; }

  /* Testimonials */
  .testimonial-card { margin-bottom: 20px; }

  /* CTA */
  #cta { padding: 80px 0; }
  #cta::before { font-size: 25vw; }
}

/* ── Mobile Landscape & Large Mobile (max 767px) ── */
@media (max-width: 767.98px) {

  /* Navbar — always solid on mobile */
  #mainNav,
  #mainNav.nav-top,
  #mainNav.scrolled,
  #mainNav.nav-solid {
    padding: 10px 0 !important;
    background: rgba(10,22,40,0.99) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3) !important;
  }
  #mainNav .navbar-brand img { height: 36px; }
  #mainNav .navbar-collapse { background: #0a1628; }
  #mainNav .navbar-collapse .container { padding-bottom: 16px; }
  #mainNav .nav-link {
    padding: 11px 0 !important;
    border-bottom: 1px solid rgba(201,168,76,0.08);
    font-size: 0.8rem !important;
    text-align: right;
  }

  /* Hero */
  #hero { padding-top: 70px; min-height: 100svh; }
  .hero-title { font-size: clamp(2rem, 9vw, 3.2rem); }
  .hero-desc  { font-size: 0.85rem; }
  .hero-tag   { font-size: 0.62rem; letter-spacing: 4px; padding: 6px 14px; }
  .hero-btns  { flex-direction: column; gap: 12px; }
  .btn-luxury, .btn-luxury-solid { padding: 12px 28px; font-size: 0.7rem; letter-spacing: 3px; }
  .hero-scroll { display: none; }

  /* Sections padding */
  #about, #products, #gallery,
  #process, #testimonials, #contact { padding: 60px 0; }
  #why { padding: 60px 0; }
  #cta { padding: 60px 0; }

  /* Marquee */
  .marquee-strip { padding: 10px 0; }
  .marquee-track span { font-size: 0.62rem; padding: 0 24px; letter-spacing: 3px; }

  /* Section titles */
  .section-title    { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .section-subtitle { font-size: 0.65rem; letter-spacing: 4px; }

  /* About */
  .about-badge { display: none; }
  .about-img-wrap { padding: 0; }
  .about-img-wrap::before { display: none; }
  .about-img-wrap img { height: 280px; }
  .about-content { margin-top: 32px; }
  .about-stats { gap: 16px; }
  .stat-num { font-size: 2.2rem; }

  /* Products */
  .product-img  { height: 200px; }
  .product-body { padding: 16px 18px; }
  .product-name { font-size: 1.2rem; }
  .product-desc { font-size: 0.78rem; }

  /* Why cards */
  .why-card { padding: 28px 22px; margin-bottom: 16px; }
  .why-title { font-size: 1.3rem; }
  .why-desc  { font-size: 0.78rem; }

  /* Gallery */
  .gallery-grid { display: flex; flex-direction: column; gap: 8px; }
  .gallery-item { height: 200px; }

  /* Process */
  .process-step { padding: 24px 12px; }
  .process-title { font-size: 1.2rem; }
  .process-desc  { font-size: 0.78rem; }
  .process-icon  { width: 56px; height: 56px; }

  /* Testimonials */
  .testimonial-card { padding: 28px 22px; margin-bottom: 16px; }
  .testimonial-text { font-size: 1rem; }

  /* CTA */
  #cta .section-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  #cta p { font-size: 0.82rem; }
  #cta::before { display: none; }

  /* Contact */
  .contact-info-item { gap: 14px; margin-bottom: 24px; }
  .contact-form .form-control { padding: 12px 0; font-size: 0.82rem; }
  .contact-map { height: 220px; }

  /* Popup */
  #enquiryPopup .popup-box { width: 94%; padding: 32px 20px; margin: 0 auto; }
  .popup-title { font-size: 1.4rem; }
  .popup-desc  { font-size: 0.72rem; }

  /* Page Hero (inner pages) */
  .page-hero { min-height: 32vh; padding-top: 80px; padding-bottom: 32px; }
  .page-hero-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }

  /* Footer */
  .footer-main { padding: 48px 0 32px; }
  .footer-logo { height: 64px; }
  .footer-tagline { font-size: 0.78rem; max-width: 100%; }
  .footer-col-heading { font-size: 0.62rem; letter-spacing: 4px; margin-bottom: 18px; }
  .footer-nav-list a  { font-size: 0.78rem; }
  .footer-contact-list li { font-size: 0.78rem; gap: 10px; }
  .footer-bottom { padding: 16px 0; }
  .footer-copy   { font-size: 0.68rem; text-align: center; }

  /* Back to top */
  #backTop { width: 40px; height: 40px; bottom: 20px; right: 16px; font-size: 0.85rem; }

  /* Preloader */
  .preloader-brand  { font-size: 2rem; letter-spacing: 4px; }
  .preloader-logo   { height: 80px; }
  .preloader-sub    { font-size: 0.58rem; letter-spacing: 4px; }
}

/* ── Small Mobile (max 575px) ── */
@media (max-width: 575.98px) {

  /* Hero */
  #hero { padding-top: 65px; }
  .hero-title { font-size: clamp(1.8rem, 8vw, 2.6rem); line-height: 1.15; }
  .hero-tag   { display: none; }

  /* About stats — 3 in a row */
  .about-stats { justify-content: space-between; }
  .stat-num    { font-size: 1.9rem; }
  .stat-label  { font-size: 0.6rem; }

  /* Products — single col */
  .product-img { height: 180px; }

  /* Why — single col */
  .why-card { padding: 24px 18px; }
  .why-icon { width: 46px; height: 46px; }

  /* Gallery items */
  .gallery-item { height: 170px; }

  /* Footer columns stack properly */
  .footer-social { gap: 8px; }
  .fs-link       { width: 34px; height: 34px; font-size: 0.75rem; }
  .footer-wa-btn { font-size: 0.65rem; padding: 10px 16px; }

  /* Popup full screen almost */
  #enquiryPopup .popup-box { width: 96%; padding: 28px 16px; }

  /* Contact form */
  #contact { padding: 50px 0; }

  /* Testimonials text */
  .testimonial-text { font-size: 0.92rem; }

  /* Section titles */
  .section-title { font-size: clamp(1.6rem, 7vw, 2.4rem); }

  /* Process icons */
  .process-num { font-size: 3.5rem; }
}

/* ── Very Small (max 380px) ── */
@media (max-width: 380px) {
  .hero-title { font-size: 1.7rem; }
  .preloader-brand { font-size: 1.6rem; letter-spacing: 3px; }
  .about-stats { gap: 10px; }
  .stat-num { font-size: 1.7rem; }
  .footer-logo { height: 52px; }
  .navbar-toggler { margin-right: 4px; }
}


/* =============================================
   SERIES CARDS (Products Page)
   ============================================= */
.series-card {
  background: var(--white);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(10,22,40,0.06);
  border-radius: 4px;
}

.series-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-luxury);
}

.series-card .product-overlay {
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.series-card:hover .product-overlay { opacity: 1; }

/* Color dots */
.color-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.color-dot.color-chrome   { background: linear-gradient(135deg, #e8e8e8 0%, #b0b0b0 100%); }
.color-dot.color-gold     { background: linear-gradient(135deg, #e8c97a 0%, #c9a84c 100%); }
.color-dot.color-black    { background: linear-gradient(135deg, #3a3a3a 0%, #111111 100%); }
.color-dot.color-rose-gold{ background: linear-gradient(135deg, #f4b8a0 0%, #c97c6a 100%); }

/* =============================================
   SUB-PRODUCT CARDS (Series Detail)
   ============================================= */
.sub-product-card {
  background: var(--ivory);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 8px;
  padding: 22px 24px 20px;
  transition: var(--transition);
}

.sub-product-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(201,168,76,0.12);
}

.sub-product-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.color-variant-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(10,22,40,0.06);
  transition: var(--transition);
}

.color-variant-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(201,168,76,0.15);
}

.color-variant-label {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 600;
}

/* Responsive tweaks for sub-product images */
@media (max-width: 576px) {
  .color-variant-card img { height: 110px !important; }
  .sub-product-name { font-size: 1.05rem; }
}


/* =============================================
   LEVEL 2 — SUB-PRODUCT THUMBNAIL CARDS
   ============================================= */
.sub-thumb-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(10,22,40,0.07);
  transition: var(--transition);
  border: 1px solid transparent;
}

.sub-thumb-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-luxury);
  border-color: var(--gold);
}

.sub-thumb-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--ivory);
}

.sub-thumb-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.sub-thumb-card:hover .sub-thumb-img img {
  transform: scale(1.07);
}

.sub-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.82) 0%, transparent 55%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 18px;
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.sub-thumb-card:hover .sub-thumb-overlay { opacity: 1; }

.sub-thumb-body {
  padding: 16px 18px 18px;
}

.sub-thumb-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--primary);
  margin-bottom: 5px;
  line-height: 1.3;
}

.sub-thumb-hint {
  font-size: 0.68rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--slate);
}

/* =============================================
   LEVEL 3 — COLOR FULL CARDS
   ============================================= */
.color-full-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10,22,40,0.07);
  transition: var(--transition);
  border: 1px solid transparent;
}

.color-full-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-luxury);
  border-color: var(--gold);
}

.color-full-img {
  height: 260px;
  overflow: hidden;
  background: var(--ivory);
}

.color-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.color-full-card:hover .color-full-img img { transform: scale(1.06); }

.color-full-body {
  padding: 16px 18px 20px;
}

.color-full-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 600;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 767px) {
  .sub-thumb-img  { height: 170px; }
  .color-full-img { height: 200px; }
  .sub-thumb-name { font-size: 1rem; }
}

@media (max-width: 480px) {
  .sub-thumb-img  { height: 150px; }
  .color-full-img { height: 175px; }
}


/* =============================================
   COLOR POPUP — inner card image height fix
   ============================================= */
#colorPopup .color-full-img {
  height: 200px;
}

#colorPopup .color-full-card {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(10,22,40,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  transition: all 0.3s ease;
}

#colorPopup .color-full-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.15);
}

#colorPopup .color-full-body {
  padding: 12px 14px 14px;
}

/* Popup scroll on small screens */
@media (max-width: 576px) {
  #colorPopup .color-full-img { height: 140px; }
  #colorPopup > div { margin: 10px; width: calc(100% - 20px); }
}
