/* ==========================================================================
   NEW WOOD CRAFTS - LUXURY BRAND DESIGN SYSTEM
   BENGALURU • ARTISAN SOLID WOOD STUDIO
   ========================================================================== */

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

:root {
  /* Color Palette */
  --bg-main: #FBF9F5;
  --bg-surface: #FFFFFF;
  --bg-surface-alt: #F4EFE6;
  --bg-dark: #10141B;
  --bg-dark-surface: #181F2A;
  --bg-dark-card: #1F2937;
  
  --text-primary: #18181B;
  --text-secondary: #52525B;
  --text-muted: #71717A;
  --text-light: #F8FAFC;
  --text-light-muted: #94A3B8;

  /* Brand Accents */
  --brand-blue-deep: #032b4d;
  --brand-blue-primary: #0284c7;
  --brand-blue-vibrant: #0ea5e9;
  --brand-blue-glow: #38bdf8;
  --brand-walnut: #451a03;
  --brand-walnut-light: #78350f;
  --brand-gold: #c5a880;
  --brand-gold-bright: #eab308;
  --brand-gold-glow: rgba(197, 168, 128, 0.25);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Shadows & Depth */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 35px -10px rgba(0, 0, 0, 0.12), 0 10px 15px -5px rgba(0, 0, 0, 0.05);
  --shadow-luxury: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
  --shadow-blue-3d: 0 12px 24px -6px rgba(2, 132, 199, 0.35);

  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-full: 9999px;
  --border-subtle: 1px solid rgba(0, 0, 0, 0.06);
  --border-dark-subtle: 1px solid rgba(255, 255, 255, 0.08);

  /* Transitions */
  --trans-fast: 200ms cubic-bezier(0.16, 1, 0.3, 1);
  --trans-smooth: 350ms cubic-bezier(0.16, 1, 0.3, 1);
  --trans-slow: 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base resets */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  background-color: var(--bg-main);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  letter-spacing: -0.01em;
  font-weight: 700;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all var(--trans-fast);
}

/* ==========================================================================
   PRELOADER - 3-SECOND LUXURY BRAND REVEAL
   ========================================================================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: radial-gradient(circle at center, #131b26 0%, #080d14 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 500ms ease, visibility 500ms ease;
  user-select: none;
}

#preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  text-align: center;
  max-width: 600px;
  padding: 2.5rem;
  animation: preloaderContentFade 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.preloader-brand-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #FFFFFF;
  margin: 0 0 0.75rem 0;
  line-height: 1.15;
  background: linear-gradient(180deg, #FFFFFF 0%, #7DD3FC 35%, #0284C7 75%, #034D75 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 8px 24px rgba(2, 132, 199, 0.45));
  animation: preloaderTitlePulse 3s ease-in-out infinite alternate;
}

.preloader-brand-sub {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--brand-gold);
  text-transform: uppercase;
  margin: 0;
  opacity: 0.9;
}

@keyframes preloaderContentFade {
  0% {
    opacity: 0;
    transform: translateY(15px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes preloaderTitlePulse {
  0% {
    filter: drop-shadow(0 6px 18px rgba(2, 132, 199, 0.35));
    transform: scale(1);
  }
  100% {
    filter: drop-shadow(0 12px 35px rgba(56, 189, 248, 0.65));
    transform: scale(1.02);
  }
}

/* ==========================================================================
   NAVIGATION & 3D BLUE LOGO BRANDING
   ========================================================================== */
.nwc-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.85rem 0;
  background: rgba(12, 16, 23, 0.96) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: padding var(--trans-smooth);
}

.brand-logo-container {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
}

.brand-logo-img {
  height: 44px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  transition: transform var(--trans-smooth);
  filter: drop-shadow(0 2px 8px rgba(2, 132, 199, 0.35));
}

.brand-logo-container:hover .brand-logo-img {
  transform: translateY(-1px) scale(1.02);
}

/* Nav Links */
.nwc-nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #E2E8F0 !important;
  padding: 0.5rem 0.85rem !important;
  letter-spacing: 0.02em;
  white-space: nowrap !important;
  position: relative;
  transition: color var(--trans-fast);
}

.nwc-nav-link:hover,
.nwc-nav-link.active {
  color: #FFFFFF !important;
}

.nwc-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0.85rem;
  right: 0.85rem;
  height: 2px;
  background: linear-gradient(90deg, #0284C7, #EAB308);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--trans-smooth);
}

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

@media (max-width: 991px) {
  .navbar-collapse {
    background: #0e1219;
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-top: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  }
  .nwc-nav-link {
    padding: 0.75rem 0.5rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}

/* Navbar CTA - Flagship Experience Studio */
.btn-nav-consult {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%) !important;
  color: #FFFFFF !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em !important;
  padding: 0.52rem 1.15rem !important;
  border-radius: 50px !important;
  border: 1px solid rgba(125, 211, 252, 0.6) !important;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.45rem !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  transition: all var(--trans-smooth) !important;
}

.btn-nav-consult i {
  color: #FCD34D !important;
  font-size: 0.95rem;
}

.btn-nav-consult:hover {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%) !important;
  color: #FFFFFF !important;
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 6px 22px rgba(2, 132, 199, 0.6) !important;
}

/* ==========================================================================
   BUTTONS & ACCENT ELEMENTS
   ========================================================================== */
.btn-luxury-primary {
  background: linear-gradient(135deg, #0284c7 0%, #034d75 100%);
  color: #FFFFFF !important;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(56, 189, 248, 0.4);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all var(--trans-smooth);
}

.btn-luxury-primary:hover {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(2, 132, 199, 0.45);
}

.btn-luxury-outline {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  color: #FFFFFF !important;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all var(--trans-smooth);
}

.btn-luxury-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-luxury-gold {
  background: linear-gradient(135deg, #c5a880 0%, #9a7b54 100%);
  color: #FFFFFF !important;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(234, 179, 8, 0.3);
  box-shadow: 0 8px 20px rgba(197, 168, 128, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all var(--trans-smooth);
}

.btn-luxury-gold:hover {
  background: linear-gradient(135deg, #d4b890 0%, #c5a880 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(197, 168, 128, 0.45);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-color: var(--bg-dark);
  background-image: linear-gradient(to right, rgba(16, 20, 27, 0.92) 0%, rgba(16, 20, 27, 0.65) 50%, rgba(16, 20, 27, 0.85) 100%),
                    url('../images/hero_luxury_interior.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #FFFFFF;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(2, 132, 199, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.4);
  color: #BAE6FD;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}

.hero-title .text-gold {
  color: var(--brand-gold);
  font-style: italic;
  font-weight: 400;
}

.hero-title .text-blue-glow {
  background: linear-gradient(135deg, #38BDF8 0%, #0284C7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.15rem;
  color: #CBD5E1;
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.hero-stats-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat-item h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
  line-height: 1;
}

.hero-stat-item p {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--text-light-muted);
  text-transform: uppercase;
  margin: 0;
}

/* ==========================================================================
   CATEGORY EXPLORER CARDS
   ========================================================================== */
.section-padding {
  padding: 6rem 0;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brand-blue-primary);
  margin-bottom: 0.6rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto;
}

.category-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: #FFFFFF;
  transition: transform var(--trans-smooth), box-shadow var(--trans-smooth);
}

.category-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1;
}

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 20, 27, 0.1) 0%, rgba(16, 20, 27, 0.88) 100%);
  z-index: 2;
  transition: opacity var(--trans-smooth);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-luxury);
}

.category-card:hover::before {
  transform: scale(1.08);
}

.category-card-content {
  position: relative;
  z-index: 3;
}

.category-card-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 0.4rem;
}

.category-card-title {
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.category-card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: #BAE6FD;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--trans-fast);
}

.category-card:hover .category-card-link {
  gap: 0.75rem;
  color: #FFFFFF;
}

/* ==========================================================================
   PRODUCT CATALOG CARDS (NO PRICING / NO CART)
   ========================================================================== */
.catalog-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 3rem;
}

.catalog-tab-btn {
  background: var(--bg-surface);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--trans-fast);
}

.catalog-tab-btn:hover {
  background: var(--bg-surface-alt);
  color: var(--text-primary);
  border-color: rgba(0, 0, 0, 0.15);
}

.catalog-tab-btn.active {
  background: var(--brand-blue-deep);
  color: #FFFFFF;
  border-color: var(--brand-blue-deep);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.product-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: transform var(--trans-smooth), box-shadow var(--trans-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(2, 132, 199, 0.2);
}

.product-image-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
  background-color: #E2E8F0;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

.product-badge-corner {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(16, 20, 27, 0.85);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 2;
}

.product-material-pill {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(2, 132, 199, 0.9);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
  z-index: 2;
}

.product-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-sub {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 0.35rem;
}

.product-title {
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.product-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-specs-snippet {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-wood-type {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-walnut-light);
}

.btn-inspect-piece {
  background: var(--bg-surface-alt);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text-primary);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-sm);
  transition: all var(--trans-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.product-card:hover .btn-inspect-piece {
  background: var(--brand-blue-primary);
  color: #FFFFFF;
  border-color: var(--brand-blue-primary);
}

/* ==========================================================================
   "OUR MATERIAL PROMISE" SECTION
   ========================================================================== */
.material-promise-section {
  background: linear-gradient(180deg, #10141B 0%, #171F2C 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.material-promise-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.material-quote-box {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--brand-blue-primary);
  border-radius: var(--radius-md);
  padding: 2.25rem 2.5rem;
  margin-bottom: 3.5rem;
  position: relative;
}

.material-quote-text {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.8;
  color: #F1F5F9;
  margin-bottom: 0.75rem;
}

.material-quote-author {
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-gold);
  font-weight: 700;
}

.pillar-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  height: 100%;
  transition: all var(--trans-smooth);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-blue-primary), var(--brand-gold));
  opacity: 0;
  transition: opacity var(--trans-smooth);
}

.pillar-card:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-icon-box {
  width: 58px;
  height: 58px;
  background: rgba(2, 132, 199, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38BDF8;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all var(--trans-smooth);
}

.pillar-card:hover .pillar-icon-box {
  background: var(--brand-blue-primary);
  color: #FFFFFF;
  transform: scale(1.08) rotate(3deg);
}

.pillar-card-title {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
}

.pillar-card-desc {
  font-size: 0.9rem;
  color: #94A3B8;
  line-height: 1.6;
  margin: 0;
}

/* ==========================================================================
   SHOWROOM LOOKBOOK & GALLERY STRIP
   ========================================================================== */
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.lookbook-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 320px;
  box-shadow: var(--shadow-sm);
}

.lookbook-item-large {
  grid-column: span 7;
}

.lookbook-item-small {
  grid-column: span 5;
}

.lookbook-item-full {
  grid-column: span 4;
}

.lookbook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.lookbook-item:hover img {
  transform: scale(1.08);
}

.lookbook-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(16, 20, 27, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #FFFFFF;
  opacity: 0.9;
  transition: opacity var(--trans-fast);
}

.lookbook-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.lookbook-caption {
  font-size: 0.8rem;
  color: #BAE6FD;
  margin: 0;
}

/* ==========================================================================
   TESTIMONIALS & TRUST
   ========================================================================== */
.testimonial-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 2.25rem;
  border: var(--border-subtle);
  box-shadow: var(--shadow-sm);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--trans-smooth), box-shadow var(--trans-smooth);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(197, 168, 128, 0.3);
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-client {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--bg-surface-alt);
  color: var(--brand-blue-deep);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 0.1rem;
}

.testimonial-location {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   VISIT US / CONTACT SECTION & MAP
   ========================================================================== */
.contact-info-card {
  background: linear-gradient(135deg, #10141B 0%, #1B2433 100%);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 2.75rem;
  height: 100%;
  box-shadow: var(--shadow-luxury);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-icon-bubble {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(2, 132, 199, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38BDF8;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 1.05rem;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.contact-detail-text p {
  font-size: 0.88rem;
  color: #94A3B8;
  margin: 0;
  line-height: 1.6;
}

.form-luxury-card {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  padding: 2.75rem;
  box-shadow: var(--shadow-md);
  border: var(--border-subtle);
}

.form-control-luxury {
  background: var(--bg-surface-alt);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1.1rem;
  font-size: 0.92rem;
  color: var(--text-primary);
  transition: all var(--trans-fast);
}

.form-control-luxury:focus {
  background: #FFFFFF;
  border-color: var(--brand-blue-primary);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12);
  outline: none;
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: var(--border-subtle);
  height: 380px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   MODAL - PRODUCT INSPECT DETAILS
   ========================================================================== */
.modal-luxury .modal-content {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.modal-luxury .modal-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.5rem 2rem;
  background: var(--bg-surface-alt);
}

.modal-luxury .modal-body {
  padding: 2rem;
}

.modal-luxury .modal-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.25rem 2rem;
  background: var(--bg-surface-alt);
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  background: #25D366;
  color: #FFFFFF;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: all var(--trans-smooth);
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-4px);
  color: #FFFFFF;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.nwc-footer {
  background: #0B0E14;
  color: #94A3B8;
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 1.25rem;
  max-width: 340px;
}

.footer-heading {
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

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

.footer-links-list li {
  margin-bottom: 0.75rem;
}

.footer-links-list a {
  font-size: 0.88rem;
  color: #94A3B8;
  transition: color var(--trans-fast);
}

.footer-links-list a:hover {
  color: #38BDF8;
  padding-left: 4px;
}

.footer-bottom-bar {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Scroll Animations helper */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), transform 800ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding-top: 8rem;
    padding-bottom: 5rem;
  }
  .lookbook-item-large,
  .lookbook-item-small,
  .lookbook-item-full {
    grid-column: span 12;
    height: 280px;
  }
  .hero-stats-row {
    flex-direction: column;
    gap: 1.5rem;
  }
  .consultation-banner-box {
    padding: 2rem 1.5rem;
  }
  .consultation-banner-img {
    height: 260px;
  }
}

/* ==========================================================================
   CONSULTATION CALLOUT BANNER (HOMETOWN / STUDIO STYLE)
   ========================================================================== */
.consultation-banner-box {
  background: #131720;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  position: relative;
}

.consultation-banner-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.consultation-tag {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #E06D53;
  display: block;
  margin-bottom: 0.75rem;
}

.consultation-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.consultation-desc {
  font-size: 1.05rem;
  color: #94A3B8;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}

.btn-terracotta {
  background: linear-gradient(135deg, #DE5C3E 0%, #B84226 100%);
  color: #FFFFFF !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  border: none;
  box-shadow: 0 8px 20px rgba(222, 92, 62, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all var(--trans-smooth);
}

.btn-terracotta:hover {
  background: linear-gradient(135deg, #E87155 0%, #DE5C3E 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(222, 92, 62, 0.5);
}