/* ==========================================================================
   RAJESH FRAMING - MASTER STYLESHEET
   Brand Direction: Premium, Elegant, Minimal, Real-world Framing & Printing Brand
   Palette: #111111 (Deep Black), #F5F1E8 (Warm Cream), #C99A3D (Elegant Gold Accent)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700&display=swap');

:root {
  /* Brand Colors */
  --primary-black: #111111;
  --secondary-cream: #F5F1E8;
  --cream-light: #FAF7F2;
  --cream-border: #E8E2D5;
  --cream-100: #F5F1E8;
  --accent-gold: #C99A3D;
  --accent-gold-hover: #B5872E;
  --accent-gold-subtle: rgba(201, 154, 61, 0.1);
  --accent-gold-border: rgba(201, 154, 61, 0.25);
  --gold-400: #C99A3D;
  --gold-500: #B5872E;
  --gold-600: #9E7422;
  --charcoal-900: #111111;
  --charcoal-800: #1E2024;
  --charcoal-700: #2D3139;

  /* Backgrounds & Neutrals */
  --bg-white: #FFFFFF;
  --bg-offwhite: #FAFAFA;
  --bg-subtle: #F6F6F4;
  --bg-dark: #111111;

  /* Typography Colors (High Contrast & Legibility) */
  --text-primary: #111111;
  --text-secondary: #555555;
  --text-muted: #666666;
  --text-white: #FFFFFF;

  /* Accents */
  --whatsapp: #25D366;
  --whatsapp-hover: #1EBE5D;
  --whatsapp-glow: rgba(37, 211, 102, 0.3);
  --border-light: rgba(17, 17, 17, 0.08);
  --border-subtle: rgba(17, 17, 17, 0.05);

  /* Fonts */
  --font-heading: 'DM Sans', 'Poppins', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.03);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 26px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 16px 44px rgba(0, 0, 0, 0.09);
  --shadow-gold: 0 8px 24px rgba(201, 154, 61, 0.25);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.55s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-max: 1280px;
  --nav-height: 84px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-white);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
  color: inherit;
}

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

ul, ol {
  list-style: none;
}

/* --- Container & Layout Helpers --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}

.section {
  padding-top: 72px;
  padding-bottom: 72px;
  position: relative;
}

.section-sm {
  padding-top: 48px;
  padding-bottom: 48px;
}

/* Tighten spacing between internal page header and following section */
.page-header-banner + .section,
.about-hero-section + .section,
.section-sm + .section {
  padding-top: 56px;
}

.page-header-grid {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 40px !important;
}

.page-header-content {
  flex: 1 1 0% !important;
  min-width: 0 !important;
  max-width: 680px !important;
}

.page-header-visual {
  flex-shrink: 0 !important;
  width: 320px !important;
  max-width: 38% !important;
  position: relative !important;
}

.page-header-img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4 / 3 !important;
  object-fit: cover !important;
  border-radius: 20px !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.12), 0 4px 12px -2px rgba(0, 0, 0, 0.06) !important;
  display: block !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease !important;
}

.page-header-visual:hover .page-header-img {
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 42px -10px rgba(0, 0, 0, 0.16) !important;
}

@media (max-width: 900px) {
  .page-header-grid {
    gap: 28px !important;
  }
  .page-header-visual {
    width: 250px !important;
  }
}

@media (max-width: 720px) {
  .page-header-grid {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 24px !important;
  }
  .page-header-visual {
    width: 100% !important;
    max-width: 340px !important;
  }
}

.section-cream {
  background-color: var(--secondary-cream);
}

.section-subtle {
  background-color: var(--bg-subtle);
}

.section-dark {
  background-color: var(--primary-black);
  color: var(--text-white);
}

/* --- Section Headers --- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 52px;
}

.section-header.text-left {
  text-align: left;
  margin-left: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.625rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.section-dark .section-title {
  color: #FFFFFF;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.section-dark .section-subtitle {
  color: #A0A5B0;
}

/* --- Top Announcement Bar (Removed) --- */
.topbar {
  display: none !important;
}

/* --- Sticky Modern Navbar --- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 154, 61, 0.18);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.07);
  border-bottom-color: rgba(201, 154, 61, 0.28);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  transition: height var(--transition-normal);
}

.site-header.scrolled .navbar {
  height: 72px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-icon-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 59, 115, 0.18));
  transition: transform var(--transition-fast);
}

.brand-logo:hover .brand-logo-icon-img {
  transform: scale(1.08) rotate(-2deg);
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #181920 0%, #0A0B0E 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F58220;
  border: 1px solid rgba(245, 130, 32, 0.35);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.brand-logo:hover .brand-icon {
  transform: scale(1.05) rotate(-2deg);
  border-color: #F58220;
  box-shadow: 0 6px 18px rgba(245, 130, 32, 0.25);
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #003B73;
  line-height: 1.1;
}

.brand-name span {
  color: #F58220;
}

.brand-subtitle {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--text-muted);
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-logo-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(245, 130, 32, 0.3));
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: #333333;
  position: relative;
  padding: 8px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent-gold);
  transition: width var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-black);
}

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

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Hamburger Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--primary-black);
  border-radius: var(--radius-sm);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 340px;
  height: 100vh;
  background-color: var(--bg-white);
  z-index: 10000;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  transition: right var(--transition-normal);
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(17, 17, 17, 0.4);
  backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.drawer-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--primary-black);
  font-size: 1.5rem;
  line-height: 1;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.drawer-nav .nav-link {
  font-size: 1.125rem;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.drawer-contact {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.875rem;
}

/* ==========================================================================
   LUXURY HERO SECTION (Inspired by Reference Composition)
   - Large rounded container (30px radius)
   - Dark Obsidian/Charcoal backdrop with warm gold ambient glow
   - Strong typographic hierarchy on the left
   - 3D Layered Product Stage on the right (Glass frame, Plastic frame, Drinkware, Folder, Mug)
   - Resilient visibility: opacity: 1 and visibility: visible
   ========================================================================== */
.hero-wrapper-section {
  position: relative;
  padding: 18px 0 36px;
  background-color: var(--bg-white);
}

.hero-outer-container {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-card-container {
  position: relative;
  background-color: #0C0D12;
  background-image: 
    linear-gradient(90deg, rgba(8, 9, 13, 0.94) 0%, rgba(10, 12, 17, 0.86) 46%, rgba(8, 9, 14, 0.48) 100%),
    radial-gradient(circle at 86% 22%, rgba(201, 154, 61, 0.22) 0%, transparent 55%),
    radial-gradient(circle at 14% 88%, rgba(201, 154, 61, 0.15) 0%, transparent 50%),
    url('../assets/images/hero_bg_luxury.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  border-radius: 30px;
  border: 1px solid rgba(201, 154, 61, 0.28);
  box-shadow: 0 32px 85px -15px rgba(0, 0, 0, 0.72), 0 0 50px -10px rgba(201, 154, 61, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  padding: 68px 60px 60px;
  overflow: hidden;
}

/* Ambient Radial Glows in Background */
.hero-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.hero-glow-1 {
  right: 6%;
  top: 15%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(201, 154, 61, 0.17) 0%, rgba(201, 154, 61, 0.03) 55%, transparent 70%);
}

.hero-glow-2 {
  left: 3%;
  bottom: 0%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(245, 241, 232, 0.05) 0%, transparent 70%);
}

.hero-editorial-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 1.15fr;
  align-items: center;
  gap: 56px;
}

/* Left Column: Typography */
.hero-copy-col {
  max-width: 580px;
}

.hero-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 154, 61, 0.12);
  color: #E5B558;
  border: 1px solid rgba(201, 154, 61, 0.28);
  border-radius: 9999px;
  padding: 6px 14px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
}

.hero-pill-badge svg {
  color: #E5B558;
  flex-shrink: 0;
}

.hero-luxury-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 22px;
}

.hero-mobile-br {
  display: none;
}

.hero-title-accent {
  display: block;
  background: linear-gradient(135deg, #FFFFFF 40%, #E0BA6A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-luxury-desc {
  font-size: 1.125rem;
  color: #B2B7C4;
  line-height: 1.68;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-luxury-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-hero-primary {
  background: #FFFFFF;
  color: #111111;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(255, 255, 255, 0.15);
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-hero-primary:hover {
  background: #F5F1E8;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.07);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
  background: rgba(201, 154, 61, 0.18);
  border-color: rgba(201, 154, 61, 0.5);
  color: #E5B558;
  transform: translateY(-2px);
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #9298A6;
}

.hero-trust-pill svg {
  color: var(--accent-gold);
}

/* Right Column: 3D Layered Product Stage */
.hero-visual-stage {
  position: relative;
  width: 100%;
  min-height: 490px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-scene-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 480px;
}

/* Common Layer Card Styling */
.hero-layer-card {
  position: absolute;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
  will-change: transform;
}

.layer-card-inner {
  background: rgba(19, 21, 28, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 10px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.65);
}

.layer-img-wrap {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.layer-img {
  display: block;
  width: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hero-layer-card:hover .layer-img {
  transform: scale(1.04);
}

.layer-card-caption {
  padding: 8px 4px 2px;
}

.layer-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-gold);
  margin-bottom: 2px;
}

.layer-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: #FFFFFF;
  display: block;
}

/* Specific Layer Positions & Visual Depths */

/* Layer 1: Centerpiece / Anchor (Glass Photo Frame) */
.layer-main-anchor {
  width: 320px;
  left: 48%;
  top: 48%;
  transform: translate(-50%, -50%) rotate(-2.5deg);
  z-index: 5;
}

.layer-main-anchor .layer-card-inner {
  background: rgba(22, 24, 33, 0.95);
  border: 1px solid rgba(201, 154, 61, 0.35);
  box-shadow: 0 32px 64px -10px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 12px;
}

.layer-glass-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 154, 61, 0.15);
  border: 1px solid rgba(201, 154, 61, 0.3);
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #E5B558;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.glass-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E5B558;
  box-shadow: 0 0 6px #E5B558;
}

.layer-main-anchor .main-img-box img {
  height: 200px;
}

.layer-main-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 4px 2px;
}

.layer-sub {
  font-size: 0.6875rem;
  color: var(--accent-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.layer-main-h {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #FFFFFF;
}

.layer-main-price {
  text-align: right;
}

.layer-main-price span {
  display: block;
  font-size: 0.6875rem;
  color: #8D93A2;
}

.layer-main-price strong {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  color: #E5B558;
  font-weight: 800;
}

.layer-main-anchor:hover {
  transform: translate(-50%, -53%) rotate(0deg);
  box-shadow: 0 38px 75px -10px rgba(0, 0, 0, 0.9), 0 0 28px rgba(201, 154, 61, 0.3);
}

/* Layer 2: Floating Upper Right (Printed Bottle & Drinkware) */
.layer-top-right {
  width: 195px;
  right: -8px;
  top: 14px;
  z-index: 3;
  animation: floatSubtle1 6s ease-in-out infinite;
}

.layer-top-right .layer-img {
  height: 125px;
}

/* Layer 3: Floating Lower Left (Polymer Frame) */
.layer-bottom-left {
  width: 185px;
  left: -12px;
  bottom: 24px;
  z-index: 6;
  animation: floatSubtle2 7s ease-in-out infinite;
}

.layer-bottom-left .layer-img {
  height: 115px;
}

/* Layer 4: Floating Lower Right (Office Folder) */
.layer-bottom-right {
  width: 180px;
  right: 6px;
  bottom: 16px;
  z-index: 6;
  animation: floatSubtle1 7.5s ease-in-out infinite;
}

.layer-bottom-right .layer-img {
  height: 110px;
}

/* Layer 5: Floating Custom Mug Accent (Top Left) */
.layer-mug-accent {
  width: 155px;
  left: 8px;
  top: 24px;
  z-index: 4;
  animation: floatSubtle2 6.5s ease-in-out infinite;
}

.layer-mug-accent .layer-img {
  height: 95px;
}

/* Floating Editorial UI Badges */
.hero-stat-floating-badge {
  position: absolute;
  z-index: 7;
  background: rgba(14, 16, 22, 0.94);
  backdrop-filter: blur(14px);
  border-radius: 14px;
  padding: 9px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65);
  transition: transform 0.3s ease;
}

.hero-stat-floating-badge:hover {
  transform: translateY(-2px) scale(1.03);
}

.badge-archival {
  right: 28px;
  top: 180px;
  border: 1px solid rgba(201, 154, 61, 0.35);
}

.badge-turnaround {
  left: 48%;
  bottom: -8px;
  transform: translateX(-50%);
  border: 1px solid rgba(37, 211, 102, 0.35);
}

.badge-turnaround:hover {
  transform: translateX(-50%) translateY(-2px);
}

.stat-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(201, 154, 61, 0.15);
  color: #E5B558;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon-green {
  background: rgba(37, 211, 102, 0.15);
  color: #25D366;
}

.stat-badge-val {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
}

.stat-badge-lbl {
  font-size: 0.6875rem;
  color: #8D93A2;
}

/* Floating Keyframes */
@keyframes floatSubtle1 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-7px) rotate(0.4deg);
  }
}

@keyframes floatSubtle2 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(7px) rotate(-0.4deg);
  }
}

/* ==========================================================================
   BRAND / TRUST STRIP
   ========================================================================== */
.trust-strip {
  background-color: #FFFFFF;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 40px 0;
}

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

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

.trust-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--secondary-cream);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.trust-item:hover .trust-icon-box {
  transform: scale(1.08);
  background: var(--primary-black);
}

.trust-title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--primary-black);
  margin-bottom: 4px;
}

.trust-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   ABOUT HOMEPAGE SECTION
   ========================================================================== */
.about-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.about-img-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ==========================================================================
   CUSTOM PRINTING CTA SECTION
   ========================================================================== */
.custom-cta-section {
  background-color: var(--secondary-cream);
  padding: 80px 0;
  border-top: 1px solid var(--cream-border);
  border-bottom: 1px solid var(--cream-border);
}

.custom-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.custom-cta-text {
  max-width: 640px;
}

.custom-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 700;
  color: var(--primary-black);
  line-height: 1.2;
  margin-bottom: 12px;
}

.custom-cta-desc {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   HOMEPAGE ENQUIRY / CONTACT SECTION
   ========================================================================== */
.home-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: flex-start;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: #FFFFFF;
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--border-light);
}

.contact-item-content h4 {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--primary-black);
  margin-bottom: 2px;
}

.contact-item-content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.contact-item-content a {
  color: var(--primary-black);
  font-weight: 600;
}

.contact-item-content a:hover {
  color: var(--accent-gold);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background-color: var(--primary-black);
  color: #9CA3AF;
  padding-top: 72px;
  padding-bottom: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .brand-name {
  color: #FFFFFF;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: #D1D5DB;
  margin-bottom: 16px;
  font-weight: 500;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: #9CA3AF;
  margin-bottom: 24px;
}

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

.social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: #1C1E22;
  color: #D1D5DB;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link:hover {
  background: var(--accent-gold);
  color: var(--primary-black);
  transform: translateY(-2px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

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

.footer-link {
  color: #9CA3AF;
  font-size: 0.9375rem;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover {
  color: #FFFFFF;
  transform: translateX(3px);
}

/* Footer Contact List & Small Icons */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-list .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #9CA3AF;
  font-size: 0.875rem;
  line-height: 1.5;
}

.footer-contact-list .contact-item svg,
.site-footer .contact-item svg {
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  min-height: 18px !important;
  max-width: 18px !important;
  max-height: 18px !important;
  color: var(--accent-gold) !important;
  flex-shrink: 0 !important;
  margin-top: 3px;
  display: inline-block;
}

.footer-contact-list .contact-item a {
  color: #9CA3AF;
  transition: color var(--transition-fast);
}

.footer-contact-list .contact-item a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.875rem;
}

/* Floating Actions */
.floating-actions-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--whatsapp);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  padding: 12px 18px 12px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px var(--whatsapp-glow);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.floating-whatsapp-btn:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
}

.floating-whatsapp-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.back-to-top-btn {
  width: 40px;
  height: 40px;
  background-color: var(--primary-black);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  align-self: flex-end;
}

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

.back-to-top-btn:hover {
  background-color: var(--accent-gold);
  color: var(--primary-black);
  transform: translateY(-2px);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1200px) {
  .hero-card-container {
    padding: 56px 44px 50px;
  }
  .hero-editorial-grid {
    gap: 40px;
  }
  .layer-main-anchor {
    width: 290px;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 992px) {
  :root {
    --nav-height: 72px;
  }
  .nav-menu {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  /* Remove "Get a Quote" from top navbar in phone/mobile layout */
  .navbar-quote-btn,
  .navbar-actions .btn,
  .navbar-actions [data-open-quote] {
    display: none !important;
  }
  .hero-card-container {
    background-image: 
      linear-gradient(180deg, rgba(8, 9, 13, 0.94) 0%, rgba(10, 12, 17, 0.86) 45%, rgba(8, 9, 14, 0.62) 100%),
      radial-gradient(circle at 50% 12%, rgba(201, 154, 61, 0.18) 0%, transparent 60%),
      url('../assets/images/hero_bg_luxury.jpg');
    background-position: center center;
    padding: 44px 28px;
    border-radius: 24px;
  }
  .hero-editorial-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-copy-col {
    max-width: 100%;
  }
  .hero-luxury-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-luxury-actions {
    justify-content: center;
  }
  .hero-trust-bar {
    justify-content: center;
  }
  .hero-visual-stage {
    min-height: 440px;
  }
  .hero-scene-wrap {
    max-width: 500px;
    height: 440px;
  }
  .about-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .home-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }
  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .hero-wrapper-section {
    padding: 12px 0 28px;
  }
  .hero-outer-container {
    padding: 0 16px;
  }
  .hero-card-container {
    padding: 36px 20px 32px;
    border-radius: 22px;
  }
  .hero-luxury-title {
    font-size: clamp(2rem, 6vw, 2.65rem);
  }
  .hero-luxury-desc {
    font-size: 1rem;
    margin-bottom: 28px;
  }
  .hero-visual-stage {
    min-height: 380px;
  }
  .hero-scene-wrap {
    height: 380px;
    max-width: 380px;
    transform: scale(0.92);
    transform-origin: center center;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .floating-whatsapp-btn span {
    display: none;
  }
  .floating-whatsapp-btn {
    padding: 12px;
  }
}

@media (max-width: 580px) {
  .hero-card-container {
    padding: 28px 14px 26px;
    border-radius: 18px;
  }
  .hero-mobile-br {
    display: block;
  }
  .hero-pill-badge {
    font-size: 0.62rem;
    letter-spacing: 0.4px;
    padding: 4px 8px;
    max-width: 95%;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
    margin-bottom: 14px;
  }
  .hero-luxury-title {
    font-size: clamp(1.5rem, 5.2vw, 1.85rem);
    line-height: 1.22;
    word-break: break-word;
    margin-bottom: 16px;
  }
  .hero-luxury-actions {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100%;
    gap: 12px;
  }
  .hero-luxury-actions .btn-hero-primary,
  .hero-luxury-actions .btn-hero-secondary {
    width: 100% !important;
    justify-content: center !important;
    text-align: center;
  }
  .hero-trust-bar {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .hero-visual-stage {
    min-height: 340px;
    margin-top: 8px;
  }
  .hero-scene-wrap {
    height: 330px;
    max-width: 330px;
    transform: scale(0.8);
    transform-origin: center center;
  }
  .layer-main-anchor {
    width: 240px;
  }
  .layer-top-right {
    width: 140px;
    right: -12px;
  }
  .layer-bottom-left {
    width: 135px;
    left: -12px;
  }
  .layer-bottom-right {
    width: 130px;
    right: -6px;
  }
  .layer-mug-accent {
    width: 115px;
    left: -6px;
  }
  .badge-archival {
    right: -4px;
    top: 130px;
    padding: 7px 10px;
  }
  .badge-turnaround {
    bottom: -16px;
    padding: 7px 10px;
  }
}
