*{box-sizing:border-box;margin:0;padding:0;font-family:Arial,sans-serif}
body{background:#000;color:#f5c542}

/* ===== HEADER ===== 
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 5%;
  min-height: 60px; /
}

.header a{color:#f5c542;margin-left:20px;text-decoration:none}

*/

/* ===== TRANSPARENT HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 5%;
  min-height: 60px;

  background: rgba(0, 0, 0, 0.25); /* transparent */
  backdrop-filter: blur(6px);     /* glass effect */
  -webkit-backdrop-filter: blur(6px);

  border-bottom: 1px solid rgba(245, 197, 66, 0.25);

  z-index: 999;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.header a{color:#f5c542;margin-left:20px;text-decoration:none}
.header.scrolled {
  background: #000;
  box-shadow: 0 6px 20px rgba(0,0,0,0.7);
}



















/* ===== LOGO CONTAINER ===== */
.logo {
  margin-left: -10px;
  display: flex;
     /* 🔥 allow wide logo */
}

/* ===== LOGO IMAGE (IMPORTANT) ===== 
.logo img {
  
  width: 920px;        
  height: auto;       
  max-width: 30%;
  object-fit: contain;
}



 (max-width: 768px) {
  .header {
    height: 70px;
  }

  .logo img {
    height: 50px;
    min-width: 200px;
    max-width: 260px;
  }
}
*/



.logo img {
  height: 48px;
  transition: height 0.35s ease, filter 0.35s ease;
  animation: logoGlow 3s ease-in-out infinite;
}

/* Stronger glow when hovering */
.logo img:hover {
  filter: drop-shadow(0 0 14px rgba(255, 215, 0, 0.95));
}

/* Shrink logo when header scrolls */
.header.scrolled .logo img {
  height: 34px;
  animation: logoGlowSmall 3s ease-in-out infinite;
}

/* ===== KEYFRAMES ===== */
@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.9));
  }
  100% {
    filter: drop-shadow(0 0 4px rgba(255, 215, 0, 0.4));
  }
}

@keyframes logoGlowSmall {
  0% {
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.35));
  }
  50% {
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.7));
  }
  100% {
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.35));
  }
}

/* ===== HERO ===== */
.hero{
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  color: #fff;
}

.nav a:hover {
  color: #ffd700;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.8);
}

/* SLIDESHOW BACKGROUND */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fadeSlide 16s infinite ease-in-out;
  will-change: opacity;
}

/* Dark overlay */
.hero-slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,.75), rgba(0,0,0,.75));
  z-index: 2;
}

.hero h1 span{color:#ffd700}
/* Hero content above slideshow */
.hero-content{
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Text styles */
.hero-content h1{font-size:42px;margin-bottom:16px}
.hero-content h1 span{color:#ffd700}
.hero-content p{font-size:18px;margin-bottom:28px;color:#f5c542}

.hero-buttons{
  display:flex;
  gap:20px;
  justify-content:center;
}

/* SLIDESHOW IMAGES */
@keyframes fadeSlide {
  0%   { opacity: 0; }
  10%  { opacity: 1; }
  25%  { opacity: 1; }
  35%  { opacity: 0; }
  100% { opacity: 0; }
}
.hero-slide:nth-child(1) {
  background-image: url("assets/hero.jpg");
  animation-delay: 0s;
}

.hero-slide:nth-child(2) {
  background-image: url("assets/slide2.jpg");
  animation-delay: 4s;
}

.hero-slide:nth-child(3) {
  background-image: url("assets/slide3.jpg");
  animation-delay: 8s;
}

.hero-slide:nth-child(4) {
  background-image: url("assets/slide4.jpg");
  animation-delay: 12s;
}
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
  }
}


/* ===== BUTTONS ===== */
.btn{
  padding:14px 28px;font-size:16px;font-weight:600;
  text-decoration:none;border-radius:4px;
  transition:.3s;cursor:pointer
}
.btn.primary{
  background:#f5c542;color:#000;
  border:2px solid #f5c542
}
.btn.primary:hover{background:transparent;color:#fff}
.btn.outline{
  background:transparent;color:#fff;
  border:2px solid #f5c542
}
.btn.outline:hover{background:#f5c542;color:#000}

/* ===== SECTIONS ===== */
.section{padding:60px 40px;text-align:center}
.dark{background:#111}

/* ===== GRID & CARDS ===== */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;margin-top:30px
}
.card{
  background:#000;border:1px solid #f5c542;padding:20px
}

/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

/* Modal Box */
.modal-content {
  background: #000;
  color: gold;
  width: 400px;
  margin: 8% auto;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid gold;
}

/* Close Button */
.close-btn {
  float: right;
  font-size: 22px;
  cursor: pointer;
  color: gold;
}

/* Form */
.modal-content label {
  display: block;
  margin-top: 12px;
}

.modal-content input {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  border-radius: 5px;
  border: none;
  outline: none;
}

/* Submit Button */
.submit-btn {
  margin-top: 20px;
  width: 100%;
  padding: 10px;
  background: gold;
  color: black;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}

/* ===== PRODUCTS ===== */
.products {
  position: relative;
  padding: 80px 6%;
  overflow: hidden;
}

/* Background video */
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  min-height:100vh;
  padding-top: 0;
  object-fit: cover;
  z-index: 0;
}

/* Overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7); /* lighter */
  z-index: 1;
}
.products-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Keep conten t above video */
.products h2{
  text-align: center;
}
.section-divider,
.product-grid {
  position: relative;
  z-index: 2;
  gap: 28px;  
}


.product-card {
  position: relative;
  background: linear-gradient(180deg, #0b0b0b, #000);
  border: 1px solid rgba(245, 197, 66, 0.6);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  max-width: 240px;        /* ⬅ reduced width */
  margin: auto;
}

/* Image */
.product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Title */
.product-card h3 {
  padding: 10px;
  font-size: 1.05rem;
  text-align: center;
  color: #f5c542;
  background: rgba(0,0,0,0.9);
  font-size: 0.95rem;
}

/* Hover (desktop) */
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(245, 197, 66, 0.35);
}

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

.product-card::after {
  content: "View Details";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);

  background: gold;
  color: #000;
  padding: 12px 26px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: 40px;

  opacity: 0;
  transition: all 0.35s ease;
  z-index: 2;
  white-space: nowrap;
}
.product-card:hover::before {
  opacity: 1;
}

.product-card:hover::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Show CTA on hover (desktop) */
@media (max-width: 768px) {
  .product-card::before {
    opacity: 1;
  }

  .product-card::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    font-size: 13px;
    padding: 10px 22px;
  }
}
@media (max-width: 768px) {
  .bg-video {
    min-height:auto;
    height:auto;
  padding-top: 0;
    margin-top:0;
    object-fit: contain;
    object-position: center center;
  }

  .products {
    background:
      linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.95)),
      url("assets/solutions11.jpg") center / cover no-repeat;
  }
}



/* ===== CALCULATOR ===== */
.calculator{max-width:400px;margin:auto;text-align:left}
.calculator label{display:block;margin-top:15px}
select,.calculator button,.full-input{
  width:100%;padding:12px;font-size:16px;
  box-sizing:border-box
}
.full-input{border-radius:4px;border:1px solid #ccc}
.calc-btn{margin-top:30px;cursor:pointer}
#calculator h2{text-align:center;padding-top: 40px;margin-bottom:40px}
.total-box{
  margin-top:20px;font-weight:bold;font-size:18px;
  color:#ffd54f;border:2px solid #ffd54f;
  padding:10px;text-align:center;
  border-radius:6px;
  background:rgba(255,213,79,.08)
}

/* ===== PRICE DISCLAIMER ===== */
.price-disclaimer{
  margin-top:20px;padding:15px;text-align:center;
  border:2px solid #f5c542;
  background:rgba(245,197,66,.15);
  border-radius:8px;
  animation:blinkGlow 1.5s infinite
}
.price-disclaimer p{
  margin:5px 0;color:#fff;font-size:14px;letter-spacing:.3px
}
@keyframes blinkGlow{
  0%,100%{opacity:1;box-shadow:0 0 5px rgba(245,197,66,.6)}
  50%{opacity:.4;box-shadow:0 0 15px rgba(245,197,66,1)}
}

/* ===== LIGHTBOX ===== */
.lightbox{
  position:fixed;inset:0;
  background:rgba(0,0,0,.95);
  display:none;align-items:center;
  justify-content:center;z-index:9999
}
.lightbox.show{display:flex}
.lightbox img{
  max-width:90%;max-height:90%;
  border:3px solid #f5c542
}
.lightbox span{
  position:absolute;top:20px;right:30px;
  color:#f5c542;font-size:30px;cursor:pointer
}
.swipe-hint{
  position:fixed;bottom:20px;
  color:#f5c542;font-size:14px
}
.gallery-img{
  width:100%;height:220px;object-fit:cover;
  border:2px solid #f5c542;
  cursor:pointer;transition:.3s
}
.gallery-img:hover{transform:scale(1.05)}

/* ===== NAV ===== */
.nav-wrapper{display:flex;align-items:center}
.menu-toggle{
  display: none;
  font-size: 28px;
  color: #ffd700;
  cursor: pointer;
  z-index: 1001;
}
.nav{display:flex;gap:30px}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    background: #000;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
    z-index: 1000;
  }

  .nav a {
    padding: 12px 0;
    font-size: 16px;
  }

  /* ACTIVE STATE */
  .nav.active {
    display: flex;
  }
}

/* ===== FOOTER ===== */
footer{
  padding:20px;text-align:center;background:#000
}
/* ===== CALCULATE PRICE BUTTON (LOGIN STYLE) ===== */
.calc-btn {
  width: 100%;
  margin-top: 35px;
  padding: 14px 0;

  background: #000;
  color: #ffffff;

  border: 2px solid #f5c542;
  border-radius: 40px;

  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  cursor: pointer;

  box-shadow:
    0 6px 0 #b89a2e,
    0 0 15px rgba(245, 197, 66, 0.6);

  transition: all 0.2s ease-in-out;
}

/* Hover effect */
.calc-btn:hover {
  box-shadow:
    0 4px 0 #b89a2e,
    0 0 25px rgba(245, 197, 66, 0.9);
  transform: translateY(-2px);
}
.question-label {
  display: block;
  margin-top: 15px;
  color: gold;
  font-size: 14px;
}

.question-label span {
  color: red;
}

.radio-group {
  display: flex;
  gap: 40px;
  margin-top: 8px;
}

.radio-group label {
  color: #fff;
  cursor: pointer;
  font-size: 14px;
}

.radio-group input {
  accent-color: gold;
  margin-right: 6px;
}

/* Click / press effect */
.calc-btn:active {
  transform: translateY(3px);
  box-shadow:
    0 2px 0 #b89a2e,
    0 0 10px rgba(245, 197, 66, 0.5);
}
.site-footer {
  background: #000;
  border-top: 1px solid #f5c542;
  padding: 15px 25px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-left {
  color: #f5c542;
  font-size: 14px;
}

.footer-right {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-right a {
  color: #f5c542;
  text-decoration: none;
  font-size: 13px;
}

.footer-right a:hover {
  text-decoration: underline;
}

/* Mobile footer stacking */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

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

.our-process {
  padding: 80px 20px;
  background: radial-gradient(circle at top, #111, #000);
  text-align: center;
}

.process-heading {
  
  color: gold;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 0;
  text-shadow:    0 2px 6px rgba(0, 0, 0, 0.8),
  0 0 10px rgba(255, 217, 0, 0.949);

}

.process-subtitle {
  color: #bfbfbf;
  font-size: 15px;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

.process-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, gold, transparent);
  margin: 16px auto;
}

.process-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.process-card {
  position: relative;
  width: 240px;
  padding: 30px 22px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.4);
  border-radius: 16px;
  backdrop-filter: blur(6px);
  color: #fff;
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
  transition: all 0.35s ease;
}

.process-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.35);
}

.step-badge {
  position: absolute;
  top: -14px;
  left: 20px;
  background: linear-gradient(135deg, gold, #ffcc33);
  color: #000;
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 14px;
}

.icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.process-card h3 {
  color: gold;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 14px;
  color: #ccc;
}

.process-arrow {
  font-size: 42px;
  color: gold;
  text-shadow: 0 0 15px gold;
  animation: arrowGlow 1.5s infinite alternate;
}

@keyframes arrowGlow {
  from { opacity: 0.5; }
  to { opacity: 1; }
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .process-container {
    flex-direction: column;
  }

  .process-arrow {
    transform: rotate(90deg);
  }
}

.contact-section {
  padding: 60px 20px;
  background: #0a0a0a;
  text-align: center;
}

.contact-title {
  color: gold;
  font-size: 32px;
  margin-bottom: 15px;
}

.contact-info {
  color: #ccc;
  font-size: 14px;
  margin: 5px 0;
}

.contact-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.contact-btn {
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid gold;
  color: gold;
  background: transparent;
  transition: all 0.3s ease;
  min-width: 150px;
}

.contact-btn:hover {
  background: gold;
  color: black;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.7);
}

.contact-numbers {
  color: gold;
  font-size: 14px;
  margin-top: 10px;
}

/* 📱 Mobile Optimization */
@media (max-width: 600px) {
  .contact-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-btn {
    width: 90%;
    text-align: center;
  }
}


.contact-marquee {
  overflow: hidden;
  width: 100%;
  margin-top: 15px;
}

.contact-numbers {
  display: inline-block;
  white-space: nowrap;
  color: gold;
  font-size: 14px;
  animation: scrollRightToLeft 12s linear infinite;
}

/* Animation */
@keyframes scrollRightToLeft {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Mobile tweak */
@media (max-width: 600px) {
  .contact-numbers {
    font-size: 15px;
    animation-duration: 10s;
  }
}
/* ===== PREMIUM FOOTER ===== */
.site-footer {
  background: radial-gradient(circle at top, #111, #000);
  border-top: 1px solid #f5c542;
  padding: 60px 20px 20px;
  color: #ccc;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-brand img {
  width: 70px;
  margin-bottom: 10px;
}

.footer-brand h3 {
  color: gold;
  margin-bottom: 5px;
}

.footer-brand p {
  font-size: 14px;
  color: #bbb;
}

.footer-links h4,
.footer-contact h4 {
  color: gold;
  margin-bottom: 12px;
  font-size: 16px;
}

.footer-links a {
  display: block;
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

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

.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
  color: #ccc;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  font-size: 13px;
  color: #f5c542;
  border-top: 1px solid rgba(245, 197, 66, 0.3);
  padding-top: 15px;
}

/* Mobile Footer */
@media (max-width: 600px) {
  .footer-container {
    text-align: center;
  }

  .footer-brand img {
    margin: 0 auto 10px;
  }
}
.page-hero {
  padding: 120px 20px 60px;
  text-align: center;
  background: radial-gradient(circle at top, #111, #000);
}

.page-hero h1 {
  color: gold;
  font-size: 38px;
}

.page-hero p {
  color: #ccc;
  margin-top: 10px;
}

.page-content {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

.content-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid gold;
  border-radius: 14px;
  padding: 40px;
}

.content-box h2 {
  color: gold;
  margin-bottom: 10px;
}

.styled-list {
  list-style: none;
  padding-left: 0;
}

.styled-list li {
  margin: 8px 0;
  padding-left: 20px;
  position: relative;
}

.styled-list li::before {
  content: "✔";
  color: gold;
  position: absolute;
  left: 0;
}

.customer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
}

.customer-card {
  padding: 30px;
  text-align: center;
  border: 1px solid gold;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  font-size: 16px;
}
/* ===== Footer Social ===== */
.footer-social h4 {
  color: gold;
  margin-bottom: 12px;
  font-size: 16px;
}


.find-us-text {
  color: gold;
  font-size: 15px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border: 1px solid gold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: gold;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: gold;
  color: black;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.7);
  transform: translateY(-2px);
}

/* Mobile center align */
@media (max-width: 600px) {
  .footer-social {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}
/* ===== ABOUT PAGE ===== */

.about-hero {
  background: radial-gradient(circle at top, #111, #000);
  padding: 140px 20px 100px;
  text-align: center;
}

.about-hero h1 {
  color: gold;
  font-size: 42px;
}

.about-hero p {
  color: #ccc;
  margin-top: 12px;
  font-size: 16px;
}

/* Section */
.about-section {
  padding: 70px 20px;
  background: #000;
}

.about-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.about-container h2 {
  color: gold;
  margin-bottom: 15px;
}

.about-container p {
  color: #bbb;
  line-height: 1.7;
}

/* Split layout */
.about-split {
  display: flex;
  gap: 50px;
  align-items: center;
  padding: 80px 8%;
  background: #000;
}

.about-split.reverse {
  flex-direction: row-reverse;
}

.about-image img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid gold;
}

.about-text h2 {
  color: gold;
  margin-bottom: 12px;
}

.about-text p {
  color: #bbb;
  line-height: 1.7;
}

/* Values */
.about-values {
  padding: 80px 20px;
  text-align: center;
  background: #000;
}

.about-values h2 {
  color: gold;
  margin-bottom: 30px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.value-card {
  border: 1px solid gold;
  border-radius: 12px;
  padding: 20px;
  color: #ccc;
  background: rgba(255,255,255,0.03);
}

/* CTA */
.about-cta {
  padding: 80px 20px;
  text-align: center;
  background: radial-gradient(circle at bottom, #111, #000);
}

.about-cta h2 {
  color: gold;
  margin-bottom: 20px;
}

.cta-btn {
  padding: 14px 30px;
  border-radius: 30px;
  background: gold;
  color: black;
  text-decoration: none;
  font-weight: 600;
}

.cta-btn:hover {
  box-shadow: 0 0 18px rgba(255,215,0,0.7);
}

/* Mobile */
@media (max-width: 900px) {
  .about-split {
    flex-direction: column;
    padding: 60px 20px;
  }
}
.about-hero {
  position: relative;
  padding: 100px 20px;
  background: 
    linear-gradient(
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.85)
    ),
    url("https://media.istockphoto.com/id/1474043686/photo/business-manager-talking-to-a-group-of-employees-at-a-distribution-warehouse.jpg?s=2048x2048&w=is&k=20&c=IKANncmnnsCXuWc8Xk2hAtDMTNHBXNyfzMRMBaDt6wA=") center / cover no-repeat;
}

/* Keep text above overlay */
.about-container {
  position: relative;
  z-index: 2;
}
/* ===== CONTACT US PAGE ===== */

.contact-hero {
  padding: 140px 20px 80px;
  text-align: center;
  background: radial-gradient(circle at top, #111, #000);
}

.contact-hero h1 {
  color: gold;
  font-size: 40px;
}

.contact-hero p {
  color: #ccc;
  margin-top: 10px;
}

/* Main layout */
.contact-modern {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  padding: 80px 8%;
  background: #000;
}

/* Info */
.contact-info-modern h2 {
  color: gold;
  margin-bottom: 15px;
}

.contact-info-modern p {
  color: #bbb;
  line-height: 1.7;
}

.contact-methods {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border: 1px solid gold;
  border-radius: 12px;
  color: #f5c542;
  text-decoration: none;
  background: rgba(255,255,255,0.03);
  transition: all 0.3s ease;
}

.contact-item i {
  font-size: 18px;
}

.contact-item:hover {
  background: gold;
  color: black;
  box-shadow: 0 0 18px rgba(255,215,0,0.7);
}

/* Social */
.contact-social {
  margin-top: 40px;
}

.social-title {
  color: gold;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border: 1px solid gold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: gold;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: gold;
  color: black;
  transform: translateY(-3px);
  box-shadow: 0 0 14px rgba(255,215,0,0.7);
}

/* Map */
.contact-map-modern iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 1px solid gold;
  border-radius: 16px;
}

/* Mobile */
@media (max-width: 900px) {
  .contact-modern {
    grid-template-columns: 1fr;
    padding: 60px 20px;
  }

  .social-icons {
    justify-content: center;
  }
}
.contact-map-modern {
  position: relative;
}

.contact-map-modern iframe {
  filter: grayscale(100%) invert(92%) contrast(85%);
  border-radius: 16px;
  border: 1px solid gold;
}

.light-map {
  width: 100%;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #ddd;
  background: #fff;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.light-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: none; /* IMPORTANT */
}

/* Mobile */
@media (max-width: 768px) {
  .light-map {
    height: 300px;
  }
}

/* ===== PRIVACY POLICY (BLACK THEME) ===== */

.policy-hero-dark {
  padding: 140px 20px 80px;
  text-align: center;
  background: radial-gradient(circle at top, #111, #000);
}

.policy-hero-dark h1 {
  color: gold;
  font-size: 40px;
  letter-spacing: 1px;
}

/* Content */
.policy-content-dark {
  background: #000;
  padding: 70px 20px;
}

.policy-container-dark {
  max-width: 900px;
  margin: auto;
  color: #ccc;
  line-height: 1.8;
  font-size: 15px;
}

.policy-container-dark h2 {
  color: gold;
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 20px;
}

.policy-container-dark ul {
  padding-left: 20px;
}

.policy-container-dark li {
  margin-bottom: 8px;
}

.policy-container-dark p {
  margin-bottom: 14px;
}

.policy-contact {
  margin-top: 10px;
  color: #f5c542;
}

/* Mobile */
@media (max-width: 768px) {
  .policy-hero-dark h1 {
    font-size: 28px;
  }

  .policy-content-dark {
    padding: 50px 20px;
  }
}
/* ===== Fade In Animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s ease forwards;
}

/* Delays */
.delay-1 {
  animation-delay: 0.6s;
}

.delay-2 {
  animation-delay: 0.9s;
}

.delay-3 {
  animation-delay: 1.5s;
}


/* Keyframes */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn {
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.03);
}



/* ===== Slide In From Left ===== */
.slide-in-left {
  opacity: 0;
  transform: translateX(-60px);
  animation: slideFromLeft 1s ease-out forwards;
  animation-delay: 0.3s; /* adjust if needed */
}

@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.slide-in-left {
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.25);
}
.hero-subtitle {
  opacity: 0;
  animation: slideFromLeft 1s ease-out forwards;
  animation-delay: 0.8s;
}


/* ===== Slide In From Right ===== */
/* ================================
   SLIDE IN RIGHT (RESETTABLE)
================================ */

.slide-in-right {
  opacity: 0;
  transform: translateX(60px);
  transition:
    transform 0.8s cubic-bezier(.22,.61,.36,1),
    opacity 0.6s ease;
  will-change: transform, opacity;
}

.slide-in-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Mobile tuning */
@media (max-width: 768px) {
  .slide-in-right {
    transform: translateX(40px);
    transition-duration: 0.6s;
  }
}



/* ===== PRODUCTS SECTION ===== */

.section-title {
  text-align: center;
  color: #f5c542;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

/* ===== GRID ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 35px;
}

/* ===== CARD ===== */
.product-card {
  position: relative;
  background: #0b0b0b;
  border: 1px solid #f5c542;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

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

/* Title */
.product-card h3 {
  padding: 18px;
  text-align: center;
  color: #f5c542;
  font-size: 1.1rem;
  background: rgba(0, 0, 0, 0.85);
}

/* Hover Effects */
.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 45px rgba(245, 197, 66, 0.35);
}

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

/* ===== ENTRY ANIMATION ===== */
.animate {
  opacity: 0;
  transform: translateY(40px);
}

.animate.show {
  animation: fadeUp 0.9s ease forwards;
}

/* ===== KEYFRAMES ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== MOBILE TWEAKS ===== */
@media (max-width: 600px) {
  .product-card img {
    height: 190px;
  }
}
.section-divider {
  width: 105px;
  height: 5px;
  margin: 10px auto 60px;
  border-radius: 50px;
  background: linear-gradient(
    90deg,
    transparent,
    gold,
    #ffd700,
    gold,
    transparent
  );
  position: relative;
  overflow: hidden;
}
.section-divider::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.9),
    transparent 70%
  );
  animation: dividerGlow 2.5s linear infinite;
}
@keyframes dividerGlow {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@media (max-width: 768px) {
  .section-divider {
    width: 70px;
    height: 3px;
  }

  .section-divider::after {
    animation-duration: 3.5s;
  }
}
/* Initial state */
.scroll-up-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

/* Active when visible */
.scroll-up-animate.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .scroll-up-animate {
    transform: translateY(30px);
    transition-duration: 0.7s;
  }
}

/* ===== REFUND POLICY ===== */

.policy-hero-dark {
  padding: 140px 20px 90px;
  text-align: center;
  background: radial-gradient(circle at top, #111, #000);
}

.policy-hero-dark h1 {
  color: gold;
  font-size: clamp(32px, 5vw, 44px);
  letter-spacing: 1px;
  text-shadow: 0 0 18px rgba(255, 215, 0, 0.5);
}

.policy-subtitle {
  color: #bbb;
  font-size: 15px;
  margin-top: 12px;
}

/* Content Section */
.policy-content-dark {
  background: #000;
  padding: 80px 20px;
}

.policy-container-dark {
  max-width: 950px;
  margin: auto;
  display: grid;
  gap: 28px;
}

/* Policy Cards */
.policy-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 215, 0, 0.45);
  border-radius: 16px;
  padding: 28px 30px;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.12);
  transition: all 0.3s ease;
}

.policy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 40px rgba(255, 215, 0, 0.35);
}

/* Headings */
.policy-card h2 {
  color: gold;
  font-size: 20px;
  margin-bottom: 10px;
}

/* Text */
.policy-card p,
.policy-card li {
  color: #ccc;
  font-size: 14.5px;
  line-height: 1.7;
}

/* List */
.policy-card ul {
  padding-left: 18px;
}

.policy-card li::marker {
  color: gold;
}

/* Contact Box */
.policy-contact-box {
  text-align: center;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid gold;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.15),
    rgba(0, 0, 0, 0.8)
  );
}

.policy-contact-box p {
  color: #fff;
  font-size: 15px;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .policy-content-dark {
    padding: 60px 20px;
  }

  .policy-card {
    padding: 22px;
  }
}


/* Shipping Hero Icons */
.shipping-icons {
  margin-top: 40px;              /* pushes icons downward */
  display: flex;
  justify-content: center;
  gap: 40px;                     /* more spacing between icons */
  font-size: 64px;               /* BIGGER ICONS */
  color: #ffd700;
}

.truck-icon {
  animation: truckMove 3s infinite alternate ease-in-out;
}

.container-icon {
  animation: floatBox 2.5s infinite ease-in-out;
}

.location-icon {
  animation: pulsePin 2s infinite;
}

/* Section Icon Animation */
.icon-animate {
  margin-right: 8px;
  color: #ffd700;
  animation: iconBounce 2s infinite;
}

/* Animations */
@keyframes truckMove {
  from { transform: translateX(-10px); }
  to { transform: translateX(10px); }
}

@keyframes floatBox {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pulsePin {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: .7; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Mobile */
@media (max-width: 768px) {
  .shipping-icons {
    margin-top: 28px;
    font-size: 42px;   /* slightly smaller on mobile */
    gap: 24px;

  }
}
/* Payment Hero Icons */
.payment-icons {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 42px;
  color: #ffd700;
}

.card-icon {
  animation: swipeCard 2.5s infinite alternate;
}

.invoice-icon {
  animation: floatInvoice 3s infinite ease-in-out;
}

.secure-icon {
  animation: shieldPulse 2s infinite;
}

/* Section Icons */
.icon-animate {
  margin-right: 8px;
  color: #ffd700;
  animation: iconBounce 2s infinite;
}

/* Animations */
@keyframes swipeCard {
  from { transform: translateX(-6px); }
  to { transform: translateX(6px); }
}

@keyframes floatInvoice {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes shieldPulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: .75; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes iconBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Mobile */
@media (max-width: 768px) {
  .payment-icons {
    font-size: 32px;
    gap: 20px;
  }
}

/* Customers Hero Icons */
.customers-icons {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 40px;
  font-size: 64px;
  color: #ffd700;
}

.customer-icon {
  animation: floatIcon 3s infinite ease-in-out;
}

.customer-icon.delay {
  animation-delay: 1s;
}

/* Reviews Section */
.reviews-section {
  background: #000;
  padding: 70px 20px;
}

.reviews-title {
  text-align: center;
  font-size: 32px;
  color: #ffd700;
  margin-bottom: 50px;
}

.reviews-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.review-card {
  background: #111;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,.6);
  transition: transform .3s ease;
}

.review-card:hover {
  transform: translateY(-8px);
}

.review-card i {
  color: #ffd700;
  font-size: 22px;
  margin-bottom: 12px;
}

.review-card p {
  color: #ddd;
  font-size: 15px;
  line-height: 1.6;
}

.review-card h4 {
  margin-top: 18px;
  color: #ffd700;
  font-size: 16px;
}

.review-card span {
  color: #aaa;
  font-size: 13px;
}

/* Animations */
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Mobile */
@media (max-width: 768px) {
  .customers-icons {
    font-size: 42px;
    gap: 24px;
  }
}

.star-rating {
  margin: 12px 0 15px;
  display: flex;
  gap: 6px;
}

.star-rating i {
  font-size: 18px;
  color: #ffd700;
  opacity: 0;
  transform: scale(0.5);
  animation: starPop 0.5s forwards;
}

/* Empty star slightly dim */
.star-rating i.far {
  color: #555;
}

/* Stagger animation */
.star-rating i:nth-child(1) { animation-delay: 0.1s; }
.star-rating i:nth-child(2) { animation-delay: 0.2s; }
.star-rating i:nth-child(3) { animation-delay: 0.3s; }
.star-rating i:nth-child(4) { animation-delay: 0.4s; }
.star-rating i:nth-child(5) { animation-delay: 0.5s; }

@keyframes starPop {
  to {
    opacity: 1;
    transform: scale(1);
  }
}






/* FORCE 3 CARDS PER ROW ON MOBILE */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px; /* reduce gap for small screens */
  }

  .product-card {
    max-width: 100%;
  }

  .product-card img {
    height: 110px; /* smaller image for mobile */
  }

  .product-card h3 {
    font-size: 12px;
    padding: 8px;
  }
}

/* ===== PRODUCT SLIDER ===== */

.product-slider-wrapper {
  position: relative;
  margin-top: 80px;
  z-index: 2;
}

.product-slider {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 10px 30px;
}

.product-slider::-webkit-scrollbar {
  display: none;
}
.product-slider {
  scrollbar-width: none;
}

/* Glassmorphism card */
.glass-card {
  flex: 0 0 260px;
  backdrop-filter: blur(10px);
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.08),
    rgba(0,0,0,0.85)
  );
  border: 1px solid rgba(245,197,66,0.6);
  box-shadow:
    0 0 30px rgba(245,197,66,0.25),
    inset 0 0 20px rgba(255,255,255,0.05);
}

/* Glow animation */
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,215,0,0.25),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.glass-card:hover::before {
  opacity: 1;
}

/* Slider buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid gold;
  background: rgba(0,0,0,0.75);
  color: gold;
  cursor: pointer;
  z-index: 5;
}

.slider-btn.left { left: -15px; }
.slider-btn.right { right: -15px; }

.slider-btn:hover {
  background: gold;
  color: black;
  box-shadow: 0 0 20px rgba(255,215,0,0.9);
}

/* Mobile */
@media (max-width: 768px) {
  .product-slider .product-card {
    flex: 0 0 120px;
  }

  .slider-btn {
    display: none;
  }

  .product-card img {
    height: 110px;
  }

  .product-card h3 {
    font-size: 12px;
    padding: 8px;
  }
}

/* ================================
   PREMIUM FASHION SLIDER
================================ */

.premium-slider {
  perspective: 1200px;
}

/* Slider flow */
.product-slider {
  padding: 60px 12px 60px;
  align-items: stretch;
}

/* PREMIUM CARD */
.premium-slider .product-card {
  flex: 0 0 270px;
  border-radius: 20px;
  position: relative;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,0.12),
      rgba(0,0,0,0.92)
    );
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 215, 0, 0.45);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.75),
    inset 0 0 30px rgba(255,255,255,0.05);
  transform-style: preserve-3d;
  transition: all 0.6s cubic-bezier(.22,.61,.36,1);
}

/* Floating motion */
@keyframes floatCard {
  0%   { transform: translateY(0) rotateX(0deg); }
  50%  { transform: translateY(-8px) rotateX(1deg); }
  100% { transform: translateY(0) rotateX(0deg); }
}

.premium-slider .product-card {
  animation: floatCard 6s ease-in-out infinite;
}

/* Image depth */
.premium-slider .product-card img {
  height: 180px;
  transform: translateZ(20px);
  transition: transform 0.6s ease, filter 0.6s ease;
}

/* Title plate */
.premium-slider .product-card h3 {
  font-size: 0.95rem;
  letter-spacing: 0.6px;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0.9),
      rgba(0,0,0,0.98)
    );
}

/* Shine sweep */
.premium-slider .product-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(
    120deg,
    transparent 35%,
    rgba(255,215,0,0.55),
    transparent 65%
  );
  opacity: 0;
  transform: translateX(-120%);
  transition: all 0.8s ease;
  pointer-events: none;
}

.premium-slider .product-card:hover::after {
  opacity: 1;
  transform: translateX(120%);
}

/* Hover elevation */
.premium-slider .product-card:hover {
  transform: translateY(-18px) scale(1.05);
  box-shadow:
    0 45px 90px rgba(255, 215, 0, 0.45),
    inset 0 0 40px rgba(255,255,255,0.08);
}

.premium-slider .product-card:hover img {
  transform: scale(1.12) translateZ(35px);
  filter: brightness(1.1) contrast(1.05);
}

/* CTA Button glow */



/* CENTER CARD EMPHASIS (optional JS-free illusion) */
.product-slider:hover .product-card {
  opacity: 0.55;
}

.product-slider .product-card:hover {
  opacity: 1;
}

/* Slider arrows – premium */
.slider-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 25px rgba(255,215,0,0.6);
}

/* MOBILE – still premium */
@media (max-width: 768px) {
  .premium-slider .product-card {
    flex: 0 0 130px;
    animation: none; /* save battery */
  }

  .premium-slider .product-card img {
    height: 110px;
  }
}

/* ================================
   EXPLORE BUTTON CENTERED ON IMAGE
================================ */

/* Image wrapper */
.premium-slider .card-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

/* Image */
.premium-slider .card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* Dark overlay */
.premium-slider .card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

/* Explore button (CENTERED) */
.premium-slider .explore-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  background: linear-gradient(135deg, #ffd700, #ffcc33);
  color: #000;
  padding: 12px 30px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 700;
  opacity: 0;
  z-index: 2;
  transition: all 0.4s ease;
  box-shadow: 0 0 25px rgba(255,215,0,0.8);
  pointer-events: none; /* keep whole card clickable */
}

/* Hover reveal */
.premium-slider .product-card:hover .card-image::after {
  opacity: 1;
}

.premium-slider .product-card:hover .explore-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* MOBILE – always visible */
@media (max-width: 768px) {
  .premium-slider .explore-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    font-size: 13px;
    padding: 10px 22px;
  }

  .premium-slider .card-image::after {
    opacity: 0.25;
  }
}










/* ===== PRODUCT SLIDER – 3 CARDS VIEW ===== */

.product-slider-wrapper {
  position: relative;
  max-width: 1100px;     /* controls visible area */
  margin: 300px auto -50px;
  padding: 0 60px;       /* space for arrows */
}

/* Slider track */
.product-slider {
  display: flex;
  gap: 32px;             /* SPACE BETWEEN CARDS */
  overflow: hidden;      /* lock viewport */
  scroll-behavior: smooth;
}

/* Card sizing (3 cards exactly) */
.product-slider .product-card {
  flex: 0 0 calc((100% - 64px) / 3);
}

/* Desktop polish */
.product-slider .product-card {
  backdrop-filter: blur(12px);
}

/* ===== ARROWS ===== */
.slider-btn {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  z-index: 5;
}

.slider-btn.left {
  left: 10px;
}

.slider-btn.right {
  right: 10px;
}
/* ===== MOBILE SLIDER ===== */
@media (max-width: 768px) {
  .product-slider-wrapper {
    padding: 0 20px;
  }

  .product-slider {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .product-slider .product-card {
    flex: 0 0 80%;
    scroll-snap-align: center;
  }

  .slider-btn {
    display: none; /* swipe instead */
  }
}


/* ================================
   OUR SOLUTIONS HEADER SECTION
================================ */

.solutions-header {
  background: #000;
  text-align: center;
  padding: 20px 10px 0px;
}

.solutions-header h2 {
  font-size: 36px;
  color: #ffd700;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: -3px;
}

/* Divider line */
.solutions-divider {
  padding-top: 10;
  display: inline-block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #ffd700, transparent);
  border-radius: 1px;
}

@media (max-width: 768px) {

  .solutions-header {
    padding: 16px 12px 0px;
  }

  .solutions-header h2 {
    font-size: 24px;              /* smaller & readable */
    letter-spacing: 1.5px;       /* tighter spacing */
    margin-bottom: -3px;
  }

  .solutions-divider {
    width: 55px;                 /* shorter divider */
    height: 3px;
  }
}


/* PRODUCTS SECTION SPACING */
.products {
  position: relative;
  padding-top: 20px; /* separates from header */
}




/* ================================
   START YOUR DESIGN – CTA
================================ */

.design-cta {
  background: linear-gradient(
    180deg,
    #000 0%,
    #0d0d0d 100%
  );
  padding: 50px 20px;
  text-align: center;
  border-top: 1px solid rgba(255,215,0,0.25);
  border-bottom: 1px solid rgba(255,215,0,0.25);
}

.design-cta-content {
  max-width: 720px;
  margin: 0 auto;
}

.design-cta h2 {
  font-size: 36px;
  color: #ffd700;
  margin-bottom: 12px;
  letter-spacing: 0.8px;
}

.design-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 16px;
  margin-bottom: 30px;
}

/* CTA BUTTON */
.design-btn {
  display: inline-block;
  padding: 14px 38px;
  border-radius: 40px;
  background: linear-gradient(135deg, #ffd700, #ffcc33);
  color: #000;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.6px;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 10px 30px rgba(255,215,0,0.4);
}

/* Hover effect */
.design-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(255,215,0,0.6);
}


@media (max-width: 768px) {
.solutions-section {
min-height: 100svh; /* Better than 100vh on mobile */
}

.solutions-section .bg-video {
width: 100vw;
height: 100svh;
}
}

















/* BASE TEXT STYLE */
.glow-text {
  font-size: 22px;
  font-weight: 500;
  color: #ffd700;
  text-align: center;
  letter-spacing: 0.5px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1.2s ease-out forwards,
             glowPulse 2.5s ease-in-out infinite;
  animation-delay: 0.3s, 1.5s;
}

/* FADE IN FROM BOTTOM */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* BRIGHT ↔ DIM GLOW */
@keyframes glowPulse {
  0% {
    text-shadow: 0 0 4px rgba(255, 215, 0, 0.3);
    opacity: 0.6;
  }
  50% {
    text-shadow:
      0 0 8px rgba(255, 215, 0, 0.6),
      0 0 16px rgba(255, 215, 0, 0.4);
    opacity: 1;
  }
  100% {
    text-shadow: 0 0 4px rgba(255, 215, 0, 0.3);
    opacity: 0.6;
  }
}

.scroll-up-animate {
  opacity: 0;
  transform: translateY(30px);
}

.scroll-up-animate.active {
  animation: fadeUp 1.2s ease-out forwards,
             glowPulse 2.5s ease-in-out infinite;
}





/* BASE TEXT */
.shimmer-text {
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.5px;
  color: #ffd700;
padding-top: 60px;
  /* Shimmer magic */
  background: linear-gradient(
    120deg,
    #b8962e 20%,
    #ffd700 40%,
    #fff2a8 50%,
    #ffd700 60%,
    #b8962e 80%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  opacity: 0;
  transform: translateY(30px);
}

/* ACTIVE (on scroll) */
.scroll-up-animate.active {
  animation:
    fadeUp 1.2s ease-out forwards,
    shimmer 2.8s ease-in-out infinite;
}

/* FADE IN */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SHIMMER SWEEP */
@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}



@media (max-width: 768px) {
.product-slider-wrapper {
    position: relative;     /* 🔑 REQUIRED */
    margin-top: 90px;       /* 🔑 THIS moves slider down */
    z-index: 3;
  }

   .product-slider-wrapper::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0),
      rgba(0,0,0,0.95)
    );
    z-index: -1; /* sits behind cards */
  }
}


/* ================================
   SPLIT TEXT BASE STATE
================================ */

.split-text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  margin-top: auto;
 margin-bottom: 10px;
}

.text-part {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  letter-spacing: 2px;
  color: #ffd700;
  opacity: 0;
  transition: transform 0.9s cubic-bezier(.22,.61,.36,1),
              opacity 0.9s ease;
  will-change: transform, opacity;
}

/* Initial split positions */
.text-part.left {
  transform: translateX(-60px);
}

.text-part.right {
  transform: translateX(60px);
  transition-delay: 0.15s;
}

/* ================================
   ACTIVE STATE (ON SCROLL)
================================ */

.scroll-split.active .text-part {
  opacity: 1;
  transform: translateX(0);
  text-shadow: 0 0 14px rgba(255, 215, 0, 0.5);
}



@media (max-width: 768px) {
  .split-text-container {
    flex-direction: row;     /* ✅ keep in one line */
    gap: 14px;
    flex-wrap: nowrap;
  }

   .text-part.left {
    transform: translateX(-30px);
  }

  .text-part.right {
    transform: translateX(30px);
  }
  .scroll-split.active .text-part {
    text-shadow: 0 0 14px rgba(255, 215, 0, 0.5);
}
 
}



/* ================================
   SHINING CTA BUTTON
================================ */

.shine-btn {
  position: relative;
  overflow: hidden;
}

/* Shine layer */
.shine-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transform: skewX(-20deg);
}

/* Shine animation */
.shine-btn {
  animation: shineSweep 3.2s ease-in-out infinite;
}

@keyframes shineSweep {
  0% {
    background-position: -150%;
  }
  40% {
    background-position: 150%;
  }
  100% {
    background-position: 150%;
  }
}

/* Move shine layer */
.shine-btn::before {
  animation: shineMove 3.2s ease-in-out infinite;
}

@keyframes shineMove {
  0% {
    left: -120%;
  }
  40% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}









/* ================================
   FIX PROCESS VIDEO CARD
================================ */


/* Video wrapper */
.video-card .card-video {
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Video behavior */
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;            /* desktop */
  object-position: center;
}

/* Overlay tuning (LESS DARK) */
.video-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55),
    rgba(0,0,0,0.75)
  );
  z-index: 2;
}

/* Content always above video */
.video-card .card-content {
  position: relative;
  z-index: 3;
  padding: 24px 20px;
}

/* Icon & text clarity */
.video-card h3,
.video-card p,
.video-card .icon {
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}


@media (max-width: 768px) {
  .video-card video {
    object-fit: contain;        /* 🔑 prevents mobile zoom */
    background: #000;
  }

  .process-card {
    min-height: 240px;
  }
}
/* ================================
   CONTAINER MODEL PAGE
================================ */

.model-page {
  background: #000;
  color: #fff;
}

/* HERO */
.model-hero {
  min-height: 70vh;
  background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)),
    url("assets/models/ezra-hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.model-hero h1 {
  font-size: clamp(48px, 6vw, 72px);
  color: #ffd700;
  letter-spacing: 2px;
}

.model-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
}

/* DETAILS */
.model-details {
  padding: 80px 20px;
}

.model-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.model-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 0 40px rgba(255,215,0,0.25);
}

.model-info h2 {
  color: #ffd700;
  margin-bottom: 12px;
}

.model-specs {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.model-specs li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,215,0,0.15);
}

/* BUTTON */
.model-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 36px;
  border-radius: 40px;
  background: linear-gradient(135deg, #ffd700, #ffcc33);
  color: #000;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.model-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255,215,0,0.5);
}

/* FEATURES */
.model-features {
  padding: 60px 20px;
  text-align: center;
}

.feature-grid {
  max-width: 1000px;
  margin: 30px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
}

.feature-card {
  padding: 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,215,0,0.25);
}

/* CTA */
.model-cta {
  padding: 70px 20px;
  text-align: center;
  background: linear-gradient(180deg, #000, #0b0b0b);
}

.model-cta p {
  margin-bottom: 20px;
}

/* MOBILE */
@media (max-width: 768px) {
  .model-grid {
    grid-template-columns: 1fr;
  }
}



/* ================================
   PRODUCT VIDEO – BLACK GOLD
================================ */

.product-video-section.dark-theme {
  padding: 90px 20px 50px;
  background: radial-gradient(circle at top, #111, #000);
}

.product-video-wrapper {
  max-width: 1150px;
  margin: auto;
}

.product-video {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,215,0,0.35);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.85),
    0 0 40px rgba(255,215,0,0.15);
}
/* ================================
   FLOORPLAN – BLACK GOLD
================================ */

.product-floorplan.dark-theme {
  padding: 60px 20px 90px;
  background: linear-gradient(180deg, #000, #0a0a0a);
  text-align: center;
}

.floorplan-title {
  font-size: 32px;
  color: #ffd700;
  margin-bottom: 36px;
  letter-spacing: 1px;
}

/* IMAGE */
.floorplan-image {
  max-width: 800px;
  max-height: 900px;
  margin: auto;
}

.floorplan-image img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,215,0,0.3);
  box-shadow:
    0 25px 70px rgba(0,0,0,0.8),
    inset 0 0 0 1px rgba(255,215,0,0.1);
}
@media (max-width: 768px) {

  .product-video-section.dark-theme {
    padding: 60px 14px 40px;
  }

  .product-video {
    border-radius: 12px;
  }

  .product-floorplan.dark-theme {
    padding: 40px 14px 70px;
  }

  .floorplan-title {
    font-size: 24px;
    margin-bottom: 26px;
  }
}


/* ================================
   FAQ SECTION – BLACK GOLD
================================ */

.faq-section {
  padding: 90px 20px;
  background: radial-gradient(circle at top, #111, #000);
  color: #fff;
}

.faq-title {
  text-align: center;
  font-size: 36px;
  color: #ffd700;
  margin-bottom: 60px;
  letter-spacing: 1px;
}

.faq-columns {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.faq-column h3 {
  color: #ffd700;
  margin-bottom: 24px;
  font-size: 22px;
}

/* FAQ ITEM */
.faq-item {
  border-bottom: 1px solid rgba(255,215,0,0.25);
  margin-bottom: 14px;
}

/* QUESTION */
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 16px 0;
  color: #fff;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: #ffd700;
}

/* ICON */
.faq-icon {
  font-size: 22px;
  color: #ffd700;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-answer p {
  padding: 0 0 18px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.6;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  .faq-columns {
    grid-template-columns: 1fr;
  }

  .faq-title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .faq-column h3 {
    font-size: 18px;
  }
}

/* ================================
   CONTAINER DETAILS SECTION
================================ */

.container-details {
  position: relative;
  padding: 100px 20px;
  background: url("assets/container-bg.jpg") center/cover no-repeat;
  min-height: 90vh;
}

.details-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.75);
}

.details-title {
  position: relative;
  text-align: center;
  color: #ffd700;
  font-size: 34px;
  letter-spacing: 2px;
  margin-bottom: 40px;
  z-index: 2;
}

/* CARD */
.details-card {
  position: relative;
  max-width: 1100px;
  margin: auto;
  background: linear-gradient(180deg, #111, #000);
  border-radius: 18px;
  padding: 30px;
  border: 1px solid rgba(255,215,0,0.35);
  box-shadow: 0 30px 80px rgba(255,215,0,0.15);
  z-index: 2;
}

/* TABS */
.details-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  border-bottom: 1px solid rgba(255,215,0,0.3);
  padding-bottom: 18px;
}

.details-tabs .tab {
  background: transparent;
  border: none;
  color: #aaa;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 12px;
  position: relative;
}

.details-tabs .tab.active {
  color: #ffd700;
  font-weight: 600;
}

.details-tabs .tab.active::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffd700;
}

/* CONTENT */
.details-content {
  padding-top: 30px;
  min-height: 300px;
}

.tab-content {
  display: none;
  animation: fadeUp 0.5s ease;
}

.tab-content.active {
  display: block;
}

.tab-content img {
  width: 100%;
  border-radius: 12px;
  background: #fff;
}

.tab-content p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.7;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .details-tabs {
    justify-content: center;
  }

  .details-title {
    font-size: 26px;
  }
}


/* ================================
   DETAILS TAB CONTENT STYLE
================================ */

.detail-box {
  background: #050505;
  border-radius: 12px;
  padding: 30px 34px;
  max-width: 900px;
  margin: auto;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  animation: fadeUp 0.4s ease;
}

.detail-heading {
  font-size: 20px;
  font-weight: 600;
  color: #efe709;
  margin-bottom: 18px;
  border-left: 4px solid #ffd700;
  padding-left: 12px;
}

/* BULLET LIST */
.detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 15px;
  line-height: 1.65;
  color: #fffefe;
}

/* GOLD BULLET */
.detail-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 22px;
  color: #ffd700;
  line-height: 1;
}

/* MOBILE */
@media (max-width: 768px) {
  .detail-box {
    padding: 22px;
  }

  .detail-heading {
    font-size: 18px;
  }

  .detail-list li {
    font-size: 14px;
  }
}

/* =====================================
   GLOBAL MOBILE OPTIMIZATION
===================================== */
@media (max-width: 768px) {

  /* Prevent horizontal overflow everywhere */
  html, body {
    overflow-x: hidden;
  }

  /* ---------- PROCESS VIDEO CARDS ---------- */
  .process-card {
    min-height: 220px;
    border-radius: 14px;
  }

  .video-card video {
    object-fit: contain; /* no zoom / crop */
    background: #000;
  }

  .video-card .card-content {
    padding: 18px 16px;
  }

  .video-card h3 {
    font-size: 16px;
  }

  .video-card p {
    font-size: 13px;
  }

  /* ---------- MODEL HERO ---------- */
  .model-hero {
    min-height: 55vh;
    padding: 0 16px;
  }

  .model-hero h1 {
    font-size: 32px;
    letter-spacing: 1px;
  }

  .model-hero p {
    font-size: 14px;
  }

  /* ---------- MODEL DETAILS GRID ---------- */
  .model-details {
    padding: 50px 16px;
  }

  .model-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .model-image img {
    border-radius: 14px;
  }

  /* ---------- PRODUCT VIDEO ---------- */
  .product-video-section.dark-theme {
    padding: 50px 14px 30px;
  }

  .product-video {
    border-radius: 12px;
  }

  /* ---------- FLOORPLAN ---------- */
  .product-floorplan.dark-theme {
    padding: 40px 14px 60px;
  }

  .floorplan-title {
    font-size: 22px;
    margin-bottom: 22px;
  }

  .floorplan-image {
    max-width: 100%;
  }

  /* ---------- FAQ ---------- */
  .faq-section {
    padding: 60px 16px;
  }

  .faq-title {
    font-size: 24px;
    margin-bottom: 36px;
  }

  .faq-columns {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq-question {
    font-size: 14px;
  }

  .faq-answer p {
    font-size: 13px;
  }

  /* ---------- CONTAINER DETAILS SECTION ---------- */
  .container-details {
    padding: 70px 14px;
    min-height: auto;
  }

  .details-title {
    font-size: 24px;
    margin-bottom: 28px;
  }

  .details-card {
    padding: 22px 18px;
    border-radius: 14px;
  }

  /* Tabs scroll safely on mobile */
  .details-tabs {
    overflow-x: auto;
    white-space: nowrap;
    gap: 12px;
  }

  .details-tabs .tab {
    font-size: 13px;
    padding: 8px 10px;
    flex-shrink: 0;
  }

  /* ---------- DETAIL BOX ---------- */
  .detail-box {
    padding: 20px;
  }

  .detail-heading {
    font-size: 17px;
  }

  .detail-list li {
    font-size: 14px;
    line-height: 1.6;
  }
}








/* ================================
   DESKTOP MODAL FIX (NO CUT OFF)
================================ */

@media (min-width: 769px) {
  .modal {
    display: flex;
    align-items: center;   /* vertical centering */
    justify-content: center;
  }

  .modal-content {
    width: 420px;
    max-height: 85vh;      /* 🔑 limit height */
    overflow-y: auto;     /* 🔑 allow scroll */

    margin: 0;            /* remove top push */
    padding: 28px 26px;
  }
}








/* ===============================
   CASA UNO SLIDESHOW
================================ */

.model-slideshow {
  padding: 70px 20px;
  background: #000;
}

.slideshow-container {
  max-width: 1100px;
  margin: auto;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 215, 0, 0.35);
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.25);
}

.slide {
  display: none;
}

.slide.active {
  display: block;
  animation: fadeSlide 1s ease-in-out;
}

.slide img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

/* Dots */
.slide-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background: rgba(255, 215, 0, 0.4);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: gold;
}

/* Animation */
@keyframes fadeSlide {
  from { opacity: 0.6; }
  to { opacity: 1; }
}

/* Mobile */
@media (max-width: 768px) {
  .slide img {
    height: 280px;
  }
}












/* ================================
   FLOORPLAN IMAGE – FIT TO SCREEN
================================ */

/* Slider container */
.floorplan-slider {
  position: relative;
  width: 100%;
  max-width: 95vw;        /* fit screen width */
  max-height: 85vh;       /* fit screen height */
  margin: 30px auto;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

/* Each slide */
.floor-slide {
  display: none;
  width: 100%;
  height: 100%;
  text-align: center;
}

.floor-slide.active {
  display: block;
}

/* Image itself */
.floor-slide img {
  max-width: 100%;
  max-height: 85vh;       /* key line */
  width: auto;
  height: auto;

  object-fit: contain;   /* 🔑 NO CROP */
  display: block;
  margin: auto;
}

/* Navigation arrows */
.floor-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  background: rgba(0, 0, 0, 0.6);
  color: gold;
  border: none;
  font-size: 28px;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
}

.floor-nav.prev {
  left: 12px;
}

.floor-nav.next {
  right: 12px;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .floor-slide img {
    max-height: 70vh;
  }
}
