/* ============================================
   BRG TriBrahm Build — Premium Dark Gold CSS
   ============================================ */

/* ---- Google Fonts: Premium Luxury System ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;0,900;1,400;1,600;1,700&family=Poppins:wght@300;400;500;600;700&family=Montserrat:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800;900&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

/* ---- Design Tokens ---- */
:root {
  --gold: #C9A54D;
  --gold-light: #E5C97A;
  --gold-dark: #A6863A;
  --gold-muted: rgba(201, 165, 77, 0.1);
  --gold-border: rgba(201, 165, 77, 0.2);
  --bg-primary: #FAF7F2;
  --bg-secondary: #FFFFFF;
  --bg-cream: #FAF7F2;
  --text-primary: #1A1A1A;
  --text-secondary: #6B6B6B;
  --text-muted: #8E8E8E;
  --border-color: #E8E2D9;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(232, 226, 217, 0.5);
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Poppins', sans-serif;
  --ui-font: 'Poppins', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --shadow-gold: 0 10px 30px rgba(201, 165, 77, 0.15);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.05);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.2s ease;
  --nav-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: var(--body-font);
  outline: none;
  border: none;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 3px;
}

/* ---- Selection ---- */
::selection {
  background: var(--gold);
  color: #FFFFFF;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-title span {
  color: var(--gold);
  font-style: italic;
}

.section-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.text-center .section-subtitle {
  margin: 0 auto;
}

.text-center .section-tag {
  justify-content: center;
}

.text-center .section-tag::before {
  display: none;
}

.text-center .section-tag::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #FFFFFF;
  box-shadow: 0 8px 30px rgba(201, 165, 77, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 165, 77, 0.4);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  border-color: var(--gold-light);
  background: var(--gold);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-ghost {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: var(--gold-border);
  color: var(--gold-light);
}

.btn-lg {
  padding: 18px 48px;
  font-size: 1rem;
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.82rem;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* Responsive Grids */
@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.flex {
  display: flex;
}

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

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============================================
   GOLD DIVIDER
   ============================================ */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px 0;
  border-radius: 2px;
}

.text-center .gold-divider {
  margin: 20px auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  width: 120px;
}

/* ============================================
   GLASSMORPHISM CARD
   ============================================ */
.glass-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.glass-card:hover {
  border-color: var(--gold);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-size: cover;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: var(--heading-font);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}

.nav-logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
}

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

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 20px;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #FFFFFF !important;
  font-weight: 700;
  padding: 10px 22px !important;
  box-shadow: 0 4px 15px rgba(201, 165, 77, 0.2);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 165, 77, 0.35);
}

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

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 10;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(250, 247, 242, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
}

.nav-overlay .nav-link {
  font-size: 1.5rem;
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--text-primary);
  padding: 12px 32px;
}

.nav-overlay .nav-link:hover {
  color: var(--gold);
}

.nav-overlay .nav-cta {
  font-size: 1rem !important;
  padding: 14px 40px !important;
  margin-top: 16px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(250, 247, 242, 0.9) 0%,
      rgba(255, 255, 255, 0.7) 50%,
      rgba(250, 247, 242, 0.8) 100%);
}

/* Animated particles canvas */
#hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: var(--nav-height);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  animation: fadeSlideDown 1s ease 0.2s both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-heading {
  font-family: var(--heading-font);
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--text-primary);
  margin-bottom: 8px;
  animation: fadeSlideUp 1s ease 0.4s both;
}

.hero-heading .gold-text {
  color: var(--gold);
  font-style: italic;
  display: block;
}

.hero-tagline {
  font-family: var(--heading-font);
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 24px;
  animation: fadeSlideUp 1s ease 0.5s both;
}

.hero-desc {
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeSlideUp 1s ease 0.6s both;
}

.hero-cta-group {
  animation: fadeSlideUp 1s ease 0.7s both;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeIn 1s ease 1.2s both;
}

.hero-scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--gold-border);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 6px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollBob 2s infinite;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  padding: 0;
  position: relative;
  z-index: 10;
}

.stats-inner {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 50px 60px;
  margin: -60px 24px 0;
  max-width: 1232px;
  margin-left: auto;
  margin-right: auto;
  transform: translateY(-60px);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(20px);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

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

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--gold-border);
}

.stat-number {
  font-family: var(--heading-font);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-suffix {
  color: var(--gold-light);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   PRODUCTS CATEGORIES
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--navy-mid);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.product-card-img {
  /* max-width: 100%;
  max-height: 80%; */
  width: auto;
  height: auto;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 8, 16, 0.95) 0%, rgba(7, 8, 16, 0.3) 40%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.product-card-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  width: fit-content;
}

.product-card-title {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.2;
}

.product-card-desc {
  font-size: 0.82rem;
  color: white;
  line-height: 1.5;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.product-card:hover .product-card-desc {
  opacity: 1;
  transform: translateY(0);
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  transition: gap 0.3s ease;
}

.product-card:hover .product-card-link {
  gap: 12px;
}

/* Featured (wide) card */
.product-card.featured {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

/* ============================================
   FEATURED PRODUCTS SLIDER
   ============================================ */
.slider-section {
  overflow: hidden;
}

.slider-track-wrap {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
  padding-bottom: 16px;
}

.slider-track-wrap::-webkit-scrollbar {
  display: none;
}

.slider-track-wrap:active {
  cursor: grabbing;
}

.slider-track {
  display: flex;
  gap: 24px;
  padding: 20px 0 10px;
  width: max-content;
}

.slide-card {
  scroll-snap-align: center;
  flex-shrink: 0;
  width: 320px;
  background: var(--navy-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

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

.slide-card-img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

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

.slide-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  background: var(--gold);
  border-radius: var(--radius-xl);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slide-card-body {
  padding: 24px;
}

.slide-card-body h3 {
  font-family: var(--heading-font);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.slide-card-body p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 18px;
}

.slide-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slide-card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--gold-muted);
  border-color: var(--gold-border);
  color: var(--gold);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  width: 28px;
  background: var(--gold);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
  background: var(--bg-cream);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  padding: 36px 28px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

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

.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: var(--gold);
  transform: scale(1.1);
}

.why-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   PORTFOLIO / PROJECT SHOWCASE
   ============================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 16px;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.portfolio-item.span-2-col {
  grid-column: span 2;
}

.portfolio-item.span-2-row {
  grid-row: span 2;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.8) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.portfolio-item:hover .portfolio-item-overlay {
  opacity: 1;
}

.portfolio-item-overlay h3 {
  font-family: var(--heading-font);
  font-size: 1.3rem;
  color: white;
  margin-bottom: 6px;
}

.portfolio-item-overlay p {
  font-size: 0.8rem;
  color: var(--gold-light);
}

/* ============================================
   CUSTOM CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  background: var(--bg-secondary);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner .section-title {
  margin-bottom: 16px;
}

.cta-inner .section-subtitle {
  margin: 0 auto 40px;
}

.cta-features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.cta-feature-check {
  width: 20px;
  height: 20px;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--gold);
  flex-shrink: 0;
}

/* ============================================
   ABOUT SECTION (for about page)
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: 24px;
  right: -24px;
  background: var(--gold);
  color: var(--black);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.about-img-badge .num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}

.about-img-badge .label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(180deg, var(--navy-mid) 0%, var(--black) 100%);
  position: relative;
  overflow: hidden;
}

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

.page-hero-title {
  font-family: var(--heading-font);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

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

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

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

.breadcrumb span {
  color: var(--text-muted);
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-xl);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--gold-muted);
  border-color: var(--gold-border);
  color: var(--gold-light);
}

.filter-select {
  display: none;
  width: 100%;
  padding: 12px 20px;
  background: var(--navy-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.9rem;
  cursor: pointer;
  margin-bottom: 24px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23c9a84c' viewBox='0 0 256 256'%3E%3Cpath d='M208 96H48a8 8 0 0 0-5.66 13.66l80 80a8 8 0 0 0 11.32 0l80-80A8 8 0 0 0 208 96Z'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

.filter-select:focus {
  border-color: var(--gold-border);
}

.products-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.product-page-card {
  background: var(--navy-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.product-page-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

.product-page-card-img {
  height: 220px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.product-page-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-page-card-body {
  padding: 20px;
}

.product-page-card-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.product-page-card-body p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 16px;
}

.product-page-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ============================================
   SERVICES PAGE TIMELINE
   ============================================ */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-border), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  margin-bottom: 60px;
  align-items: center;
}

.timeline-content {
  padding: 30px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.timeline-content:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
}

.timeline-item:nth-child(odd) .timeline-content:first-child {
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content:last-child {
  text-align: left;
}

.timeline-item:nth-child(odd) .timeline-content:last-child {
  visibility: hidden;
}

.timeline-item:nth-child(even) .timeline-content:first-child {
  visibility: hidden;
}

.timeline-node {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.timeline-step {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
  font-weight: 700;
  color: var(--black);
}

.timeline-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.timeline-content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Mobile vertical timeline */
.timeline-vertical {
  display: none;
  position: relative;
  padding-left: 40px;
}

.timeline-vertical::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold-border), transparent);
}

.timeline-v-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 30px;
}

.timeline-v-dot {
  position: absolute;
  left: -10px;
  top: 8px;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
}

.timeline-v-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.timeline-v-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================
   PORTFOLIO PAGE GALLERY
   ============================================ */
.portfolio-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.portfolio-tab {
  padding: 10px 26px;
  border-radius: var(--radius-xl);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.portfolio-tab:hover,
.portfolio-tab.active {
  background: var(--gold-muted);
  border-color: var(--gold-border);
  color: var(--gold-light);
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--navy-mid);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 8, 16, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-zoom-icon {
  width: 50px;
  height: 50px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--black);
  transform: scale(0.5);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-zoom-icon {
  transform: scale(1);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--heading-font);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-detail-text strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-detail-text span {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.contact-form-wrap {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(20px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-border);
  background: rgba(201, 168, 76, 0.05);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group select option {
  background: var(--navy-mid);
  color: var(--text-primary);
}

.form-group textarea {
  height: 130px;
  resize: vertical;
}

.map-section {
  margin-top: 60px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  height: 400px;
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   PRICING CALCULATOR
   ============================================ */
.calc-section {
  background: linear-gradient(180deg, transparent 0%, var(--navy) 30%, var(--navy) 70%, transparent 100%);
}

.calc-card {
  background: var(--navy-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 50px;
  max-width: 800px;
  margin: 0 auto;
}

.calc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.calc-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.calc-group select,
.calc-group input[type="range"] {
  width: 100%;
}

.calc-group select {
  padding: 12px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 0.9rem;
  appearance: none;
  cursor: pointer;
}

.calc-group select:focus {
  border-color: var(--gold-border);
}

.range-wrap {
  position: relative;
}

.range-input {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: var(--glass-border);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}

.range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.5);
}

.range-value {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.calc-result {
  margin-top: 32px;
  padding: 24px;
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  text-align: center;
}

.calc-result-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.calc-result-price {
  font-family: var(--heading-font);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.calc-result-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.whatsapp-btn {
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  font-size: 1.4rem;
  color: white;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
  background: var(--navy-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 8px 16px;
  font-size: 0.8rem;
  color: var(--text-primary);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-fast);
  pointer-events: none;
  position: absolute;
  right: 72px;
  bottom: 12px;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Sticky bottom mobile bar */
.sticky-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-color);
  padding: 12px 20px;
  gap: 12px;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.05);
}

.sticky-cta-bar .btn {
  flex: 1;
  text-align: center;
  justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--bg-cream);
  border-top: 1px solid var(--border-color);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 20px 0 28px;
  max-width: 300px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-btn {
  position: relative;
  width: 44px;
  height: 44px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-decoration: none;
}

.social-btn:hover {
  transform: translateY(-5px) scale(1.1);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  box-shadow: 0 10px 25px rgba(201, 168, 76, 0.4);
}

/* Tooltip style */
.social-btn[data-tooltip]::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  padding: 6px 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-btn[data-tooltip]::after {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  border: 6px solid transparent;
  border-top-color: var(--gold);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.social-btn:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-15px);
}

.social-btn:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-3px);
}

.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a::before {
  content: '›';
  color: var(--gold);
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeSlideLeft {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeSlideRight {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

@keyframes scrollBob {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

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

  100% {
    background-position: 200% center;
  }
}

@keyframes goldGlow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.2);
  }

  50% {
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.5);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* Scroll-triggered reveals */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.from-left {
  transform: translateX(-40px);
}

.reveal.from-right {
  transform: translateX(40px);
}

.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger children */
.stagger-children>* {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-children.visible>*:nth-child(1) {
  transition-delay: 0.0s;
}

.stagger-children.visible>*:nth-child(2) {
  transition-delay: 0.1s;
}

.stagger-children.visible>*:nth-child(3) {
  transition-delay: 0.2s;
}

.stagger-children.visible>*:nth-child(4) {
  transition-delay: 0.3s;
}

.stagger-children.visible>*:nth-child(5) {
  transition-delay: 0.4s;
}

.stagger-children.visible>*:nth-child(6) {
  transition-delay: 0.5s;
}

.stagger-children.visible>* {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   CUSTOM CURSOR (desktop only)
   ============================================ */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s;
  mix-blend-mode: difference;
}

.custom-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease;
}

/* ============================================
   SECTION BACKGROUNDS
   ============================================ */
.bg-dark {
  background: var(--black);
}

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

.bg-navy-mid {
  background: var(--bg-secondary);
}

/* Gold gradient decorative line */
.section-header-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-border) 30%, var(--gold-border) 70%, transparent 100%);
  margin-bottom: 60px;
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: #FFFFFF;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s;
}

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

.preloader-logo {
  font-family: var(--heading-font);
  font-size: 2rem;
  color: var(--text-primary);
  text-align: center;
  padding: 0 20px;
}

.preloader-logo span {
  color: var(--gold);
  font-style: italic;
}

.preloader-bar-wrap {
  width: 200px;
  height: 2px;
  background: var(--glass-border);
  border-radius: 1px;
  overflow: hidden;
}

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

@keyframes preload {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* Page hero: always show content immediately */
.page-hero .section-tag,
.page-hero .page-hero-title,
.page-hero .section-subtitle,
.page-hero .breadcrumb,
.page-hero .badge-row {
  opacity: 1 !important;
  transform: none !important;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 90px;
  left: 24px;
  width: 44px;
  height: 44px;
  background: var(--glass-bg);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 997;
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold-muted);
  transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* ---- Tablet (max 1024px) ---- */
@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card.featured {
    grid-column: span 2;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .portfolio-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before {
    left: 24px;
  }

  .timeline {
    display: none;
  }

  .timeline-vertical {
    display: block;
  }

  .stats-inner {
    padding: 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-img-badge {
    right: 16px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- Mobile (max 768px) ---- */
@media (max-width: 768px) {
  :root {
    --nav-height: 68px;
  }

  .section {
    padding: 70px 0;
  }

  /* Nav */
  .nav-menu {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Hero */
  .hero {
    height: 88vh;
    min-height: 540px;
  }

  .hero-heading {
    font-size: clamp(2.2rem, 9vw, 3.5rem);
  }

  .hero-desc {
    font-size: 0.9rem;
  }

  /* Stats */
  .stats-inner {
    padding: 30px 20px;
    margin: -40px 16px 0;
    transform: translateY(-40px);
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stat-item:nth-child(1)::after,
  .stat-item:nth-child(3)::after {
    display: none;
  }

  .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--gold-border);
    padding-bottom: 30px;
  }

  .stat-item:nth-child(1) {
    border-bottom: 1px solid var(--gold-border);
    padding-bottom: 30px;
  }

  /* Products grid */
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card.featured {
    grid-column: span 1;
  }

  .product-card {
    aspect-ratio: 4/3;
  }

  .product-card-desc {
    opacity: 1;
    transform: none;
  }

  /* Slider */
  .slide-card {
    width: 280px;
  }

  /* Why */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Portfolio */
  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .portfolio-item.span-2-col {
    grid-column: span 1;
  }

  .portfolio-grid .portfolio-item-overlay {
    opacity: 1;
  }

  /* CTA */
  .cta-inner {
    padding: 50px 24px;
  }

  .cta-inner .btn-group {
    flex-direction: column;
  }

  .cta-inner .btn {
    width: 100%;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Gallery */
  .portfolio-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-item-overlay {
    opacity: 1;
  }

  /* Products page */
  .products-page-grid {
    grid-template-columns: 1fr;
  }

  .filter-bar {
    display: none;
  }

  .filter-select {
    display: block;
  }

  /* Contact */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Calc */
  .calc-card {
    padding: 28px 20px;
  }

  .calc-row {
    grid-template-columns: 1fr;
  }

  /* Custom cursor: disable on touch */
  .custom-cursor,
  .custom-cursor-ring {
    display: none;
  }

  /* Sticky CTA bar */
  .sticky-cta-bar {
    display: flex;
  }

  .whatsapp-float {
    bottom: 90px;
  }

  .back-to-top {
    bottom: 145px;
  }

  /* Disable heavy parallax */
  .hero-bg img {
    transform: none !important;
  }

  /* Section title */
  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  /* Form */
  .contact-form-wrap {
    padding: 24px 16px;
  }
}

/* ---- Small mobile (max 480px) ---- */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-heading {
    font-size: 2.2rem;
  }

  .stats-inner {
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .btn-lg {
    padding: 14px 28px;
  }

  .slide-card {
    width: 260px;
  }

  .portfolio-tabs {
    gap: 6px;
  }

  .portfolio-tab {
    padding: 8px 16px;
    font-size: 0.78rem;
  }

  .nav-logo-name {
    font-size: 0.95rem;
  }

  .preloader-logo {
    font-size: 1.5rem;
  }

  .preloader-bar-wrap {
    width: 150px;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {

  .navbar,
  .whatsapp-float,
  .sticky-cta-bar,
  .back-to-top,
  .preloader {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal,
  .stagger-children>* {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================
   ✨ PREMIUM ENHANCEMENTS — Floating Animations, Form, Fonts
   ========================================================== */

/* ---- Button font upgrade ---- */
.btn {
  font-family: var(--ui-font);
}

/* ---- Heading font system ---- */
h1,
h2,
h3,
h4,
.section-title,
.page-hero-title,
.hero-heading,
.nav-logo-name,
.preloader-logo,
.slide-card-body h3,
.stat-number,
.why-card h3,
.form-header h2,
.testimonial-author strong {
  font-family: var(--heading-font);
}

/* ---- Body font system ---- */
body,
p,
li,
input,
textarea,
select,
label {
  font-family: var(--body-font);
}

/* ============================================
   FLOATING ANIMATIONS (Horizontal Float)
   ============================================ */
@keyframes floatX {
  0% {
    transform: translateX(0px) translateY(0px);
  }

  25% {
    transform: translateX(12px) translateY(-4px);
  }

  50% {
    transform: translateX(0px) translateY(-8px);
  }

  75% {
    transform: translateX(-12px) translateY(-4px);
  }

  100% {
    transform: translateX(0px) translateY(0px);
  }
}

@keyframes floatXSlow {
  0% {
    transform: translateX(0px) translateY(0px);
  }

  33% {
    transform: translateX(18px) translateY(-6px);
  }

  66% {
    transform: translateX(-10px) translateY(-3px);
  }

  100% {
    transform: translateX(0px) translateY(0px);
  }
}

@keyframes floatXSubtle {
  0% {
    transform: translateX(0px);
  }

  50% {
    transform: translateX(8px);
  }

  100% {
    transform: translateX(0px);
  }
}

@keyframes floatXReverse {
  0% {
    transform: translateX(0px) translateY(0px);
  }

  50% {
    transform: translateX(-14px) translateY(-5px);
  }

  100% {
    transform: translateX(0px) translateY(0px);
  }
}

@keyframes floatDepth {
  0% {
    transform: translateX(0px) scale(1);
  }

  50% {
    transform: translateX(10px) scale(1.02);
  }

  100% {
    transform: translateX(0px) scale(1);
  }
}

/* Float utility classes */
.float-x {
  animation: floatX 8s ease-in-out infinite;
}

.float-x-slow {
  animation: floatXSlow 12s ease-in-out infinite;
}

.float-x-reverse {
  animation: floatXReverse 10s ease-in-out infinite;
}

.float-x-subtle {
  animation: floatXSubtle 6s ease-in-out infinite;
}

.float-depth {
  animation: floatDepth 10s ease-in-out infinite;
}

.float-delay-1 {
  animation-delay: -2s;
}

.float-delay-2 {
  animation-delay: -4s;
}

.float-delay-3 {
  animation-delay: -6s;
}

/* Parallax depth wrapper — subtler parallax on children */
.parallax-layer-1 {
  will-change: transform;
}

.parallax-layer-2 {
  will-change: transform;
}

/* Disable floating on mobile to save performance */
@media (max-width: 768px) {

  .float-x,
  .float-x-slow,
  .float-x-reverse,
  .float-x-subtle,
  .float-depth {
    animation: none;
  }
}

/* ============================================
   SCROLL REVEAL — Enhanced
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children */
.stagger-children>* {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-children.visible>*:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: 0.05s;
}

.stagger-children.visible>*:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: 0.15s;
}

.stagger-children.visible>*:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: 0.25s;
}

.stagger-children.visible>*:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: 0.35s;
}

.stagger-children.visible>*:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: 0.45s;
}

.stagger-children.visible>*:nth-child(6) {
  opacity: 1;
  transform: none;
  transition-delay: 0.55s;
}

/* Hover zoom on images — smooth premium feel */
.hover-zoom {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.hover-zoom img {
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.hover-zoom:hover img {
  transform: scale(1.07);
}

/* Tap feedback for mobile */
@media (max-width: 768px) {

  .product-card:active,
  .slide-card:active,
  .why-card:active {
    transform: scale(0.97);
    transition: transform 0.15s ease;
  }
}

/* ============================================
   PREMIUM PRODUCT SHOWCASE
   ============================================ */
.showcase-section {
  padding: 100px 0 120px;
  background: var(--black);
  overflow: hidden;
  position: relative;
}

/* Background floating decorative orbs */
.showcase-section::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--gold-muted) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 0;
  animation: floatX 20s ease-in-out infinite alternate;
}

.showcase-row {
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
}

.showcase-row:last-child {
  margin-bottom: 0;
}

.showcase-heading {
  font-family: var(--heading-font);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 24px;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}

.showcase-heading.text-left {
  text-align: left;
}

.showcase-heading.text-right {
  text-align: right;
}

.showcase-heading.text-center {
  text-align: center;
}

/* Marquee / Scroll logic */
.marquee-wrap {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  padding: 20px 0;
}

.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
  will-change: transform;
}

.marquee-track img {
  width: 280px;
  height: 380px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  filter: brightness(1);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.6s ease;
  cursor: pointer;
}

.marquee-track img:hover {
  filter: grayscale(0%) brightness(1.1);
  transform: scale(1.05) translateY(-10px);
  box-shadow: var(--shadow-gold);
  z-index: 10;
}

/* Animations */
.left-to-right {
  animation: marqueeLeftRight 45s linear infinite;
}

.right-to-left {
  animation: marqueeRightLeft 45s linear infinite;
}

@keyframes marqueeLeftRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes marqueeRightLeft {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}


/* Sculptures - Floating Layout */
.sculpture-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.sculpture-gallery img {
  width: 320px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  will-change: transform;
  transition: var(--transition);
}

.sculpture-gallery img:hover {
  box-shadow: var(--shadow-gold);
}

.float-1 {
  animation: floatSculpture 7s ease-in-out infinite;
}

.float-3 {
  animation: floatSculpture 6s ease-in-out infinite 2s;
}

/* Scale specific keyframe for float-2 to prevent scale override */
@keyframes floatSculptureMiddle {
  0% {
    transform: translateY(0) scale(1.1) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) scale(1.13) rotate(1deg);
  }

  100% {
    transform: translateY(0) scale(1.1) rotate(0deg);
  }
}

.float-2 {
  animation: floatSculptureMiddle 8s ease-in-out infinite 1s;
  box-shadow: var(--shadow-gold);
  z-index: 2;
}

@keyframes floatSculpture {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) scale(1.03) rotate(-1deg);
  }

  100% {
    transform: translateY(0) scale(1) rotate(0deg);
  }
}

/* Planters - Parallax Float */
.parallax-wrap {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

.parallax-track {
  display: flex;
  gap: 40px;
  animation: parallaxSway 25s ease-in-out infinite alternate;
  will-change: transform;
}

.parallax-track img {
  width: 350px;
  height: 450px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.5s ease;
}

.parallax-track img:hover {
  transform: translateY(-15px) scale(1.05);
  border-color: var(--gold-border);
}

@keyframes parallaxSway {
  0% {
    transform: translateX(5%) translateY(10px);
  }

  100% {
    transform: translateX(-5%) translateY(-10px);
  }
}

@media (max-width: 768px) {
  .showcase-heading {
    font-size: 2rem;
    text-align: center !important;
  }

  .showcase-row {
    margin-bottom: 40px;
  }

  .marquee-track img,
  .parallax-track img {
    width: 260px;
    height: 340px;
  }

  .sculpture-gallery img {
    width: 250px;
  }

  .float-2 {
    transform: scale(1);
    animation: floatSculpture 8s ease-in-out infinite 1s;
  }

  .left-to-right,
  .right-to-left {
    animation-duration: 25s;
  }
}

/* ============================================
   PREMIUM QUOTE FORM — Glassmorphism
   ============================================ */
.quote-form-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.quote-form-section::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.quote-form-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.quote-form-box {
  max-width: 900px;
  margin: 0 auto;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 28px;
  padding: 56px 60px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
}

.quote-form-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
  border-radius: 28px 28px 0 0;
}

.quote-form-header {
  text-align: center;
  margin-bottom: 48px;
}

.quote-form-header .section-tag {
  justify-content: center;
  margin-bottom: 14px;
}

.quote-form-header .section-tag::before {
  display: none;
}

.quote-form-header .section-tag::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
  margin-left: 8px;
}

.quote-form-title {
  font-family: var(--heading-font);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 12px;
}

.quote-form-title span {
  color: var(--gold);
  font-style: italic;
}

.quote-form-subtitle {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Form grid layout */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.quote-grid .col-full {
  grid-column: 1 / -1;
}

/* Floating label group */
.fl-group {
  position: relative;
}

.fl-group input,
.fl-group textarea,
.fl-group select {
  width: 100%;
  background: var(--bg-cream);
  border: 1.5px solid var(--border-color);
  border-radius: 14px;
  padding: 20px 18px 8px;
  color: var(--text-primary);
  font-family: var(--body-font);
  font-size: 0.95rem;
  font-weight: 400;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.fl-group textarea {
  resize: vertical;
  min-height: 120px;
  padding-top: 24px;
}

.fl-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a84c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.fl-group input:focus,
.fl-group textarea:focus,
.fl-group select:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12), 0 4px 20px rgba(0, 0, 0, 0.2);
}

.fl-group input::placeholder,
.fl-group textarea::placeholder {
  color: transparent;
}

/* Floating label */
.fl-label {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: left top;
  white-space: nowrap;
}

/* For textarea, label positions at top */
.fl-group.is-textarea .fl-label {
  top: 22px;
  transform: none;
}

/* Active / filled state */
.fl-group input:focus~.fl-label,
.fl-group input:not(:placeholder-shown)~.fl-label,
.fl-group textarea:focus~.fl-label,
.fl-group textarea:not(:placeholder-shown)~.fl-label,
.fl-group select:focus~.fl-label,
.fl-group.is-select.has-value .fl-label {
  top: 9px;
  transform: translateY(0) scale(0.78);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.fl-group.is-textarea input:focus~.fl-label,
.fl-group.is-textarea textarea:focus~.fl-label,
.fl-group.is-textarea textarea:not(:placeholder-shown)~.fl-label {
  top: 6px;
  transform: scale(0.78);
}

/* Required star */
.fl-required {
  color: var(--gold-light);
  font-size: 0.7rem;
  vertical-align: super;
  margin-left: 2px;
}

/* File upload custom */
.file-upload-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.file-upload-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-cream);
  border: 1.5px dashed var(--gold-border);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.file-upload-label:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.06);
  color: var(--gold-light);
}

.file-upload-label svg {
  flex-shrink: 0;
  color: var(--gold);
}

.file-upload-name {
  font-size: 0.8rem;
  color: var(--gold-light);
  padding: 6px 12px;
  background: rgba(201, 168, 76, 0.08);
  border-radius: 8px;
  display: none;
  border: 1px solid var(--gold-border);
}

.file-upload-name.show {
  display: block;
}

.file-preview-wrap {
  margin-top: 10px;
  display: none;
}

.file-preview-wrap.show {
  display: block;
}

.file-preview-img {
  max-height: 160px;
  width: 100%;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--gold-border);
  background: rgba(0, 0, 0, 0.3);
}

/* Quote submit button */
.quote-submit-btn {
  width: 100%;
  padding: 20px 40px;
  font-family: var(--ui-font);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #c9a84c 0%, #f0d785 40%, #c9a84c 60%, #8b6914 100%);
  background-size: 200% auto;
  color: var(--black);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background-position 0.5s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4), 0 0 0 1px rgba(201, 168, 76, 0.2);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.quote-submit-btn:hover {
  background-position: right center;
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(201, 168, 76, 0.55), 0 0 0 1px rgba(201, 168, 76, 0.3);
}

.quote-submit-btn:active {
  transform: translateY(-1px);
}

.quote-submit-btn svg {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.quote-submit-btn:hover svg {
  transform: translateX(4px);
}

/* WhatsApp icon in button */
.wa-btn-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Submit note */
.submit-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ============================================
   SUCCESS OVERLAY ANIMATION
   ============================================ */
.quote-success-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg-cream);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.quote-success-overlay.show {
  opacity: 1;
  visibility: visible;
}

.success-checkmark {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  animation: bounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  box-shadow: 0 0 50px rgba(201, 168, 76, 0.5);
}

@keyframes bounceIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.15);
    opacity: 1;
  }

  100% {
    transform: scale(1);
  }
}

.success-title {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  animation: fadeSlideUp 0.6s ease 0.3s both;
}

.success-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 400px;
  line-height: 1.7;
  animation: fadeSlideUp 0.6s ease 0.45s both;
}

.success-wa-animation {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  border-radius: 50px;
  color: #25d366;
  font-family: var(--ui-font);
  font-weight: 600;
  font-size: 0.95rem;
  animation: fadeSlideUp 0.6s ease 0.6s both;
}

.wa-pulse-dot {
  width: 10px;
  height: 10px;
  background: #25d366;
  border-radius: 50%;
  animation: pulse 1s infinite;
}

/* ============================================
   LOADING SPINNER
   ============================================ */
.quote-loading {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 40, 0.85);
  border-radius: 28px;
  z-index: 10;
  backdrop-filter: blur(8px);
  justify-content: center;
}

.quote-loading.show {
  display: flex;
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(201, 168, 76, 0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-text {
  font-family: var(--ui-font);
  font-size: 0.9rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ============================================
   FORM VALIDATION STATES
   ============================================ */
.fl-group.has-error input,
.fl-group.has-error textarea,
.fl-group.has-error select {
  border-color: #ff6b6b;
  background: rgba(255, 107, 107, 0.05);
}

.fl-group.has-error .fl-label {
  color: #ff6b6b;
}

.field-error {
  font-size: 0.75rem;
  color: #ff6b6b;
  margin-top: 5px;
  padding-left: 4px;
  display: none;
}

.fl-group.has-error .field-error {
  display: block;
}

.fl-group.is-valid input,
.fl-group.is-valid textarea,
.fl-group.is-valid select {
  border-color: rgba(37, 211, 102, 0.4);
}

/* ============================================
   RESPONSIVE — Quote Form
   ============================================ */
@media (max-width: 768px) {
  .quote-form-box {
    padding: 36px 24px;
    border-radius: 20px;
    margin: 0 8px;
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  .quote-grid .col-full {
    grid-column: 1;
  }

  .quote-form-title {
    font-size: 1.8rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .quote-form-box {
    padding: 48px 40px;
  }
}

/* ============================================
   SHIMMER GOLD TEXT — enhanced
   ============================================ */
.shimmer-text {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold), var(--gold-dark));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

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

  to {
    background-position: 200% center;
  }
}

/* ============================================
   HERO FLOATING DECORATIVE ELEMENTS
   ============================================ */
.hero-float-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(60px);
  opacity: 0.15;
}

.hero-float-orb-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: 20%;
  right: 10%;
  animation: floatXSlow 14s ease-in-out infinite;
}

.hero-float-orb-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #4a6fa1 0%, transparent 70%);
  bottom: 25%;
  left: 5%;
  opacity: 0.1;
}

/* ============================================
   DOWNLOAD CATALOGUE SECTION
   ============================================ */
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.catalogue-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.catalogue-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.3) 0%, rgba(0, 0, 0, 0) 50%, rgba(201, 168, 76, 0.1) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.catalogue-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  background: var(--bg-secondary);
  border-color: var(--gold);
}

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

.catalogue-card-content {
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  flex-grow: 1;
}

.catalogue-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 24px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.catalogue-card:hover .catalogue-icon-wrap {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(201, 168, 76, 0.15);
}

.catalogue-body h3 {
  font-family: var(--heading-font);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.catalogue-body p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.catalogue-meta {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.catalogue-meta::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

.catalogue-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
}

.catalogue-actions .btn {
  flex: 1;
  padding: 10px 0;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.btn-download-icon {
  transition: transform 0.3s ease;
}

.catalogue-actions .btn-primary:hover .btn-download-icon {
  transform: translateY(2px);
}

.catalogue-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(201, 168, 76, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.4);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(201, 168, 76, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(201, 168, 76, 0);
  }
}

@media (max-width: 1024px) {
  .catalogue-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .catalogue-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   WHATSAPP CUSTOM POPUP
   ============================================ */
.wa-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  padding: 20px;
}

.wa-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.wa-popup-content {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 500px;
  padding: 32px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.4s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.wa-popup-overlay.active .wa-popup-content {
  transform: translateY(0);
}

.wa-popup-header {
  text-align: center;
  margin-bottom: 24px;
}

.wa-popup-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 12px;
  animation: float 3s ease-in-out infinite;
}

.wa-popup-header h3 {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  color: var(--gold);
}

.wa-popup-body {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.wa-popup-body p {
  margin-bottom: 16px;
  line-height: 1.6;
}

.wa-popup-img-wrap {
  margin-top: 16px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gold-border);
  max-height: 200px;
}

.wa-popup-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

.wa-instruction {
  background: var(--gold-muted);
  border-left: 4px solid var(--gold);
  padding: 12px 16px;
  text-align: left;
  font-size: 0.9rem;
  color: var(--text-primary);
  border-radius: 4px;
}

.wa-popup-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wa-popup-footer .btn {
  width: 100%;
}

/* Redesign WhatsApp Button in Popup */
.btn-whatsapp {
  background: #25d366 !important;
  color: white !important;
  border: none !important;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3) !important;
}

.btn-whatsapp:hover {
  background: #20bd5c !important;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4) !important;
}

/* Loading state inside popup */
.wa-popup-loader {
  position: absolute;
  inset: 0;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  gap: 20px;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--gold-muted);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Improved Image Preview styles */
.file-preview-wrap {
  position: relative;
  margin-top: 15px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px dashed var(--gold-border);
  display: none;
}

.file-preview-img {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  display: block;
}

.remove-preview {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 0, 0, 0.7);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  z-index: 5;
  transition: background 0.3s;
}

.remove-preview:hover {
  background: rgba(255, 0, 0, 1);
}