/* 
  Desire Homz Interiors - Premium Design System
  Theme: Black + Gold / Yellow Luxury
*/

:root {
  /* Colors */
  --color-bg: #0a0a0a;
  --color-bg-soft: #121212;
  --color-gold-primary: #d4af37; /* Rich Gold */
  --color-gold-secondary: #f4d03f; /* Lighter Accent */
  --color-gold-dark: #b8860b;
  --color-text-main: #ffffff;
  --color-text-muted: #a0a0a0;
  --color-text-dark: #1a1a1a;
  --color-accent: #f1c40f;
  
  /* Gradients */
  --grad-gold: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #b8860b 100%);
  --grad-dark: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  --grad-glass: rgba(255, 255, 255, 0.05);

  /* Typography */
  --font-heading: 'Cinzel', serif;
  --font-subheading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 100px 5%;
  --section-padding-mobile: 60px 20px;
  --container-max: 1200px;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--grad-gold);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-secondary);
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text-main);
  font-family: var(--font-body);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, .premium-font {
  font-family: var(--font-heading);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.65rem, 5vw, 2.75rem);
  margin-bottom: 3.5rem;
  text-align: center;
  position: relative;
  line-height: 1.25;
  letter-spacing: 0.15em;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--grad-gold);
  margin: 15px auto 0;
}

.section-number {
  display: block;
  font-size: clamp(0.875rem, 2.5vw, 0.95rem);
  color: var(--color-gold-primary);
  opacity: 0.8;
  margin-bottom: 10px;
  letter-spacing: 0.2em;
  font-weight: 300;
}

p {
  color: var(--color-text-muted);
  font-size: clamp(1rem, 2.2vw, 1.05rem);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s ease;
}

/* Luxury Utilities */
.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.gold-btn {
  background: var(--grad-gold);
  color: var(--color-text-dark);
  padding: 14px 35px;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: inline-block;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.gold-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
  filter: brightness(1.1);
}

.outline-btn {
  border: 1px solid var(--color-gold-primary);
  color: var(--color-gold-primary);
  padding: 11px 29px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: transparent;
  display: inline-block;
}

.outline-btn:hover {
  background: var(--grad-gold);
  color: var(--color-text-dark);
}

.glass-card {
  background: var(--grad-glass);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.1);
  padding: 30px;
  border-radius: 4px;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.section {
  padding: 120px 5%;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: 0.4s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(15px);
  padding: 12px 0;
  border-bottom: 2px solid var(--color-gold-primary);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}

.logo img {
  height: 60px;
  width: auto;
  transition: 0.4s ease;
}

.navbar.scrolled .logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links a.active {
  color: var(--color-gold-primary);
}

.nav-links a.active::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: var(--grad-gold);
  margin-top: 5px;
}

.nav-links a:hover {
  color: var(--color-gold-primary);
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/hero-bedroom-modern.jpg.jpg');
  background-size: cover;
  background-position: center;
  animation: ken-burns 20s linear infinite alternate;
  z-index: -1;
}

@keyframes ken-burns {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.4), rgba(10,10,10,1));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.hero h1 {
  font-size: clamp(2.2rem, 8vw, 4rem);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero p {
  font-size: clamp(1rem, 3vw, 1.4rem);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.trust-badges {
  margin-top: 50px;
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--color-text-main);
}

/* About Grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  padding-right: 20px; /* Space for the shadow */
}

.about-img img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 20px 20px 0 var(--color-gold-primary);
}

.about-text h2 { text-align: left; }
.about-text h2::after { margin: 15px 0 0; }
.about-text h4 {
  font-size: clamp(1.05rem, 2.8vw, 1.25rem);
  line-height: 1.3;
  margin-bottom: 12px;
}
.about-text p {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  line-height: 1.65;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 30px;
}

.stat-item h3 {
  font-size: clamp(1.65rem, 4.5vw, 2.25rem);
  line-height: 1.2;
  margin-bottom: 5px;
}

.stat-item p {
  font-size: clamp(0.875rem, 2.2vw, 0.95rem);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.service-card {
  text-align: center;
  transition: 0.4s ease;
}

.service-card i {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: clamp(1.1rem, 2.8vw, 1.35rem);
  line-height: 1.3;
  margin-bottom: 12px;
}

.service-card p {
  font-size: clamp(1rem, 2.2vw, 1.05rem);
  line-height: 1.5;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--color-gold-primary);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

/* Featured */
.featured-flex {
  display: flex;
  gap: 50px;
  align-items: center;
  background: var(--color-bg-soft);
  padding: 60px;
  border-radius: 8px;
}

.featured-text { flex: 1; }
.featured-text p { margin-bottom: 30px; }
.featured-img { flex: 1; }
.featured-img img { width: 100%; border-radius: 4px; }

/* Signature Collections */
.collections-grid {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.collection-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.collection-item:nth-child(even) {
  direction: rtl;
}

.collection-item:nth-child(even) .collection-text {
  direction: ltr;
}

.collection-img {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.collection-img img {
  width: 100%;
  transition: transform 0.8s ease;
}

.collection-item:hover img {
  transform: scale(1.05);
}

.collection-text h3 {
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  line-height: 1.25;
  margin-bottom: 18px;
  color: var(--color-gold-primary);
}

.collection-text p {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Portfolio Gallery */
.filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--color-gold-primary);
  color: var(--color-gold-primary);
  padding: 10px 24px;
  cursor: pointer;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 2.2vw, 0.95rem);
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--grad-gold);
  color: var(--color-text-dark);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
  transform: translateY(-2px);
}

/* Perfectly Aligned Clean Portfolio Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  background: var(--color-bg-soft);
  border: 1px solid rgba(212, 175, 55, 0.15);
  aspect-ratio: 4 / 3;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.gallery-item:hover {
  border-color: var(--color-gold-primary);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
  transform: translateY(-4px);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Hover-Overlay Captions */
.caption-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 25px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.caption-overlay h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2.8vw, 1.25rem);
  color: #ffffff;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
  transform: translateY(15px);
  transition: transform 0.5s ease;
  position: relative;
  line-height: 1.25;
}

.caption-overlay h3::after {
  content: '';
  display: block;
  width: 35px;
  height: 2px;
  background: var(--grad-gold);
  margin-top: 8px;
}

/* Hover & Mobile Active States */
.gallery-item:hover img,
.gallery-item.active img {
  transform: scale(1.07);
}

.gallery-item:hover .caption-overlay,
.gallery-item.active .caption-overlay {
  opacity: 1;
  pointer-events: auto;
}

.gallery-item:hover .caption-overlay h3,
.gallery-item.active .caption-overlay h3 {
  transform: translateY(0);
}

/* Lightbox Modal */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(5, 5, 5, 0.94);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 1.8rem;
  color: var(--color-gold-primary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10002;
}

.lightbox-close:hover {
  background: var(--grad-gold);
  color: var(--color-text-dark);
  transform: rotate(90deg);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--color-gold-primary);
  background: rgba(18, 18, 18, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10002;
}

.lightbox-arrow:hover {
  background: var(--grad-gold);
  color: var(--color-text-dark);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-img-wrap {
  max-width: 85vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.lightbox-caption {
  margin-top: 18px;
  font-family: var(--font-heading);
  color: var(--color-gold-primary);
  font-size: clamp(1.05rem, 3.5vw, 1.35rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.25;
}

.lightbox-counter {
  position: absolute;
  bottom: 25px;
  color: var(--color-text-muted);
  font-size: clamp(0.875rem, 2.2vw, 0.95rem);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-img img { width: 100%; border-radius: 4px; }
.why-item { 
  margin-bottom: 25px; 
  padding-left: 20px;
  border-left: 1px solid rgba(212, 175, 55, 0.2);
}

.why-item h4 { 
  color: var(--color-gold-primary); 
  font-size: clamp(1.05rem, 2.8vw, 1.25rem); 
  line-height: 1.3;
  margin-bottom: 6px; 
}

.why-item p {
  font-size: clamp(1rem, 2.2vw, 1.05rem);
  line-height: 1.5;
}

/* Process */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
}

.process-step {
  text-align: center;
}

.step-num {
  width: 50px;
  height: 50px;
  background: var(--grad-gold);
  color: var(--color-text-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 20px;
  font-size: clamp(1rem, 3vw, 1.25rem);
}

.process-step h3 {
  font-size: clamp(1.05rem, 2.8vw, 1.25rem);
  line-height: 1.3;
  margin-bottom: 8px;
}

.process-step p {
  font-size: clamp(1rem, 2.2vw, 1.05rem);
  line-height: 1.5;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.review-card .stars { margin-bottom: 15px; }

.review-card h4 {
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  line-height: 1.3;
  margin-bottom: 4px;
}

.review-card span {
  font-size: clamp(0.875rem, 2.2vw, 0.95rem);
}

/* CTA Banner */
.cta-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  text-align: center;
}

.cta-img-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
  transform: scale(1.1);
  transition: 0.8s ease;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10,10,10,0.6);
}

.cta-content { position: relative; z-index: 10; }
.cta-btns { display: flex; gap: 20px; justify-content: center; margin-top: 30px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.info-item { display: flex; gap: 20px; margin-bottom: 30px; }
.info-item i { font-size: 1.5rem; margin-top: 5px; }
.info-item h4 {
  font-size: clamp(1.05rem, 2.8vw, 1.25rem);
  line-height: 1.3;
  margin-bottom: 4px;
}

.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-size: clamp(0.875rem, 2.2vw, 0.95rem);
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.2);
  color: white;
  border-radius: 4px;
  font-size: clamp(1rem, 2.2vw, 1.05rem);
  font-family: inherit;
}

.contact-form input:focus { border-color: var(--color-gold-primary); outline: none; }

/* Footer */
.footer {
  padding: 80px 0 20px;
  background: #050505;
  border-top: 2px solid var(--color-gold-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-logo { height: 80px; margin-bottom: 20px; }
.social-links { display: flex; gap: 15px; margin-top: 25px; }
.social-links a { 
    font-size: 1.4rem; 
    color: var(--color-gold-primary);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--grad-gold);
    color: var(--color-text-dark);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    border-color: transparent;
}
.footer-links h4, .footer-contact h4 {
  font-size: clamp(1.05rem, 2.8vw, 1.25rem);
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--color-gold-primary);
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links li a {
  font-size: clamp(0.875rem, 2.2vw, 0.95rem);
}
.footer-links li a:hover {
    color: var(--color-gold-primary);
    padding-left: 5px;
}

.footer-bottom { 
  text-align: center; 
  margin-top: 60px; 
  padding-top: 20px; 
  border-top: 1px solid rgba(255,255,255,0.1); 
  font-size: clamp(0.875rem, 2.2vw, 0.95rem); 
  color: var(--color-text-muted);
  position: relative;
  z-index: 10;
}
.footer-bottom a.designer-link {
  color: var(--color-gold-primary);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  z-index: 10;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

.footer-bottom a.designer-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Floating Elements */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: 0.3s;
}

.whatsapp-float:hover { transform: scale(1.1); }

/* FAQ */
.faq-grid { max-width: 800px; margin: 40px auto 0; }
.faq-item { margin-bottom: 15px; cursor: pointer; padding: 20px; }
.faq-question { display: flex; justify-content: space-between; align-items: center; }
.faq-question h4 {
  font-size: clamp(1.05rem, 2.8vw, 1.25rem);
  line-height: 1.35;
}
.faq-answer { max-height: 0; overflow: hidden; transition: 0.4s ease; margin-top: 0; }
.faq-answer p {
  font-size: clamp(1rem, 2.5vw, 1.05rem);
  line-height: 1.6;
}
.faq-item.active .faq-answer { max-height: 200px; margin-top: 15px; }
.faq-item.active i { transform: rotate(45deg); color: var(--color-gold-primary); }

/* Loader */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-bg); /* #0a0a0a */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  gap: 18px;
  transition: opacity 0.5s ease;
}

.loader-logo {
  height: 90px;
  width: auto;
  opacity: 0;
  animation:
    logoFadeIn 1.2s ease forwards,
    logoPulse 2s ease-in-out 1.2s infinite;
}

@keyframes logoFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes logoPulse {
  0%,  100% { transform: scale(1); }
  50%        { transform: scale(1.04); }
}

.loader-text {
  font-family: var(--font-heading); /* Cinzel */
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 4px;
  /* gold gradient from .gold-text utility — inherited */
  margin: 0;
}

/* Override h2 default bottom-margin & underline for loader context */
.loader-text::after { display: none; }
.loader-text { margin-bottom: 0 !important; }

.loader-bar {
  width: 160px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 1px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--grad-gold); /* #d4af37 → #f4d03f → #b8860b */
  border-radius: 1px;
  animation: barFill 1.6s ease forwards;
}

@keyframes barFill {
  from { width: 0%; }
  to   { width: 100%; }
}

.loader-wrapper.fade-out {
  opacity: 0;
  pointer-events: none;
}


.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  background: var(--color-gold-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  opacity: 0;
  transition: 0.3s;
  z-index: 100;
}

.scroll-top.show { opacity: 1; }

/* Mobile Optimization & Premium Refinements */
.menu-toggle { 
  display: none; 
  font-size: 1.8rem; 
  cursor: pointer; 
  color: var(--color-gold-primary);
  transition: 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* Navigation Mobile States */
@media (max-width: 992px) {
  .navbar { padding: 15px 0; }
  .logo img { height: 50px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-text h2, .about-text h2::after { text-align: center; margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .section { padding: var(--section-padding-mobile); }
  
  /* Mobile Menu Redesign */
  .nav-links { 
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    max-width: 75%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    padding: 70px 30px;
    transition: 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1002; /* Above overlay */
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: -15px 0 30px rgba(0,0,0,0.8);
  }

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-links.active { right: 0; }

  .nav-links li { 
    width: 100%;
    margin-bottom: 0;
  }

  .nav-links a { 
    font-family: var(--font-heading);
    font-size: clamp(0.875rem, 2.5vw, 0.95rem); 
    padding: 12px 0;
    display: block;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    color: var(--color-text-main);
  }

  .nav-links a:hover {
    color: var(--color-gold-primary);
    padding-left: 5px;
  }

  .menu-toggle { display: block; position: relative; z-index: 1001; }
  .nav-cta { display: none; }

  /* Hero Adjustments */
  .hero-btns { 
    flex-direction: column; 
    gap: 12px; 
    width: 90%; 
    max-width: 320px; 
    margin: 25px auto 0; 
  }
  
  .hero-btns .gold-btn, .hero-btns .outline-btn { 
    width: 100%; 
    text-align: center; 
    padding: 14px 15px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    white-space: nowrap;
  }

  .hero-btns .outline-btn i {
    margin-right: 8px;
    color: var(--color-gold-primary);
  }
  .trust-badges { gap: 15px; justify-content: center; margin-top: 30px; }
  .trust-badges span { font-size: 0.8rem; }

  /* Section Layouts */
  .featured-flex { flex-direction: column; padding: 40px 20px; }
  .collection-item { grid-template-columns: 1fr; gap: 30px; direction: ltr !important; }
  .collection-item:nth-child(even) .collection-text { direction: ltr !important; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .about-img { padding-right: 10px; }
  .about-img img { box-shadow: 10px 10px 0 var(--color-gold-primary); }

  /* Services & Gallery Grid Fixes */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .service-card { padding: 20px 15px; }
  .service-card i { font-size: 1.8rem; margin-bottom: 10px; }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Filter Buttons Mobile Fix */
  .filters {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
  }

  .filter-btn {
    padding: 8px 16px;
    border-radius: 50px;
  }

  /* Lightbox Mobile Adjustments */
  .lightbox-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }
  .lightbox-close { top: 15px; right: 15px; width: 40px; height: 40px; font-size: 1.4rem; }
  .lightbox-img-wrap { max-width: 92vw; }

  /* Timeline */
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .process-timeline::before { display: none; }
  .process-step { margin-bottom: 0; padding: 15px; background: rgba(255, 255, 255, 0.03); border-radius: 4px; }
  .step-num { width: 35px; height: 35px; margin-bottom: 10px; }
  
  /* FAQ */
  .faq-grid { margin-top: 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-about, .footer-links, .footer-contact { display: flex; flex-direction: column; align-items: center; }
  .social-links { justify-content: center; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1rem; }
  .stats { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; width: 100%; }
  .cta-btns .gold-btn, .cta-btns .outline-btn { width: 100%; }
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.2, 1, 0.3, 1), transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1.2s cubic-bezier(0.2, 1, 0.3, 1), transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1.2s cubic-bezier(0.2, 1, 0.3, 1), transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-zoom {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 1.2s cubic-bezier(0.2, 1, 0.3, 1), transform 1.2s cubic-bezier(0.2, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.active, 
.reveal-left.active, 
.reveal-right.active, 
.reveal-zoom.active {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* Hero Floating Animation */
@keyframes floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

.floating-anim {
  animation: floating 4s ease-in-out infinite;
}

/* Form Results */
.form-result {
    display: none;
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 4px;
    font-size: 0.95rem;
    text-align: center;
    animation: fadeIn 0.4s ease;
}

.form-result.success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.form-result.error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
