/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* =========================
   COLOR VARIABLES
========================= */
:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --border: #e0e0e0;
  --accent: #c9a24d;
  --shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0e0f11;
    --surface: #181a1f;
    --text: #f1f1f1;
    --muted: #b0b0b0;
    --border: #2a2d34;
    --accent: #d4b77a;
    --shadow: 0 10px 30px rgba(0,0,0,0.5);
  }
}

/* =========================
   ABOUT SECTION VARIABLES
========================= */
:root {
  --mv-bg: #f6f7f9;
  --mv-text: #111111;
  --mv-muted: #666666;
  --mv-surface: rgba(0,0,0,0.03);
  --mv-border: rgba(0,0,0,0.1);
  --mv-accent: #c9a24d;
  --mv-icon-bg: linear-gradient(135deg, #c9a86a 0%, #ffefba 100%);
}

@media (prefers-color-scheme: dark) {
  :root {
    --mv-bg: #000000;
    --mv-text: #ffffff;
    --mv-muted: rgba(255,255,255,0.6);
    --mv-surface: rgba(255,255,255,0.05);
    --mv-border: rgba(255,255,255,0.1);
  }
}

/* =========================
   BASE
========================= */
body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  padding-top: 50px;
  overflow-x: hidden;
}

p, span, li, h1, h2, h3, h4, h5, h6 {
  color: var(--text);
}

a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent);
}

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

/* =========================
   HEADER
========================= */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  backdrop-filter: blur(6px);
}

.header-wrap {
  max-width: 1200px;
  margin: auto;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo {
  height: 40px;
}

.brand-text h1 {
  font-size: 18px;
  line-height: 1;
  color: #d4b77a;
}

.brand-text span {
  font-size: 12px;
  color: #d4b77a;
}

.nav a {
  margin-left: 26px;
  font-weight: 500;
  position: relative;
  color: #d4b77a;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #d4b77a;
  transition: width 0.3s ease;
}

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

/* =========================
   SECTION LAYOUT
========================= */
section {
  background: var(--bg);
}

section:nth-of-type(even) {
  background: var(--surface);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 70px 15px;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  color: var(--accent);
}

/* =========================
   HERO / SLIDESHOW
========================= */
:root {
  --hero-bg-overlay: rgba(0, 0, 0, 0.5);
  --hero-text: #ffffff;
  --hero-subtext: #ffffff;
  --hero-btn-bg: #d4b77a;
  --hero-btn-text: #000000;
}

.slideshow {
  height: 600px;
  position: relative;
  overflow: hidden;
  background: var(--mv-bg);
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fade 18s infinite;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 6s; }
.slide:nth-child(3) { animation-delay: 12s; }

@keyframes fade {
  0% { opacity: 0; }
  10% { opacity: 1; }
  30% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-bg-overlay);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-overlay h1 {
  color: var(--hero-text);
  font-size: 42px;
}

.hero-overlay p {
  color: var(--hero-subtext);
  max-width: 600px;
}

.hero-btn {
  margin-top: 10px;
  padding: 14px 38px;
  background: var(--hero-btn-bg);
  color: var(--hero-btn-text);
  font-weight: 600;
  border-radius: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

/* =========================
   PRODUCTS
========================= */
.products-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-decoration: none;
  display: block;
  color: inherit;
  cursor: default;
}

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

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

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

.product-details {
  padding: 20px;
}

.product-details h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--text);
  transition: color 0.3s ease;
}

.product-card:hover .product-details h3 {
  color: var(--accent);
}

.product-details p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* See More Button */
.see-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  padding: 10px 20px;
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.see-more-btn:hover {
  background: var(--accent);
  color: #000;
  transform: translateX(5px);
}

.see-more-btn i {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.see-more-btn:hover i {
  transform: translateX(3px);
}

/* =========================
   WHATSAPP FLOAT
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 600;
  z-index: 9999;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  transition: 0.3s ease;
}

/* =========================
   ABOUT SECTION
========================= */
.about-section {
  position: relative;
  padding: 100px 0;
  background-color: var(--mv-bg);
  color: var(--mv-text);
  overflow: hidden;
}

.about-bg-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--mv-bg);
  z-index: 1;
}

.about-bg-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, rgba(201, 162, 77, 0.05), transparent);
  z-index: 2;
}

.container.relative {
  position: relative;
  z-index: 3;
}

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

.about-header .subtitle {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--mv-accent);
  font-size: 12px;
}

.about-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 200;
  margin: 15px 0 25px;
  letter-spacing: 2px;
}

.gold-gradient-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mv-accent), transparent);
  margin: 0 auto 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.about-image-wrapper {
  position: relative;
}

.main-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--mv-border);
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.outer-gold-frame {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(201, 162, 77, 0.3);
  z-index: -1;
}

.about-content p {
  color: var(--mv-muted);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.about-content strong {
  color: var(--mv-text);
}

.features-check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 30px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-item i {
  color: var(--mv-accent);
  font-size: 14px;
}

.check-item span {
  color: var(--mv-muted);
  font-size: 0.9rem;
}

/* =========================
   PROJECTS SECTION
========================= */
.projects-section {
  background-color: var(--bg);
  padding: 100px 0;
  color: var(--text);
}

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

.section-header .subtitle {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: #c9a24d;
  font-size: 12px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 200;
  margin: 15px 0;
}

.section-header p {
  color: var(--muted);
  margin-top: 10px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.project-card {
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.project-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0.9;
  transition: 0.3s;
}

.project-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.project-tag.residential { color: #34d399; }
.project-tag.commercial { color: #60a5fa; }

.project-card h3 {
  font-weight: 300;
  font-size: 1.4rem;
  margin-bottom: 10px;
  transition: 0.3s;
  color: #fff;
}

.project-meta {
  display: flex;
  gap: 15px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.card-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
}

.project-card:hover img { transform: scale(1.1); }
.project-card:hover h3 { color: #c9a24d; }
.project-card:hover .card-border { border-color: rgba(201, 162, 77, 0.4); }

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  inset: 0;
  background: rgba(0,0,0,0.95);
  padding: 20px;
}

.modal-content {
  background: #111;
  max-width: 900px;
  margin: 50px auto;
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 30px;
  cursor: pointer;
  color: #fff;
  z-index: 10;
}

.modal-body img { width: 100%; height: auto; }
.modal-info { padding: 30px; }

/* =========================
   BRAND SHOWCASE
========================= */
.brand-showcase {
  background-color: var(--mv-bg);
  padding: 80px 24px;
  border-top: 1px solid var(--mv-border);
  border-bottom: 1px solid var(--mv-border);
  overflow: hidden;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
  align-items: center;
}

.brand-item {
  text-align: center;
}

.lordex-logo {
  max-width: 150px;
  height: auto;
  filter: grayscale(0.3);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.brand-item:hover .lordex-logo {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

/* =========================
   CONTACT SECTION
========================= */
.contact-section {
  background-color: var(--bg);
  padding: 100px 0;
  color: var(--text);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-bottom: 80px;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 30px;
  transition: 0.3s ease;
  text-align: center;
}

.info-card:hover {
  border-color: var(--accent);
}

.info-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}

.info-card h3 {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.info-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.form-title {
  font-size: 1.8rem;
  font-weight: 200;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.styled-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.styled-form input, 
.styled-form select, 
.styled-form textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 12px 15px;
  color: var(--text);
  transition: 0.3s;
  border-radius: 4px;
}

.styled-form input:focus, 
.styled-form select:focus, 
.styled-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.submit-btn {
  width: 100%;
  background-color: var(--accent);
  color: #000;
  border: none;
  padding: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  min-height: 50px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.success-box {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 40px;
  text-align: center;
  margin-bottom: 30px;
  border-radius: 8px;
}

.success-box i {
  font-size: 3rem;
  color: #22c55e;
  margin-bottom: 15px;
}

.map-container {
  height: 450px;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.location-details {
  background: var(--surface);
  padding: 30px;
  margin-top: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
}

.location-details h4 { margin-bottom: 10px; }
.location-details p { color: var(--muted); font-size: 0.9rem; }
.whatsapp-link { 
  color: var(--accent); 
  font-weight: 500; 
  display: block; 
  margin-top: 15px; 
}

/* =========================
   ANIMATIONS
========================= */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-zoom {
  opacity: 1;
  transform: none;
}

.js-enabled .reveal,
.js-enabled .reveal-up,
.js-enabled .reveal-left,
.js-enabled .reveal-right,
.js-enabled .reveal-zoom {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js-enabled .reveal-left { transform: translateX(-60px); }
.js-enabled .reveal-right { transform: translateX(60px); }
.js-enabled .reveal-up { transform: translateY(60px); }
.js-enabled .reveal-zoom { transform: scale(0.94); }

.js-enabled .reveal.active,
.js-enabled .reveal-up.active,
.js-enabled .reveal-left.active,
.js-enabled .reveal-right.active,
.js-enabled .reveal-zoom.active {
  opacity: 1;
  transform: none;
}

/* =========================
   PAGE LOADER
========================= */
#page-loader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader-ring {
  width: 60px;
  height: 60px;
  border: 3px solid rgba(201,168,106,0.2);
  border-top-color: #c9a86a;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.loader-text {
  margin-top: 20px;
  color: #c9a86a;
  letter-spacing: 4px;
  font-size: 14px;
}

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

/* =========================
   SCROLL PROGRESS
========================= */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #c9a86a, #ffefba);
  z-index: 3000;
}

/* =========================
   CURSOR GLOW
========================= */
#cursor-glow {
  position: fixed;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(201,168,106,0.15), transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  filter: blur(20px);
}

/* =========================
   TABLET RESPONSIVE (768px - 1024px)
========================= */
@media (min-width: 768px) and (max-width: 1024px) {
  /* Header */
  .header-wrap {
    padding: 8px 20px;
  }
  
  .brand-text h1 {
    font-size: 16px;
  }
  
  .nav a {
    margin-left: 20px;
    font-size: 0.9rem;
  }
  
  /* Hero */
  .slideshow {
    height: 500px;
  }
  
  .hero-overlay h1 {
    font-size: 36px;
  }
  
  /* Products - 2 columns */
  .products-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  /* About */
  .about-grid {
    gap: 50px;
  }
  
  /* Projects - 2 columns */
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  /* Brands - 3 columns */
  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Contact - 2 columns */
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-main-grid {
    gap: 50px;
  }
}

/* =========================
   MOBILE RESPONSIVE (<768px)
========================= */
@media (max-width: 767px) {
  /* Disable effects */
  #cursor-glow {
    display: none !important;
  }
  
  body {
    padding-top: 70px;
  }
  
  /* Header */
  .header-wrap {
    padding: 10px 15px;
    flex-wrap: wrap;
  }
  
  .brand {
    gap: 12px;
  }
  
  .logo {
    height: 35px;
  }
  
  .brand-text h1 {
    font-size: 14px;
  }
  
  .brand-text span {
    font-size: 10px;
  }
  
  /* Mobile Navigation */
  .nav {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: space-around;
    border-top: 1px solid var(--border);
    padding-top: 10px;
  }
  
  .nav a {
    margin-left: 0;
    font-size: 0.85rem;
  }
  
  .nav a::after {
    display: none;
  }
  
  /* Hero */
  .slideshow {
    height: 400px;
  }
  
  .hero-overlay {
    padding: 20px;
  }
  
  .hero-overlay h1 {
    font-size: 28px;
    line-height: 1.2;
  }
  
  .hero-overlay p {
    font-size: 14px;
    padding: 0 10px;
  }
  
  .hero-btn {
    padding: 12px 28px;
    font-size: 14px;
  }
  
  /* Container */
  .container {
    padding: 50px 20px;
  }
  
  /* Section headers */
  .section-header h2,
  .about-header h2 {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  
  /* Products - 1 column */
  .products-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .product-card img {
    height: 200px;
  }
  
  .see-more-btn {
    padding: 8px 16px;
    font-size: 0.85rem;
    margin-top: 12px;
  }
  
  .see-more-btn:hover {
    transform: none;
  }
  
  /* About */
  .about-section {
    padding: 60px 0;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-header {
    margin-bottom: 40px;
  }
  
  .about-content p {
    font-size: 0.95rem;
  }
  
  .features-check-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .outer-gold-frame {
    width: 150px;
    height: 150px;
    bottom: -20px;
    right: -20px;
  }
  
  /* Brands - 2 columns */
  .brand-showcase {
    padding: 50px 20px;
  }
  
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .lordex-logo {
    max-width: 120px;
  }
  
  /* Projects - 1 column */
  .projects-section {
    padding: 60px 0;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .project-card h3 {
    font-size: 1.1rem;
  }
  
  .project-meta {
    font-size: 11px;
    gap: 10px;
  }
  
  /* Contact */
  .contact-section {
    padding: 60px 0;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }
  
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .styled-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .form-title {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }
  
  .map-container {
    height: 300px;
  }
  
  /* WhatsApp */
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    padding: 12px 18px;
    font-size: 14px;
  }
  
  /* Modal */
  .modal-content {
    margin: 30px auto;
  }
  
  .modal-info {
    padding: 20px;
  }
  
  /* Disable hover effects */
  .product-card:hover,
  .project-card:hover,
  .hero-btn:hover,
  .submit-btn:hover,
  .whatsapp-float:hover {
    transform: none !important;
  }
}

/* =========================
   EXTRA SMALL MOBILE (<480px)
========================= */
@media (max-width: 479px) {
  .hero-overlay h1 {
    font-size: 24px;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .nav a {
    font-size: 0.75rem;
  }
  
  .lordex-logo {
    max-width: 100px;
  }
}

/* =========================
   LARGE DESKTOP (>1400px)
========================= */
@media (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
  
  .products-container {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =========================
   LANDSCAPE MOBILE
========================= */
@media (max-width: 767px) and (orientation: landscape) {
  .slideshow {
    height: 350px;
  }
  
  .hero-overlay h1 {
    font-size: 24px;
  }
  
  .hero-overlay p {
    display: none;
  }
}

/* =========================
   TOUCH DEVICE IMPROVEMENTS
========================= */
@media (hover: none) and (pointer: coarse) {
  /* Ensure touch targets are at least 44x44px */
  button,
  a,
  .nav a,
  .product-card,
  .project-card {
    min-height: 44px;
  }
  
  /* Disable hover effects on touch devices */
  .product-card:hover,
  .project-card:hover,
  .hero-btn:hover,
  .submit-btn:hover {
    transform: none !important;
  }
}

/* =========================
   PRINT STYLES
========================= */
@media print {
  #cursor-glow,
  .whatsapp-float,
  #scroll-progress,
  #page-loader,
  .hero-btn,
  .submit-btn {
    display: none !important;
  }
  
  .header {
    position: relative;
  }
  
  * {
    background: white !important;
    color: black !important;
  }
  
  .slideshow {
    height: 400px;
  }
  
  .product-card,
  .project-card,
  .info-card {
    page-break-inside: avoid;
  }
}