/* ===================================
   ENHANCED RESPONSIVE CSS WITH FOOTER
   =================================== */

/* Basic reset + variables */
:root{
  --bg-dark: #0b1220;
  --glass: rgba(255,255,255,0.06);
  --accent: #ff6b6b;
  --muted: rgba(255,255,255,0.8);
  --container: 1100px;
  --radius: 14px;
  --glass-border: rgba(255,255,255,0.08);
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color-scheme: dark;
}

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

html,body{
  height:100%; 
  overflow-x: hidden;
}

body{
  margin:0;
  background:#070814;
  color:white;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.6;
  font-size:16px;
}

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

/* Utility container */
.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 1rem;
  width: 100%;
}

.muted{
  color: var(--muted);
  opacity: 0.95;
}

/* ===================================
   HEADER - RESPONSIVE
   =================================== */
.site-header{
  position:fixed;
  top:0;
  left:0;
  right:0;
  z-index:40;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(7,8,20,0.85), rgba(7,8,20,0.4));
  border-bottom:1px solid rgba(255,255,255,0.06);
  transition: background 0.3s ease;
}

.header-inner{
  display:flex;
  gap:1rem;
  align-items:center;
  justify-content:space-between;
  padding:0.75rem 1rem;
  max-width: var(--container);
  margin: 0 auto;
}

.brand{
  display:flex;
  gap:0.75rem;
  align-items:center;
  text-decoration:none;
  color:inherit;
  flex-shrink: 0;
}

.logo{
  width:60px;
  height:58px;
  object-fit:cover;
  border-radius:10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.brand-name{
  font-weight:700;
  letter-spacing:0.5px;
  font-size: 1.1rem;
}

/* Navigation */
.main-nav{
  display:flex;
  gap:0.5rem;
  align-items:center;
}

.main-nav a{
  color:var(--muted);
  text-decoration:none;
  padding:0.6rem 0.9rem;
  border-radius:8px;
  font-weight:600;
  font-size:0.95rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.main-nav a:hover{
  color:white; 
  background:rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.nav-toggle{
  display:none;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  padding:0.5rem;
  width:44px;
  height:44px;
  border-radius: 8px;
  cursor: pointer;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  gap: 4px;
  transition: all 0.3s ease;
}

.nav-toggle:hover{
  background:rgba(255,255,255,0.1);
}

.nav-toggle span{
  display:block;
  height:2px;
  width:22px;
  background:white;
  border-radius:2px;
  transition: all 0.3s ease;
}

/* ===================================
   HERO SECTION - RESPONSIVE
   =================================== */
.hero-section{
  min-height:90vh;
  display:flex;
  align-items:center;
  position:relative;
  padding-top:100px;
  padding-bottom: 60px;
  overflow:hidden;
  background-image: url("./img/herobg.png");
  background-size:cover;
  background-position:center;
  background-attachment:scroll;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(3,6,12,0.7) 0%, rgba(3,6,12,0.75) 60%, rgba(3,6,12,0.85) 100%);
  z-index:0;
}

.hero-content{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns: 1fr;
  gap:2rem;
  align-items:center;
  padding:2rem 0;
  width:100%;
}

/* Glass card */
.hero-card{
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.12);
  padding:2rem;
  border-radius:var(--radius);
  box-shadow: 0 20px 60px rgba(2,6,23,0.7);
  backdrop-filter: blur(12px) saturate(130%);
}

.hero-title{
  margin:0 0 1rem 0;
  font-size:clamp(2rem, 5vw, 3.2rem);
  letter-spacing:0.5px;
  line-height: 1.2;
}

.hero-sub{
  margin:0 0 1.5rem 0;
  color:var(--muted);
  font-size:clamp(0.95rem, 2vw, 1.1rem);
  line-height: 1.6;
}

/* CTA buttons */
.hero-ctas{
  display:flex;
  gap:0.75rem;
  flex-wrap:wrap;
  margin-bottom:1rem;
}

.btn{
  display:inline-block;
  padding:0.75rem 1.5rem;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
  font-size:0.95rem;
  border:1px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.btn-primary{
  background:linear-gradient(90deg,#ff7a5f, #ffb07a);
  color:white;
  box-shadow: 0 4px 15px rgba(255,122,95,0.3);
}

.btn-primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255,122,95,0.5);
}

.btn-secondary{
  background:rgba(255,255,255,0.06);
  color:white;
  border:1px solid rgba(255,255,255,0.15);
}

.btn-secondary:hover{
  background:rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

.btn-ghost{
  background:transparent;
  color:var(--muted);
  border:1px dashed rgba(255,255,255,0.2);
}

.btn-ghost:hover{
  background:rgba(255,255,255,0.05);
  border-style: solid;
}

.hero-note{
  font-size:0.9rem;
  color:rgba(255,255,255,0.75);
  margin-top:0.75rem;
}

/* Hero image */
.hero-image{
  display:none;
  justify-self:center;
}

.hero-image img{
  width:100%;
  max-width:450px;
  border-radius:14px;
  box-shadow: 0 25px 50px rgba(2,6,23,0.7);
  border:1px solid rgba(255,255,255,0.08);
}

/* Scroll hint */
.scroll-hint{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:20px;
  font-size:1.8rem;
  color:rgba(255,255,255,0.6);
  text-decoration:none;
  animation: bounce 2s infinite;
  z-index: 3;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===================================
   ABOUT SECTION - RESPONSIVE
   =================================== */
.glass-about{
  padding:4rem 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,120,90,0.04), transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(90,160,255,0.03), transparent 50%);
}

.about-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:2rem;
  align-items:start;
}

/* Visual / lifted photo */
.about-visual{ 
  position:relative; 
  display:flex; 
  align-items:flex-start;
  width: 100%;
}

.photo-lift{
  border-radius:14px;
  overflow:hidden;
  width:100%;
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(5,8,15,0.6);
  border: 1px solid rgba(255,255,255,0.05);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
}

.photo-lift img{ 
  display:block; 
  width:100%; 
  height:auto;
  max-height: 500px;
  object-fit:cover; 
}

/* Ribbon */
.ribbon{
  position:absolute;
  left:15px;
  bottom:15px;
  background: linear-gradient(90deg, rgba(255,120,90,0.95), rgba(255,170,120,0.95));
  color:#111;
  padding:8px 14px;
  border-radius:10px;
  font-weight:800;
  font-size:0.85rem;
  box-shadow: 0 6px 20px rgba(255,120,90,0.4);
}

/* Glass card */
.glass-card{
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border:1px solid rgba(255,255,255,0.1);
  border-radius:16px;
  padding:2rem;
  box-shadow: 0 20px 60px rgba(5,8,15,0.6);
  backdrop-filter: blur(14px) saturate(130%);
}

.about-info h2{ 
  margin:0 0 1rem 0; 
  font-size:clamp(1.6rem, 4vw, 2.2rem);
  line-height: 1.2;
}

.lead{ 
  margin:0 0 1.5rem 0; 
  color:rgba(255,255,255,0.95); 
  font-size:1.05rem;
  line-height: 1.6;
}

/* Info grid */
.info-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:1.5rem;
  align-items:start;
}

.quick-facts{ 
  list-style:none; 
  padding:0; 
  margin:0; 
  display:flex; 
  flex-direction:column; 
  gap:0.75rem; 
}

.quick-facts li{
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  padding:1rem;
  border-radius:10px;
  border:1px solid rgba(255,255,255,0.06);
  font-size:0.95rem;
  line-height: 1.5;
}

/* Hours small glass */
.small-glass{
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border:1px solid rgba(255,255,255,0.08);
  padding:1rem;
  border-radius:12px;
  margin-top: 1rem;
}

.hours-card h4{ 
  margin:0 0 0.75rem 0; 
  font-size:1.05rem; 
}

.hours-grid{ 
  display:grid; 
  grid-template-columns: auto 1fr; 
  gap:0.5rem 1rem; 
  align-items:center; 
}

.time{ 
  text-align:right; 
  font-weight:700;
  color: var(--accent);
}

/* Contact actions */
.contact-actions{ 
  display:flex; 
  gap:0.75rem; 
  flex-wrap: wrap;
  margin-top:1rem; 
}

/* Trust row */
.trust-row{ 
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap:1rem; 
  margin-top:1.5rem; 
}

.trust-item{ 
  background:rgba(255,255,255,0.04); 
  padding:1rem; 
  border-radius:10px; 
  text-align:center;
  border: 1px solid rgba(255,255,255,0.06);
}

.trust-item strong{ 
  display:block; 
  font-size:1.4rem;
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.trust-item small{
  font-size: 0.85rem;
  color: var(--muted);
}

/* ===================================
   PRODUCTS SECTION - RESPONSIVE
   =================================== */
.glass-products{
  padding:4rem 0;
  background:
    radial-gradient(circle at 15% 30%, rgba(255,120,90,0.06), transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(90,160,255,0.05), transparent 50%);
}

.products-head{
  text-align:center;
  margin-bottom:2rem;
}

.products-head h2{
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.product-filters{
  display:flex;
  flex-wrap:wrap;
  gap:0.75rem;
  justify-content:center;
  margin-bottom:2.5rem;
  padding: 0 1rem;
}

.filter-btn, .g-filter{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  color:rgba(255,255,255,0.9);
  padding:0.6rem 1.2rem;
  border-radius:999px;
  font-weight:700;
  font-size: 0.9rem;
  cursor:pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.filter-btn:hover, .g-filter:hover{
  background:rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.filter-btn.active, .g-filter.active{
  background:linear-gradient(90deg,#ff7a5f,#ffb07a);
  color:#fff;
  border-color:transparent;
  box-shadow: 0 4px 15px rgba(255,122,95,0.3);
}

/* Products Grid */
.products-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(350px, 2fr));
  gap:1.5rem;
}

/* Product Card - Glass + Glow */
.product-card{
  position:relative;
  padding:1.5rem;
  border-radius:18px;
  background:linear-gradient(180deg,rgba(255,255,255,0.08),rgba(255,255,255,0.04));
  backdrop-filter:blur(14px) saturate(130%);
  border:1px solid rgba(255,255,255,0.1);
  text-align:center;
  transition:transform .3s ease, box-shadow .3s ease;
  overflow:hidden;
}

/* Glow effect */
.product-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:inherit;
  background:linear-gradient(120deg,rgba(255,120,90,0.3),rgba(90,160,255,0.3));
  filter:blur(20px);
  opacity:0;
  z-index:-1;
  transition: opacity 0.3s ease;
}

.product-card:hover{
  transform:translateY(-8px);
  box-shadow:
    0 20px 50px rgba(0,0,0,0.6),
    0 0 40px rgba(255,120,90,0.2),
    0 0 60px rgba(90,160,255,0.15);
}

.product-card:hover::before{
  opacity: 0.4;
}

.product-card img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:12px;
  margin-bottom:1rem;
}

.product-card h3{
  margin:0.75rem 0 0.5rem 0;
  font-size:1.15rem;
}

.product-card p{
  font-size:0.95rem;
  color:rgba(255,255,255,0.85);
  line-height: 1.5;
}

/* ===================================
   GALLERY SECTION - RESPONSIVE
   =================================== */
.gallery-section{
  padding:4rem 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255,180,120,0.03), transparent 50%),
    linear-gradient(180deg, rgba(10,10,12,0.02), rgba(6,6,8,0.01));
}

.gallery-head{ 
  text-align:center; 
  margin-bottom:2rem; 
}

.gallery-head h2{
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.gallery-controls{ 
  display:flex; 
  gap:1rem; 
  align-items:center; 
  justify-content:space-between; 
  flex-wrap:wrap; 
  margin-top:1.5rem; 
}

.filter-group{ 
  display:flex; 
  gap:0.75rem; 
  flex-wrap:wrap; 
  justify-content:center;
  flex: 1;
}

.control-actions{ 
  display:flex; 
  gap:0.75rem;
  flex-wrap: wrap;
}

/* Gallery Grid - Masonry */
.gallery-grid{
  column-count: 1;
  column-gap: 1.25rem;
  margin-top:2rem;
}

.gallery-item{
  break-inside: avoid;
  margin:0 0 1.25rem 0;
  border-radius:14px;
  overflow:hidden;
  cursor:pointer;
  position:relative;
  transition: transform .3s ease, box-shadow .3s ease;
  transform-origin:center;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border:1px solid rgba(255,255,255,0.08);
  padding:8px;
  backdrop-filter: blur(10px);
}

.gallery-item img{
  display:block;
  width:100%;
  height:auto;
  border-radius:10px;
  transition: transform .25s ease, filter .25s ease;
  filter: saturate(1) contrast(1);
}

.gallery-item figcaption{
  padding:0.75rem;
  font-weight:700;
  font-size:0.95rem;
  color:rgba(255,255,255,0.95);
  text-align: center;
}

.gallery-item:hover, .gallery-item:focus{
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(2,6,23,0.7), 0 0 40px rgba(255,140,90,0.15);
  outline: 2px solid rgba(255,140,90,0.3);
  outline-offset: 2px;
}

.gallery-item:hover img{
  transform: scale(1.05);
  filter: saturate(1.1) contrast(1.05);
}

/* Glow overlay */
.gallery-item::after{
  content:'';
  position:absolute;
  inset:0;
  border-radius:14px;
  pointer-events:none;
  background: radial-gradient(circle at 50% 50%, rgba(255,140,90,0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index:0;
}

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

/* LIGHTBOX */
.lightbox{ 
  display:none; 
  position:fixed; 
  inset:0; 
  z-index:200; 
}

.lb-backdrop{ 
  position:absolute; 
  inset:0; 
  background:rgba(2,6,23,0.95); 
  backdrop-filter: blur(8px); 
}

.lb-panel{
  position:relative;
  width:min(1400px,95%);
  height: 90vh;
  margin:5vh auto;
  background: linear-gradient(180deg, rgba(12,12,14,0.98), rgba(6,6,8,0.98));
  border-radius:14px;
  padding:2rem;
  display:flex;
  flex-direction: column;
  align-items:center;
  justify-content:center;
  box-shadow: 0 30px 90px rgba(0,0,0,0.9);
  border: 1px solid rgba(255,255,255,0.1);
}

.lb-panel img{ 
  max-width:100%; 
  max-height:70vh; 
  border-radius:10px; 
  display:block; 
  margin:0 auto;
  object-fit: contain;
}

.lb-close{ 
  position:absolute; 
  right:20px; 
  top:20px; 
  background:rgba(255,255,255,0.1); 
  border:1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size:2rem; 
  color:#fff; 
  cursor:pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-close:hover{
  background:rgba(255,120,90,0.8);
  transform: rotate(90deg);
}

.lb-arrow{ 
  position:absolute; 
  top:50%; 
  transform:translateY(-50%); 
  background:rgba(255,255,255,0.1); 
  border:1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size:2.5rem; 
  color:white; 
  cursor:pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.lb-arrow:hover{
  background:rgba(255,255,255,0.2);
  transform: translateY(-50%) scale(1.1);
}

.lb-prev{ left:20px; } 
.lb-next{ right:20px; }

.lb-caption{
  margin-top:1.5rem;
  display:flex;
  justify-content:space-between;
  gap:1.5rem;
  align-items:center;
  width:100%;
  flex-wrap: wrap;
}

.lb-text{ 
  color:rgba(255,255,255,0.95); 
  font-weight:600;
  font-size: 1.05rem;
}

.lb-actions{ 
  display:flex; 
  gap:0.75rem;
  flex-wrap: wrap;
}

/* ===================================
   CONTACT SECTION - RESPONSIVE
   =================================== */
.contact-section{
  padding:4rem 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,120,90,0.06), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(90,160,255,0.05), transparent 50%);
}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:2rem;
  align-items:stretch;
}

/* Contact Card */
.contact-card{
  padding:2rem;
}

.contact-card h2{
  margin-top:0;
  font-size:clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 1rem;
}

.contact-lead{
  color:rgba(255,255,255,0.95);
  margin-bottom:1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-info{
  display:grid;
  gap:1.25rem;
  margin-bottom:1.5rem;
}

.info-item .label{
  display:block;
  font-weight:800;
  margin-bottom:0.5rem;
  color:#ffb08a;
  font-size: 0.95rem;
}

.info-item p, .info-item a{
  color:rgba(255,255,255,0.95);
  text-decoration:none;
  line-height: 1.6;
  display: inline-block;
}

.info-item a:hover{
  color: var(--accent);
  text-decoration: underline;
}

/* Map Card */
.map-card{
  padding:1rem;
  position:relative;
  min-height: 400px;
}

.map-placeholder{
  position:relative;
  border-radius:14px;
  overflow:hidden;
  height:100%;
  min-height:400px;
}

.map-placeholder iframe{
  width:100%;
  height:100%;
  border:0;
  display: block;
}

.map-placeholder span{
  position:absolute;
  bottom:20px;
  left:20px;
  background:rgba(0,0,0,0.7);
  padding:10px 16px;
  border-radius:10px;
  font-weight:700;
  font-size: 0.9rem;
}

.map-container{
  display:none;
  height:100%;
  min-height:400px;
  border-radius:14px;
  overflow:hidden;
}

/* Glass glow effect */
.glass-glow{
  background:linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  backdrop-filter: blur(14px) saturate(130%);
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.1);
  position:relative;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.6),
    0 0 40px rgba(255,120,90,0.12),
    0 0 60px rgba(90,160,255,0.08);
}

/* ===================================
   FOOTER - NEW SECTION
   =================================== */
.site-footer{
  background: linear-gradient(180deg, rgba(7,8,20,0.95), rgba(3,4,10,0.98));
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 3rem 0 1rem 0;
  margin-top: 4rem;
}

.footer-content{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 2rem;
}

/* Footer Column */
.footer-col h4{
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 700;
}

/* Footer Brand */
.footer-brand{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo{
  width: 50px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.footer-brand h3{
  font-size: 1.3rem;
  margin: 0;
}

.footer-about{
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

/* Social Links */
.social-links{
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-link{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: white;
  transition: all 0.3s ease;
}

.social-link:hover{
  background: linear-gradient(135deg, #ff7a5f, #ffb07a);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255,122,95,0.4);
}

.social-link svg{
  width: 20px;
  height: 20px;
}

/* Footer Links */
.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li{
  margin-bottom: 0.75rem;
}

.footer-links a{
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover{
  color: var(--accent);
  transform: translateX(5px);
}

/* Footer Contact */
.footer-contact{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li{
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  line-height: 1.6;
  align-items: flex-start;
}

.footer-contact svg{
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.8;
}

.footer-contact a{
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Footer Bottom */
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p{
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom-links{
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom-links a{
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

.footer-bottom-links span{
  color: rgba(255,255,255,0.4);
}

/* ===================================
   RESPONSIVE BREAKPOINTS
   =================================== */

/* Small Mobile: 320px - 480px */
@media (max-width: 480px) {
  :root {
    font-size: 14px;
  }
  
  .hero-section{
    min-height: 80vh;
    padding-top: 80px;
  }
  
  .hero-card{
    padding: 1.25rem;
  }
  
  .hero-ctas{
    flex-direction: column;
  }
  
  .btn{
    width: 100%;
    text-align: center;
  }
  
  .logo{
    width: 50px;
    height: 48px;
  }
  
  .product-filters{
    gap: 0.5rem;
  }
  
  .filter-btn, .g-filter{
    padding: 0.5rem 0.9rem;
    font-size: 0.85rem;
  }
  
  .products-grid{
    grid-template-columns: 1fr;
  }
  
  .product-card img{
    height: 220px;
  }
  
  .gallery-controls{
    flex-direction: column;
    gap: 1rem;
  }
  
  .control-actions{
    width: 100%;
    justify-content: center;
  }
  
  .lb-panel{
    padding: 1rem;
    margin: 2vh auto;
  }
  
  .lb-arrow{
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
  
  .lb-prev{ left: 10px; }
  .lb-next{ right: 10px; }
  
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom{
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile: 481px - 767px */
@media (min-width: 481px) and (max-width: 767px) {
  .products-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid{
    column-count: 2;
  }
  
  .hero-ctas{
    justify-content: flex-start;
  }
}

/* Tablet Portrait: 768px - 1024px */
@media (min-width: 768px) {
  .main-nav{
    display: flex;
  }
  
  .nav-toggle{
    display: none;
  }
  
  .gallery-grid{
    column-count: 2;
  }
  
  .about-grid{
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  
  .info-grid{
    grid-template-columns: 1fr;
  }
  
  .contact-grid{
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablet Landscape & Small Desktop: 1025px - 1199px */
@media (min-width: 1025px) {
  .hero-content{
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
  }
  
  .hero-image{
    display: block;
  }
  
  .gallery-grid{
    column-count: 3;
  }
  
  .about-grid{
    grid-template-columns: 460px 1fr;
  }
  
  .info-grid{
    grid-template-columns: 1fr 280px;
  }
  
  .products-grid{
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid{
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }
}

/* Large Desktop: 1200px+ */
@media (min-width: 1200px) {
  .container{
    max-width: 1200px;
  }
  
  .products-grid{
    grid-template-columns: repeat(4, 1fr);
  }
  
  .gallery-grid{
    column-count: 4;
  }
}

/* Ultra-wide: 1440px+ */
@media (min-width: 1440px) {
  .container{
    max-width: 1300px;
  }
  
  .hero-section{
    min-height: 95vh;
  }
}

/* Mobile Menu Styles (when hamburger is clicked) */
@media (max-width: 767px) {
  .main-nav{
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(7,8,20,0.98), rgba(7,8,20,0.95));
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 30;
  }
  
  .main-nav.active{
    display: flex;
  }
  
  .main-nav a{
    padding: 0.85rem 1rem;
    width: 100%;
    text-align: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
  }
  
  .nav-toggle{
    display: flex;
  }
  
  .nav-toggle.active span:nth-child(1){
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active span:nth-child(2){
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3){
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

/* Print Styles */
@media print {
  .site-header,
  .nav-toggle,
  .scroll-hint,
  .hero-ctas,
  .product-filters,
  .gallery-controls,
  .social-links,
  .footer-bottom-links {
    display: none;
  }
  
  body{
    background: white;
    color: black;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .scroll-hint{
    animation: none;
  }
}
