/* ==========================================================================
   Google Fonts
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Poppins:wght@400;500;600;700&display=swap');

/* ==========================================================================
   1. CSS Reset & Variables
   ========================================================================== */
:root {
  --color-primary: #111111;
  --color-white: #FFFFFF;
  --color-gold: #C8A96A;
  --color-gold-hover: #B8955A;
  --color-gold-light: rgba(200, 169, 106, 0.1);
  --color-light-bg: #F8F8F8;
  --color-text: #222222;
  --color-text-muted: #666666;
  --color-border: #EAEAEA;
  --color-whatsapp: #25D366;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --section-padding: 100px 0;
  --radius: 16px;
  --transition: all 0.3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ==========================================================================
   2. Global Styles
   ========================================================================== */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.7;
  background: var(--color-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

::selection {
  background: var(--color-gold);
  color: var(--color-primary);
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-primary); }
::-webkit-scrollbar-thumb { background: var(--color-gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-gold-hover); }

/* ==========================================================================
   3. Utility Classes
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  letter-spacing: 0.5px;
}

.btn svg { flex-shrink: 0; }

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-primary);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.4);
}
.btn-secondary:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-primary);
}

.btn-dark {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn-dark:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline-dark:hover {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
  border-color: var(--color-whatsapp);
}
.btn-whatsapp:hover {
  background: #1EBE5A;
  border-color: #1EBE5A;
}

.btn-lg { padding: 16px 36px; font-size: 0.95rem; }
.btn-nav { padding: 10px 24px; font-size: 0.85rem; }

/* ==========================================================================
   4. Preloader
   ========================================================================== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--color-primary);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

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

.preloader-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 5px;
  color: var(--color-gold);
  margin-bottom: 30px;
}

.preloader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(200,169,106,0.2);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  margin: 0 auto;
  animation: spin 0.8s linear infinite;
}

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

/* ==========================================================================
   5. Navigation
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
  display: flex;
  align-items: center;
}

.navbar.scrolled {
  background: var(--color-white);
  box-shadow: 0 2px 30px rgba(0,0,0,0.08);
  height: 70px;
}

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

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 4px;
  color: var(--color-gold);
}

.logo-sub {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.55rem;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  margin-top: 2px;
}

.navbar.scrolled .logo-sub { color: var(--color-text-muted); }

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

.nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.3px;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: var(--color-gold);
  bottom: -2px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

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

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

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

.nav-cta-mobile { display: none; }

.nav-cta-desktop {
  background: var(--color-gold);
  color: var(--color-primary);
  border-color: var(--color-gold);
}
.nav-cta-desktop:hover {
  background: var(--color-white);
  border-color: var(--color-white);
}

.navbar.scrolled .nav-cta-desktop {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.navbar.scrolled .nav-cta-desktop:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
  color: var(--color-primary);
}

/* Hamburger */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}

.hamburger .bar {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--color-white);
  margin: 6px 0;
  transition: var(--transition);
  border-radius: 2px;
}

.navbar.scrolled .hamburger .bar { background: var(--color-primary); }

.hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   6. Hero Section
   ========================================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.65) 50%,
    rgba(0,0,0,0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.hero-headline {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subheading {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

/* Hero Badges */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.badge {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.9);
}

.badge-icon { font-size: 1rem; }

/* Hero CTA */
.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Hero Hours */
.hero-hours {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50px;
  padding: 12px 24px;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
}

.hours-icon { font-size: 1.1rem; }

/* ==========================================================================
   7. Section Common
   ========================================================================== */
.section { padding: var(--section-padding); }
.section-alt { background: var(--color-light-bg); }
.section-dark { background: var(--color-primary); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  display: block;
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.section-label.light { color: var(--color-gold); }

.section-title {
  font-size: 2.6rem;
  color: var(--color-primary);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.section-title.light { color: var(--color-white); }

.section-line {
  width: 60px;
  height: 3px;
  background: var(--color-gold);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.section-subtitle {
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

/* ==========================================================================
   8. About Section
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
}

.about-image-accent {
  position: absolute;
  top: 20px;
  left: -15px;
  right: 15px;
  bottom: -20px;
  border: 2px solid var(--color-gold);
  border-radius: 20px;
  z-index: -1;
}

.about-content .section-line { margin: 0 0 24px 0; }

.about-text {
  color: var(--color-text-muted);
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 36px;
}

.stat-item {
  border-left: 3px solid var(--color-gold);
  padding-left: 16px;
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  display: inline;
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-gold);
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 4px;
  font-weight: 500;
}

/* ==========================================================================
   9. Services Section
   ========================================================================== */
.service-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 50px;
  background: var(--color-white);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
}

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

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

.service-card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  border-color: var(--color-gold);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--color-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--color-gold);
}

.service-icon svg { stroke: var(--color-gold); }

.service-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.service-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-link {
  color: var(--color-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: var(--transition);
}

.service-link:hover { color: var(--color-gold-hover); letter-spacing: 3px; }

/* ==========================================================================
   10. Why Choose Us
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 40px 30px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(200,169,106,0.12);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--color-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--color-gold);
}

.feature-icon svg { stroke: var(--color-gold); }

.feature-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-primary);
}

.feature-desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   11. Bridal Section
   ========================================================================== */
.bridal-grid {
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 60px;
  align-items: center;
}

.bridal-image {
  position: relative;
  z-index: 1;
}

.bridal-image img {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.bridal-image-frame {
  position: absolute;
  top: 20px;
  left: -15px;
  right: 15px;
  bottom: -20px;
  border: 2px solid var(--color-gold);
  border-radius: 20px;
  z-index: -1;
}

.bridal-content .section-line { margin: 0 0 24px 0; }

.bridal-text {
  color: rgba(255,255,255,0.78);
  margin-bottom: 30px;
  font-size: 1.02rem;
  line-height: 1.8;
}

.bridal-features {
  margin-bottom: 36px;
}

.bridal-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.check-icon {
  color: var(--color-gold);
  font-weight: 700;
  font-size: 1rem;
}

.section-dark .btn-primary {
  background: var(--color-gold);
  color: var(--color-primary);
  border-color: var(--color-gold);
}
.section-dark .btn-primary:hover {
  background: var(--color-white);
  border-color: var(--color-white);
}

/* ==========================================================================
   12. Gallery Section
   ========================================================================== */
.gallery-masonry {
  column-count: 3;
  column-gap: 20px;
}

.gallery-item {
  margin-bottom: 20px;
  break-inside: avoid;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-label {
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transform: translateY(15px);
  transition: var(--transition);
}

.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-label { transform: translateY(0); }

/* ==========================================================================
   13. Testimonials
   ========================================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
  border-top: 3px solid var(--color-gold);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.testimonial-quote {
  position: absolute;
  top: 12px;
  right: 20px;
  font-size: 5rem;
  font-family: Georgia, serif;
  color: var(--color-gold);
  opacity: 0.1;
  line-height: 1;
  pointer-events: none;
}

.testimonial-stars {
  color: var(--color-gold);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-style: italic;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--color-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-gold);
  font-size: 1.1rem;
}

.author-name {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-primary);
}

.author-detail {
  display: block;
  font-size: 0.8rem;
  color: #999;
  margin-top: 2px;
}

/* ==========================================================================
   14. CTA Section
   ========================================================================== */
.section-cta {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-hover) 100%);
  text-align: center;
  padding: 80px 0;
}

.cta-heading {
  font-size: 2.6rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}

.cta-text {
  color: var(--color-white);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   15. Contact Section
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--color-gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg { stroke: var(--color-gold); }

.contact-item h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  font-weight: 600;
}

.contact-item p {
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.contact-phone {
  color: var(--color-gold) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-phone:hover { color: var(--color-gold-hover) !important; }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.contact-map iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

/* ==========================================================================
   16. Footer
   ========================================================================== */
.footer {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.footer .logo-sub { color: rgba(255,255,255,0.5); }

.footer-tagline {
  color: var(--color-gold);
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-desc {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  max-width: 280px;
  line-height: 1.7;
}

.footer-links h4,
.footer-hours h4,
.footer-contact h4 {
  font-size: 1rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-links h4::after,
.footer-hours h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--color-gold);
}

.footer-links ul li { margin-bottom: 10px; }

.footer-links ul a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links ul a:hover {
  color: var(--color-gold);
  padding-left: 6px;
}

.footer-hours ul li {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.footer-hours-note {
  color: var(--color-gold);
  font-size: 0.82rem;
  margin-top: 12px;
  font-weight: 500;
}

.footer-contact p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-phone {
  color: var(--color-gold) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  display: block;
  margin-bottom: 20px;
}

.footer-phone:hover { color: var(--color-white) !important; }

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.social-link svg { fill: rgba(255,255,255,0.6); transition: var(--transition); }
.social-link:hover { background: var(--color-gold); }
.social-link:hover svg { fill: var(--color-primary); }

.footer-bottom {
  text-align: center;
  padding: 24px 0;
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}

/* ==========================================================================
   17. Floating Buttons
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37,211,102,0.35);
  z-index: 999;
  transition: transform 0.3s ease;
  animation: pulse-wa 2s infinite;
}

.floating-whatsapp:hover { transform: scale(1.12); }

.floating-call {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-gold);
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(200,169,106,0.35);
  z-index: 999;
  transition: transform 0.3s ease;
}

.floating-call:hover { transform: scale(1.12); }

@keyframes pulse-wa {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: var(--color-gold);
  border: 1px solid rgba(200,169,106,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

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

.back-to-top svg { stroke: currentColor; }

/* ==========================================================================
   18. Mobile Bottom CTA
   ========================================================================== */
.mobile-cta {
  display: none;
}

.mobile-cta-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  height: 100%;
}

.mobile-cta-btn.call {
  background: var(--color-primary);
  color: var(--color-white);
}

.mobile-cta-btn.whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-white);
}

/* ==========================================================================
   19. Lightbox
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: var(--color-gold);
  cursor: pointer;
  background: none;
  border: none;
  z-index: 10001;
  transition: var(--transition);
}

.lightbox-close:hover { color: var(--color-white); transform: rotate(90deg); }

.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

/* ==========================================================================
   20. Animations
   ========================================================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ==========================================================================
   21. Responsive
   ========================================================================== */

/* Large */
@media (max-width: 1200px) {
  :root { --section-padding: 80px 0; }
  .hero-headline { font-size: 3.2rem; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Tablet */
@media (max-width: 992px) {
  .hamburger { display: block; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transition: right 0.4s ease;
    z-index: 1000;
  }
  .nav-menu.active { right: 0; }
  .nav-menu .nav-link {
    color: var(--color-white) !important;
    font-size: 1.3rem;
  }
  .nav-cta-mobile { display: block; }
  .nav-cta-desktop { display: none; }

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

  .bridal-image { order: 2; }
  .bridal-content { order: 1; text-align: center; }
  .bridal-content .section-line { margin: 0 auto 24px; }
  .bridal-features { display: inline-block; text-align: left; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { column-count: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --section-padding: 60px 0; }
  .hero-headline { font-size: 2.2rem; }
  .hero-subheading { font-size: 0.95rem; }
  .section-title { font-size: 2rem; }
  .cta-heading { font-size: 2rem; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-masonry { column-count: 2; }

  .floating-whatsapp { bottom: 80px; }
  .floating-call { display: flex; bottom: 80px; }
  .back-to-top { bottom: 150px; }

  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 56px;
    background: var(--color-white);
    box-shadow: 0 -2px 15px rgba(0,0,0,0.1);
    z-index: 998;
  }

  body { padding-bottom: 56px; }

  .cta-buttons { flex-direction: column; align-items: center; }
  .about-image img { height: 350px; }
  .about-content { text-align: center; }
  .about-content .section-line { margin: 0 auto 24px; }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-headline { font-size: 1.8rem; }
  .hero-badges { gap: 8px; }
  .badge { padding: 8px 14px; font-size: 0.78rem; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 280px; }
  .contact-actions { flex-direction: column; }
  .contact-actions .btn { width: 100%; }
}
