/* ========================================
   MAHAKAAL COLLECTION 07 - STYLES
   Premium Mobile-First Static Website
   ======================================== */

/* ---- CSS Variables ---- */
:root {
  --gold: #D4A048;
  --dark-gold: #B88A3D;
  --black: #1A1A1A;
  --white: #FFFFFF;
  --cream: #F8F5F0;
  --light-gold: #F5ECD7;
  --muted: #6B6560;
  --border: #E8E3DC;
  --whatsapp: #25D366;
  --shadow-card: 0 4px 20px rgba(26, 26, 26, 0.06);
  --shadow-card-hover: 0 8px 30px rgba(26, 26, 26, 0.10);
  --shadow-btn: 0 4px 15px rgba(212, 160, 72, 0.30);
  --shadow-btn-hover: 0 6px 20px rgba(212, 160, 72, 0.40);
  --shadow-sticky: 0 -4px 20px rgba(0, 0, 0, 0.08);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-card: 12px;
  --radius-btn: 50px;
  --radius-img: 8px;
  --transition: all 0.25s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--black);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  z-index: 9999;
  font-weight: 600;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  top: 0;
}

/* ---- Curtain Reveal ---- */
.curtain-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  pointer-events: none;
}

.curtain-panel {
  position: fixed;
  top: 0;
  width: 50vw;
  height: 100vh;
  background: var(--gold);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.curtain-left {
  left: 0;
  transform: translateX(0);
}

.curtain-right {
  right: 0;
  transform: translateX(0);
}

.curtain-logo {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  z-index: 61;
  opacity: 0.9;
  transition: opacity 0.4s ease;
  letter-spacing: 0.1em;
}

/* Curtain animation states */
.curtain-overlay.revealed .curtain-left {
  transform: translateX(-100%);
}

.curtain-overlay.revealed .curtain-right {
  transform: translateX(100%);
}

.curtain-overlay.logo-fade .curtain-logo {
  opacity: 0;
}

.curtain-overlay.hidden {
  display: none;
}

/* ---- Navigation ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 1.25rem;
  transition: var(--transition);
  transition-property: background, box-shadow, padding;
}

.navbar.scrolled {
  background: var(--black);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  padding: 0.75rem 1.25rem;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-main {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.02em;
}

.logo-sub {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--white);
  letter-spacing: 0.15em;
  opacity: 0.85;
}

.logo-sub sup {
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 600;
}

.nav-links {
  display: none;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  opacity: 0.85;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.2s ease;
}

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

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-cta-btn {
  display: none;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: var(--black);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}

.nav-cta-btn:hover {
  background: var(--dark-gold);
  transform: translateY(-1px);
}

.menu-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: var(--transition);
}

.hamburger {
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-20px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: var(--white);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mobile-nav-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  transition: opacity 0.2s;
}

.mobile-nav-link:hover {
  opacity: 0.8;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-btn);
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  background: var(--dark-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-btn-hover);
}

.btn-secondary-light {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary-light:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}

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

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

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}

/* ---- Hero Section ---- */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.25rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s ease forwards;
  animation-delay: 2s;
}

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

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(212, 160, 72, 0.15);
  border: 1px solid rgba(212, 160, 72, 0.3);
  border-radius: var(--radius-btn);
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
}

.hero-tagline {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.hero-buttons .btn {
  width: 100%;
  max-width: 280px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold);
}

.stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.stat-dot {
  color: var(--gold);
  font-size: 1.25rem;
  opacity: 0.6;
  margin: 0 0.25rem;
}

/* ---- Section Styles ---- */
.section {
  padding: 4rem 1.25rem;
}

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

.section-dark {
  background: var(--black);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

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

.section-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 0.5rem;
}

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

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

.section-subtitle-light {
  color: rgba(255, 255, 255, 0.5);
}

.section-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ---- Product Grid ---- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  cursor: pointer;
}

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

.product-image {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-info {
  padding: 1rem;
}

.product-title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.product-tag {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---- About Section ---- */
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-image {
  border-radius: var(--radius-card);
  overflow: hidden;
}

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

.about-content .section-title {
  margin-bottom: 1rem;
}

.about-text {
  margin-bottom: 1.5rem;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.trust-badge-gold {
  color: var(--gold);
}

/* ---- Gallery Section ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.gallery-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212, 160, 72, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-overlay i {
  font-size: 1.5rem;
  color: var(--white);
  background: rgba(26, 26, 26, 0.7);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover img {
  transform: scale(1.05);
  opacity: 0.85;
}

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

/* ---- Lightbox ---- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: var(--white);
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 81;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 81;
  transition: background 0.2s;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-counter {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 1rem;
  font-weight: 500;
}

/* ---- How to Order Section ---- */
.steps-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  position: relative;
}

.steps-line {
  display: none;
}

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

.step-icon {
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--black);
  font-size: 1.25rem;
}

.step-title {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--black);
  margin-bottom: 0.4rem;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--muted);
  max-width: 220px;
  margin: 0 auto;
}

.tip-box {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  border-left: 4px solid var(--gold);
  margin-top: 2.5rem;
}

.tip-box p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ---- Contact Section ---- */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--cream);
  border-radius: var(--radius-card);
  padding: 1.25rem;
  transition: var(--transition);
}

.contact-card:hover {
  background: var(--light-gold);
  transform: translateX(4px);
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-icon-gold {
  background: var(--light-gold);
  color: var(--gold);
}

.contact-icon-green {
  background: #E8F5E9;
  color: var(--whatsapp);
}

.contact-details h4 {
  font-weight: 600;
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 0.15rem;
}

.contact-details p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.contact-action {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.contact-action i {
  font-size: 0.7rem;
  transition: transform 0.2s;
}

.contact-card:hover .contact-action i {
  transform: translateX(3px);
}

.contact-map {
  aspect-ratio: 4/3;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--cream);
  border: 1px solid var(--border);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
}

/* ---- Footer ---- */
.footer {
  background: var(--black);
  padding: 2.5rem 1.25rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.footer-logo .logo-main {
  font-size: 1.35rem;
}

.footer-logo .logo-sub {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.footer-tagline-gold {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.footer-links h4 {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

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

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 1.5rem 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
}

/* ---- Sticky Mobile CTA ---- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  border-top: 2px solid var(--gold);
  padding: 0.75rem 1rem;
  display: flex;
  gap: 0.75rem;
  z-index: 90;
  box-shadow: var(--shadow-sticky);
  transition: transform 0.3s ease;
}

.sticky-cta.hidden {
  transform: translateY(100%);
}

.sticky-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.sticky-btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.sticky-btn-outline:hover {
  background: var(--gold);
  color: var(--black);
}

.sticky-btn-solid {
  background: var(--gold);
  color: var(--black);
}

.sticky-btn-solid:hover {
  background: var(--dark-gold);
}

/* ---- WhatsApp Float Button ---- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 70;
  transition: transform 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ---- Scroll to Top ---- */
.scroll-top {
  position: fixed;
  bottom: 5rem;
  right: 1.25rem;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-btn);
  z-index: 70;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--dark-gold);
}

/* ---- Scroll Animations ---- */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays */
[data-animate]:nth-child(1) { transition-delay: 0ms; }
[data-animate]:nth-child(2) { transition-delay: 100ms; }
[data-animate]:nth-child(3) { transition-delay: 200ms; }
[data-animate]:nth-child(4) { transition-delay: 300ms; }
[data-animate]:nth-child(5) { transition-delay: 400ms; }
[data-animate]:nth-child(6) { transition-delay: 500ms; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate] {
    opacity: 1;
    transform: none;
  }
  .hero-content {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* ========================================
   TABLET (481px - 768px)
   ======================================== */
@media (min-width: 481px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }

  .hero-buttons .btn {
    width: auto;
    min-width: 200px;
  }

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

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

/* ========================================
   DESKTOP (769px+)
   ======================================== */
@media (min-width: 769px) {
  .section {
    padding: 6rem 2rem;
  }

  .nav-links {
    display: flex;
  }

  .nav-cta-btn {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 1.35rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

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

  .about-grid {
    flex-direction: row;
    align-items: center;
    gap: 4rem;
  }

  .about-image {
    flex: 1;
  }

  .about-content {
    flex: 1;
  }

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

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

  .steps-line {
    display: block;
    position: absolute;
    top: 28px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--gold);
    opacity: 0.3;
    z-index: 0;
  }

  .step-card {
    position: relative;
    z-index: 1;
  }

  .contact-grid {
    flex-direction: row;
    gap: 3rem;
  }

  .contact-info {
    flex: 1.2;
  }

  .contact-map {
    flex: 1;
    aspect-ratio: auto;
    min-height: 400px;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .sticky-cta {
    display: none;
  }

  .whatsapp-float {
    display: flex;
  }

  .scroll-top {
    bottom: 1.5rem;
  }

  .lightbox-nav {
    width: 56px;
    height: 56px;
    font-size: 1.75rem;
  }

  .lightbox-prev {
    left: 2rem;
  }

  .lightbox-next {
    right: 2rem;
  }
}

/* ========================================
   LARGE DESKTOP (1025px+)
   ======================================== */
@media (min-width: 1025px) {
  .hero-title {
    font-size: 4.5rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .about-grid {
    gap: 5rem;
  }
}

/* ========================================
   FOCUS STATES (Accessibility)
   ======================================== */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  .navbar,
  .sticky-cta,
  .whatsapp-float,
  .scroll-top,
  .curtain-overlay,
  .lightbox,
  .mobile-menu {
    display: none !important;
  }

  .section {
    padding: 2rem 1rem;
    page-break-inside: avoid;
  }

  body {
    color: #000;
    background: #fff;
  }
}
