/* ============================================================
   HOME MAKER — Main CSS (Tailwind-equivalent + Custom Styles)
   Pixel-perfect replacement for React/Vite/Tailwind build
   ============================================================ */

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

/* ─── CSS Custom Properties (Brand Design Tokens) ─── */
:root {
  --brand-green: #78B82A;
  --brand-blue: #1E4094;
  --brand-gold: #D48A27;
  --brand-navy: #1E2B3C;
  --brand-metallic: #C89B5C;
  --brand-warm-white: #F7F5F2;
  --brand-dark-text: #2F2F2F;
  --brand-gold-light: #F5E6CE;
  --brand-navy-dark: #131C28;
  --brand-dark-bg: #0E1117;
  --brand-dark-surface: #161D27;
  --brand-dark-card: #1C2533;
  --brand-dark-border: #2A3748;
  --brand-dark-muted: #8B9AB0;
  --brand-dark-heading: #F0E8D9;
  --brand-dark-body: #C4CDD8;

  --shadow-luxury: 0 20px 40px -15px rgba(30, 43, 60, 0.08);
  --shadow-luxury-hover: 0 30px 60px -12px rgba(212, 138, 39, 0.18);
  --shadow-gold-glow: 0 0 25px rgba(212, 138, 39, 0.35);
  --shadow-navy-glow: 0 0 25px rgba(30, 43, 60, 0.25);
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--brand-warm-white);
  color: var(--brand-dark-text);
  transition: background-color 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ─── Dark Mode Base ─── */
html.dark, .dark {
  background-color: var(--brand-dark-bg);
  color: var(--brand-dark-body);
}
.dark body { background-color: var(--brand-dark-bg); color: var(--brand-dark-body); }
.dark section { background-color: var(--brand-dark-bg) !important; }
.dark h1, .dark h2, .dark h3, .dark h4,
html.dark h1, html.dark h2, html.dark h3, html.dark h4 {
  color: #F0E8D9 !important;
}
.dark p, html.dark p {
  color: rgba(255, 255, 255, 0.85);
}
.dark input, .dark textarea, .dark select {
  background-color: var(--brand-dark-card) !important;
  border-color: var(--brand-dark-border) !important;
  color: var(--brand-dark-body) !important;
}
.dark input::placeholder, .dark textarea::placeholder { color: var(--brand-dark-muted) !important; }
.dark nav { background-color: var(--brand-dark-bg) !important; border-color: var(--brand-dark-border) !important; }
.dark footer { background-color: #080C11 !important; }

/* ─── Typography Utilities ─── */
.font-heading { font-family: 'Cinzel', serif; }
.font-accent { font-family: 'Cormorant Garamond', serif; font-style: italic; }
.font-body { font-family: 'Plus Jakarta Sans', sans-serif; }

/* ─── Layout Utilities ─── */
.container { width: 100%; max-width: 80rem; margin: 0 auto; }
.max-w-7xl { max-width: 80rem; margin: 0 auto; }
.max-w-5xl { max-width: 64rem; margin: 0 auto; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-xl { max-width: 36rem; }

.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-1 { padding-top: 0.25rem; } .pt-2 { padding-top: 0.5rem; } .pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; } .pt-8 { padding-top: 2rem; } .pt-12 { padding-top: 3rem; }
.pt-16 { padding-top: 4rem; } .pt-28 { padding-top: 7rem; } .pt-32 { padding-top: 8rem; }
.pt-40 { padding-top: 10rem; }
.pb-4 { padding-bottom: 1rem; } .pb-6 { padding-bottom: 1.5rem; } .pb-8 { padding-bottom: 2rem; }
.pb-12 { padding-bottom: 3rem; } .pb-16 { padding-bottom: 4rem; }
.p-3 { padding: 0.75rem; } .p-4 { padding: 1rem; } .p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; } .p-8 { padding: 2rem; }
.mt-0\.5 { margin-top: 0.125rem; } .mt-1 { margin-top: 0.25rem; } .mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; } .mt-6 { margin-top: 1.5rem; } .mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; } .mt-16 { margin-top: 4rem; } .mt-20 { margin-top: 5rem; }
.mb-2 { margin-bottom: 0.5rem; } .mb-3 { margin-bottom: 0.75rem; } .mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; } .mb-8 { margin-bottom: 2rem; } .mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; } .mb-16 { margin-bottom: 4rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.ml-auto { margin-left: auto; }

/* ─── Display & Flex ─── */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none !important; }
.grid { display: grid; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; } .right-0 { right: 0; } .bottom-0 { bottom: 0; } .left-0 { left: 0; }
.top-3 { top: 0.75rem; } .top-4 { top: 1rem; } .top-5 { top: 1.25rem; } .top-6 { top: 1.5rem; }
.right-4 { right: 1rem; } .right-5 { right: 1.25rem; } .right-6 { right: 1.5rem; }
.bottom-4 { bottom: 1rem; } .bottom-6 { bottom: 1.5rem; }
.left-3 { left: 0.75rem; } .left-4 { left: 1rem; } .left-6 { left: 1.5rem; }
.z-10 { z-index: 10; } .z-20 { z-index: 20; } .z-40 { z-index: 40; } .z-50 { z-index: 50; }
.z-\[9999\] { z-index: 9999; } .z-\[99999\] { z-index: 99999; }
.-z-50 { z-index: -50; }
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-auto { overflow-y: auto; }
.overflow-x-auto { overflow-x: auto; }

.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.gap-1 { gap: 0.25rem; } .gap-1\.5 { gap: 0.375rem; } .gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; } .gap-3 { gap: 0.75rem; } .gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; } .gap-6 { gap: 1.5rem; } .gap-7 { gap: 1.75rem; }
.gap-8 { gap: 2rem; } .gap-10 { gap: 2.5rem; } .gap-12 { gap: 3rem; }
.flex-1 { flex: 1 1 0%; }
.shrink-0 { flex-shrink: 0; }
.flex-grow { flex-grow: 1; }

.space-x-3 > * + * { margin-left: 0.75rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-1\.5 > * + * { margin-top: 0.375rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* ─── Grid System ─── */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }
.row-span-2 { grid-row: span 2 / span 2; }

/* ─── Width & Height ─── */
.w-full { width: 100%; } .w-1 { width: 0.25rem; } .w-1\.5 { width: 0.375rem; }
.w-3 { width: 0.75rem; } .w-3\.5 { width: 0.875rem; } .w-4 { width: 1rem; }
.w-5 { width: 1.25rem; } .w-6 { width: 1.5rem; } .w-7 { width: 1.75rem; }
.w-8 { width: 2rem; } .w-9 { width: 2.25rem; } .w-10 { width: 2.5rem; }
.w-11 { width: 2.75rem; } .w-12 { width: 3rem; } .w-14 { width: 3.5rem; }
.w-16 { width: 4rem; } .w-20 { width: 5rem; } .w-24 { width: 6rem; }
.w-44 { width: 11rem; } .w-96 { width: 24rem; }
.h-0\.5 { height: 0.125rem; } .h-1 { height: 0.25rem; } .h-1\.5 { height: 0.375rem; }
.h-3 { height: 0.75rem; } .h-3\.5 { height: 0.875rem; } .h-4 { height: 1rem; }
.h-5 { height: 1.25rem; } .h-6 { height: 1.5rem; } .h-7 { height: 1.75rem; }
.h-8 { height: 2rem; } .h-9 { height: 2.25rem; } .h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; } .h-12 { height: 3rem; } .h-13 { height: 3.25rem; }
.h-14 { height: 3.5rem; } .h-16 { height: 4rem; } .h-20 { height: 5rem; }
.h-24 { height: 6rem; } .h-64 { height: 16rem; } .h-72 { height: 18rem; }
.h-96 { height: 24rem; } .min-h-screen { min-height: 100vh; }
.min-h-\[52px\] { min-height: 52px; } .min-w-\[700px\] { min-width: 700px; }
.h-\[360px\] { height: 360px; } .h-\[380px\] { height: 380px; } .h-\[480px\] { height: 480px; }
.max-h-0 { max-height: 0; } .max-h-12 { max-height: 3rem; }

/* ─── Color Utilities ─── */
.text-white { color: #ffffff !important; }
.text-black { color: #000000; }
.text-brand-gold { color: var(--brand-gold) !important; }
.text-brand-navy { color: var(--brand-navy); }
.text-brand-green { color: var(--brand-green); }
.dark .text-brand-navy { color: #ffffff; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1f2937; }
.text-amber-400 { color: #fbbf24; }
.text-emerald-400 { color: #34d399; }
.text-blue-300 { color: #93c5fd; }
.text-emerald-100 { color: #d1fae5; }
.text-amber-100 { color: #fef3c7; }
.dark .text-white\/70 { color: rgba(255,255,255,0.7); }
.dark .text-white\/80 { color: rgba(255,255,255,0.8); }
.dark .text-white\/90 { color: rgba(255,255,255,0.9); }
.dark .text-white\/60 { color: rgba(255,255,255,0.6); }

/* Background Colors */
.bg-white { background-color: #ffffff; }
.dark .bg-white { background-color: var(--brand-dark-card) !important; }
.bg-black { background-color: #000000; }
.bg-brand-navy { background-color: var(--brand-navy); }
.bg-brand-gold { background-color: var(--brand-gold); }
.bg-brand-warm-white { background-color: var(--brand-warm-white); }
.dark .bg-brand-dark-bg { background-color: var(--brand-dark-bg); }
.dark .bg-brand-dark-surface { background-color: var(--brand-dark-surface); }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.dark .bg-gray-50 { background-color: var(--brand-dark-surface) !important; }
.dark .bg-gray-100 { background-color: var(--brand-dark-surface) !important; }
.bg-emerald-500 { background-color: #10b981; }
.bg-emerald-600 { background-color: #059669; }
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-700 { background-color: #1d4ed8; }
.bg-amber-600 { background-color: #d97706; }
.bg-amber-700 { background-color: #b45309; }

/* ─── Border Utilities ─── */
.border { border-width: 1px; border-style: solid; }
.border-2 { border-width: 2px; border-style: solid; }
.border-4 { border-width: 4px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-transparent { border-color: transparent; }
.border-white { border-color: #ffffff; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.dark .border-gray-100 { border-color: var(--brand-dark-border) !important; }
.dark .border-gray-200 { border-color: var(--brand-dark-border) !important; }

/* ─── Rounded ─── */
.rounded { border-radius: 0.25rem; }
.rounded-sm { border-radius: 0.125rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded-\[10px\] { border-radius: 10px; }

/* ─── Shadow ─── */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.shadow { box-shadow: 0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.shadow-luxury { box-shadow: var(--shadow-luxury); }
.shadow-gold-glow { box-shadow: var(--shadow-gold-glow); }

/* ─── Text Size ─── */
.text-\[9px\] { font-size: 9px; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-\[9\.5px\] { font-size: 9.5px; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-\[180px\] { font-size: 180px; }

/* ─── Font Weight ─── */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

/* ─── Text Alignment & Transform ─── */
.text-center { text-align: center; }
.text-left { text-align: left; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.normal-case { text-transform: none !important; }
.italic { font-style: italic; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ─── Letter Spacing ─── */
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.18em\] { letter-spacing: 0.18em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.25em\] { letter-spacing: 0.25em; }
.tracking-\[0\.15em\] { letter-spacing: 0.15em; }

/* ─── Line Height ─── */
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }
.leading-\[1\.1\] { line-height: 1.1; }

/* ─── Opacity ─── */
.opacity-0 { opacity: 0; }
.opacity-5 { opacity: 0.05; }
.opacity-70 { opacity: 0.7; }
.opacity-100 { opacity: 1; }

/* ─── Pointer & Select ─── */
.pointer-events-none { pointer-events: none; }
.select-none { user-select: none; }
.cursor-pointer { cursor: pointer; }
.cursor-ew-resize { cursor: ew-resize; }

/* ─── Transform & Transition ─── */
.transition { transition-property: all; transition-duration: 150ms; }
.transition-all { transition-property: all; transition-duration: 300ms; transition-timing-function: ease; }
.transition-colors { transition-property: color, background-color, border-color; transition-duration: 200ms; }
.transition-transform { transition-property: transform; transition-duration: 200ms; }
.transition-opacity { transition-property: opacity; transition-duration: 200ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }
.rotate-180 { transform: rotate(180deg); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.translate-y-0 { transform: translateY(0); }
.hover\:-translate-y-1\.5:hover { transform: translateY(-6px); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }
.active\:scale-95:active { transform: scale(0.95); }

/* ─── Blur & Backdrop ─── */
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }
.backdrop-blur-2xl { backdrop-filter: blur(40px); -webkit-backdrop-filter: blur(40px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.blur-\[120px\] { filter: blur(120px); }
.blur-\[140px\] { filter: blur(140px); }

/* ─── Gradient Backgrounds ─── */
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }

/* ─── Specific Section Backgrounds ─── */
.section-warm-white { background-color: var(--brand-warm-white); }
.section-white { background-color: #ffffff; }
.section-navy { background-color: var(--brand-navy); }
.dark .section-warm-white { background-color: var(--brand-dark-bg) !important; }
.dark .section-white { background-color: var(--brand-dark-bg) !important; }

/* ─── Custom Scrollbar ─── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0E1117; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #D48A27 0%, #C89B5C 100%); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #D48A27; }

/* ─── Glass Cards ─── */
.glass-card { background: rgba(255,255,255,0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(200,155,92,0.2); }
.dark .glass-card { background: rgba(28,37,51,0.85); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(212,138,39,0.2); }
.glass-card-dark { background: rgba(14,17,23,0.9); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(212,138,39,0.2); }

/* ─── Gold Gradient Text ─── */
.gold-gradient-text { background: linear-gradient(135deg, #D48A27 0%, #E5B26A 50%, #C89B5C 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* ─── Gold Border Glow ─── */
.gold-border-glow { position: relative; }
.gold-border-glow::before { content: ''; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; background: linear-gradient(135deg, rgba(212,138,39,0.6), rgba(200,155,92,0.1), rgba(212,138,39,0.6)); -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }

/* ─── Image Zoom Container ─── */
.img-zoom-container { overflow: hidden; }
.img-zoom-container img { transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1); }
.img-zoom-container:hover img { transform: scale(1.08); }

/* ─── Animations ─── */
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-12px); } }
@keyframes pulseGlow { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.8; } }
@keyframes shimmer { 100% { transform: translateX(100%); } }
@keyframes ping { 75%, 100% { transform: scale(2); opacity: 0; } }

.animate-fadeIn { animation: fadeIn 0.25s ease forwards; }
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-pulse { animation: pulseGlow 2s ease-in-out infinite; }
.animate-ping { animation: ping 1s cubic-bezier(0,0,0.2,1) infinite; }

/* ─── Selection ─── */
::selection { background-color: var(--brand-gold); color: white; }

/* ─── HEADER / NAVBAR ─── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: all 0.5s ease;
}
#top-info-bar {
  background-color: var(--brand-navy);
  color: rgba(255,255,255,0.8);
  font-size: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  max-height: 3rem; padding: 0.5rem 0; opacity: 1;
}
#top-info-bar.scrolled { max-height: 0; padding: 0; opacity: 0; }
#main-nav {
  transition: all 0.3s ease;
  background-color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(229,231,235,0.6);
  padding: 0.875rem 0;
}
.dark #main-nav { background-color: rgba(14,17,23,0.98) !important; border-color: rgba(42,55,72,0.6) !important; }
#main-nav.scrolled {
  background-color: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  border-bottom-color: #e5e7eb;
  padding: 0.625rem 0;
}
.dark #main-nav.scrolled { background-color: rgba(14,17,23,0.98) !important; border-color: #2A3748 !important; }
.nav-link {
  font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.18em;
  font-weight: 500; transition: all 0.2s; padding-bottom: 0.125rem;
  border-bottom: 2px solid transparent;
  color: #4b5563;
}
.dark .nav-link { color: rgba(255,255,255,0.7); }
.nav-link:hover { color: var(--brand-navy); border-bottom-color: rgba(30,43,60,0.3); }
.dark .nav-link:hover { color: #ffffff; border-bottom-color: rgba(255,255,255,0.3); }
.nav-link.active { color: var(--brand-gold); border-bottom-color: var(--brand-gold); }

/* Mobile Menu Drawer */
#mobile-drawer {
  display: none; position: fixed; inset: 0; z-index: 50;
  background-color: rgba(30,43,60,0.97);
  backdrop-filter: blur(24px);
  flex-direction: column; padding: 1.5rem;
}
#mobile-drawer.open { display: flex; animation: fadeIn 0.2s ease forwards; }
.mobile-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.875rem 1rem; border-radius: 0.5rem;
  font-size: 0.75rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em;
  border: 1px solid transparent; color: rgba(255,255,255,0.8);
  transition: all 0.2s;
}
.mobile-nav-link:hover { background-color: rgba(255,255,255,0.1); color: white; }
.mobile-nav-link.active { background-color: rgba(212,138,39,0.2); color: var(--brand-gold); border-color: rgba(212,138,39,0.3); }

/* ─── HERO SECTION ─── */
#home {
  min-height: 90vh;
  background-color: var(--brand-warm-white);
  padding-top: 10rem; padding-bottom: 4rem;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  transition: background-color 0.5s, color 0.5s;
}
.dark #home { background-color: var(--brand-dark-bg); }
@media (min-width: 1024px) { #home { min-height: 100vh; padding-top: 7rem; } }
@media (min-width: 640px) { #home { padding-top: 8rem; } }

/* ─── ABOUT SECTION ─── */
#about {
  padding: 6rem 0; background-color: white;
  transition: background-color 0.5s, color 0.5s;
}
.dark #about { background-color: var(--brand-dark-bg) !important; }

/* ─── SERVICES SECTION ─── */
#services {
  padding: 6rem 0; background-color: var(--brand-warm-white);
  transition: background-color 0.5s, color 0.5s;
}
.dark #services { background-color: var(--brand-dark-bg) !important; }
.service-card { transition: all 0.3s ease; }
.service-card:hover { box-shadow: 0 20px 30px -10px rgba(212,138,39,0.18); }

/* ─── WHY CHOOSE US ─── */
#why-choose-us {
  padding: 6rem 0; background-color: var(--brand-warm-white);
  position: relative; overflow: hidden;
  transition: background-color 0.5s, color 0.5s;
}
.dark #why-choose-us { background-color: var(--brand-dark-surface) !important; }
.why-card {
  background: white; padding: 1.5rem; border-radius: 1rem;
  border: 1px solid #e5e7eb; transition: all 0.3s ease;
  box-shadow: var(--shadow-luxury);
}
.why-card:hover { border-color: rgba(212,138,39,0.6); box-shadow: var(--shadow-gold-glow); transform: translateY(-6px); }
.dark .why-card { background-color: rgba(14,17,23,0.9) !important; border-color: rgba(212,138,39,0.2) !important; }

/* ─── PORTFOLIO ─── */
#projects {
  padding: 6rem 0; background-color: var(--brand-warm-white);
  transition: background-color 0.5s, color 0.5s;
}
.dark #projects { background-color: var(--brand-dark-bg) !important; }
.portfolio-card {
  cursor: pointer; overflow: hidden;
  border: 1px solid #f3f4f6; background: white;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); transition: all 0.5s;
}
.portfolio-card:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); }
.dark .portfolio-card { background-color: var(--brand-dark-surface) !important; border-color: rgba(255,255,255,0.1) !important; }
.portfolio-overlay { opacity: 0; transition: opacity 0.3s; position: absolute; inset: 0; background: rgba(0,0,0,0.4); display: flex; align-items: center; justify-content: center; }
.portfolio-card:hover .portfolio-overlay { opacity: 1; }

/* ─── GALLERY ─── */
#gallery {
  padding: 6rem 0; background-color: var(--brand-dark-bg);
  transition: background-color 0.5s;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 0.75rem;
}
.gallery-item {
  overflow: hidden; cursor: pointer; position: relative;
  border-radius: 0.5rem;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
/* Grid span classes for gallery */
.gallery-item.col-span-1 { grid-column: span 1; }
.gallery-item.col-span-2 { grid-column: span 2; }
.gallery-item.col-span-3 { grid-column: span 3; }
.gallery-item.row-span-1 { grid-row: span 1; }
.gallery-item.row-span-2 { grid-row: span 2; }

/* ─── BEFORE/AFTER SLIDER ─── */
#before-after {
  padding: 6rem 0;
  background: linear-gradient(to bottom, white, var(--brand-warm-white), white);
  transition: background 0.5s, color 0.5s;
}
.dark #before-after { background: linear-gradient(to bottom, var(--brand-navy-dark), var(--brand-navy), var(--brand-navy-dark)) !important; }
.slider-container {
  position: relative; border-radius: 1.5rem; overflow: hidden;
  border: 4px solid rgba(255,255,255,0.1); cursor: ew-resize;
  user-select: none; height: 380px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}
.slider-container .before-img,
.slider-container .after-img { position: absolute; top: 0; bottom: 0; overflow: hidden; }
.slider-container .after-img { left: 0; right: 0; }
.slider-container .before-img { left: 0; }
.slider-handle {
  position: absolute; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(to bottom, var(--brand-gold), white, var(--brand-gold));
  box-shadow: var(--shadow-gold-glow);
}
.slider-knob {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 3rem; height: 3rem; border-radius: 9999px;
  background-color: var(--brand-navy); border: 2px solid var(--brand-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-gold); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

/* ─── PROCESS TIMELINE ─── */
#process {
  padding: 6rem 0; background: white; overflow: hidden; position: relative;
  transition: background-color 0.5s, color 0.5s;
}
.dark #process { background-color: var(--brand-dark-surface) !important; }
.process-step-btn {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  background: none; border: none; cursor: pointer;
}
.process-step-icon {
  width: 3rem; height: 3rem; border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; border: 1px solid rgba(255,255,255,0.1);
  background-color: var(--brand-navy-dark); color: rgba(255,255,255,0.4);
}
.process-step-icon.active { background: linear-gradient(to bottom right, var(--brand-gold), var(--brand-metallic)); color: white; border: 2px solid white; transform: scale(1.1); box-shadow: var(--shadow-gold-glow); }
.process-step-icon.past { background-color: rgba(212,138,39,0.3); color: var(--brand-gold); border-color: rgba(212,138,39,0.4); }

/* ─── TESTIMONIALS ─── */
#testimonials {
  padding: 6rem 0; background-color: var(--brand-dark-bg);
  transition: background-color 0.5s;
}
.testimonial-card {
  background-color: var(--brand-dark-surface); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem; padding: 1.5rem;
}

/* ─── FAQ ─── */
#faq {
  padding: 6rem 0; background: white; transition: background-color 0.5s, color 0.5s;
}
.dark #faq { background-color: var(--brand-dark-surface) !important; }
.faq-item {
  border-radius: 1rem; border: 1px solid #e5e7eb; overflow: hidden;
  transition: all 0.3s;
}
.faq-item.open { background-color: var(--brand-warm-white); border-color: var(--brand-gold); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.dark .faq-item { background-color: var(--brand-dark-bg) !important; border-color: rgba(212,138,39,0.2) !important; }
.dark .faq-item.open { background-color: var(--brand-dark-bg) !important; border-color: var(--brand-gold) !important; }
.faq-answer { display: none; padding: 0 1.5rem 1.5rem; padding-top: 0.5rem; font-size: 0.875rem; line-height: 1.625; border-top: 1px solid rgba(212,138,39,0.1); color: #374151; }
.dark .faq-answer { color: rgba(255,255,255,0.8); }
.faq-item.open .faq-answer { display: block; }
.faq-chevron { transition: transform 0.3s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

/* ─── CONTACT SECTION ─── */
#contact {
  padding: 6rem 0; background-color: var(--brand-warm-white);
  transition: background-color 0.5s, color 0.5s;
}
.dark #contact { background-color: var(--brand-dark-bg) !important; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; background-color: var(--brand-warm-white);
  border: 1px solid #e5e7eb; border-radius: 0.375rem;
  padding: 0.875rem 1.25rem; font-size: 0.875rem;
  color: var(--brand-navy); outline: none; transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--brand-gold); }
.dark .contact-form input, .dark .contact-form textarea { background-color: var(--brand-dark-bg) !important; border-color: rgba(255,255,255,0.1) !important; color: white !important; }

/* ─── FOOTER ─── */
footer {
  background: linear-gradient(to bottom, #0A0D12, #0E1117, #080A0D);
  color: white; padding-top: 4rem; padding-bottom: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1); position: relative; overflow: hidden;
}

/* ─── FLOATING CTAs ─── */
#floating-ctas {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  z-index: 40; display: flex; flex-direction: column;
  gap: 0.75rem; align-items: flex-end;
}
.floating-btn {
  border-radius: 9999px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); transition: all 0.3s;
  border: none; cursor: pointer;
}
.floating-btn:hover { transform: scale(1.1); }
#scroll-top-btn { display: none; }
#scroll-top-btn.visible { display: flex; }

/* ─── MODALS ─── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center;
  padding: 1rem; overflow-y: auto;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: white; max-width: 42rem; width: 100%;
  border-radius: 1.5rem; overflow: hidden; position: relative;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  margin: 2rem auto; animation: fadeIn 0.25s ease forwards;
  border: 1px solid #e5e7eb;
}
.dark .modal-box { background-color: var(--brand-dark-surface) !important; border-color: rgba(212,138,39,0.4) !important; color: white; }
.quote-modal-box { max-width: 48rem; border-radius: 1.5rem; }

/* ─── LANGUAGE SELECTOR ─── */
#lang-dropdown {
  display: none; position: absolute; right: 0; top: calc(100% + 0.5rem);
  width: 11rem; background: white; border: 1px solid #e5e7eb;
  border-radius: 0.75rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  z-index: 99999; overflow: hidden; animation: fadeIn 0.15s ease;
}
.dark #lang-dropdown { background-color: var(--brand-dark-surface) !important; border-color: rgba(255,255,255,0.2) !important; }
#lang-dropdown.open { display: block; }

/* ─── RANGE INPUT ─── */
input[type="range"] { accent-color: var(--brand-gold); }
input[type="checkbox"] { accent-color: var(--brand-gold); }

/* ─── BUTTONS (Common) ─── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 2rem; background-color: var(--brand-gold);
  color: white; font-weight: 500; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.2em;
  border: none; cursor: pointer; transition: all 0.3s;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}
.btn-gold:hover { background-color: #b8741e; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.btn-green {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 2rem; background: linear-gradient(to right, #78B82A, #5C9E1C);
  color: white; font-weight: 600; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  border: 1px solid rgba(255,255,255,0.2); cursor: pointer; transition: all 0.3s;
}
.btn-green:hover { background: linear-gradient(to right, #6AA423, #4E8817); }

/* ─── SCROLLBAR-NONE ─── */
.scrollbar-none { -ms-overflow-style: none; scrollbar-width: none; }
.scrollbar-none::-webkit-scrollbar { display: none; }

/* ─── RESPONSIVE ─── */
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
  .sm\:text-sm { font-size: 0.875rem; }
  .sm\:text-base { font-size: 1rem; }
  .sm\:text-lg { font-size: 1.125rem; }
  .sm\:inline-block { display: inline-block; }
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none !important; }
  .sm\:block { display: block; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:h-72 { height: 18rem; }
  .sm\:h-96 { height: 24rem; }
  .sm\:p-8 { padding: 2rem; }
  .sm\:p-10 { padding: 2.5rem; }
  .sm\:p-12 { padding: 3rem; }
  .sm\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .sm\:col-span-2 { grid-column: span 2; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:text-base { font-size: 1rem; }
  .sm\:w-20 { width: 5rem; }
  .sm\:h-14 { height: 3.5rem; }
  .sm\:w-9 { width: 2.25rem; }
  .sm\:h-9 { height: 2.25rem; }
  .sm\:pt-0 { padding-top: 0; }
  .sm\:text-\[10px\] { font-size: 10px; }
  .sm\:right-8 { right: 2rem; }
  .sm\:text-sm { font-size: 0.875rem; }
  .sm\:h-\[480px\] { height: 480px; }
}
@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:col-span-1 { grid-column: span 1; }
  .md\:col-span-2 { grid-column: span 2; }
  .md\:col-span-3 { grid-column: span 3; }
  .md\:col-span-4 { grid-column: span 4; }
  .md\:col-span-5 { grid-column: span 5; }
  .md\:col-span-7 { grid-column: span 7; }
  .md\:col-span-12 { grid-column: span 12; }
  .md\:row-span-1 { grid-row: span 1; }
  .md\:row-span-2 { grid-row: span 2; }
  .md\:flex { display: flex; }
  .md\:hidden { display: none !important; }
  .md\:block { display: block; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .slider-container { height: 480px; }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:col-span-2 { grid-column: span 2; }
  .lg\:col-span-3 { grid-column: span 3; }
  .lg\:col-span-4 { grid-column: span 4; }
  .lg\:col-span-5 { grid-column: span 5; }
  .lg\:col-span-6 { grid-column: span 6; }
  .lg\:col-span-7 { grid-column: span 7; }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none !important; }
  .lg\:block { display: block; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:gap-12 { gap: 3rem; }
  .lg\:gap-16 { gap: 4rem; }
  .slider-container { height: 550px; }
}
@media (min-width: 1280px) {
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .xl\:gap-7 { gap: 1.75rem; }
  .xl\:text-xs { font-size: 0.75rem; }
}

/* ─── Responsive Gallery Grid ─── */
@media (max-width: 767px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item { grid-column: span 1 !important; grid-row: span 1 !important; }
}

/* ─── Filter Hidden Items ─── */
[data-category].hidden-by-filter { display: none !important; }

/* ─── Utility extras ─── */
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-square { aspect-ratio: 1 / 1; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* Focus */
:focus-visible { outline: 2px solid var(--brand-gold); outline-offset: 2px; }
button:focus, a:focus { outline: none; }

/* Stars */
.star-filled { color: #fbbf24; }
.star-empty { color: #d1d5db; }
.dark .star-empty { color: rgba(255,255,255,0.2); }
