/* ===== FENESTRA UNLIMITED - GLAMOROUS STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Josefin+Sans:wght@100;200;300;400;600;700&family=Raleway:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-dark: #8B6914;
  --sky: #1B9AD4;
  --sky-dark: #0D6FA3;
  --dark: #0A0E14;
  --dark-2: #111620;
  --dark-3: #1A2030;
  --dark-4: #232B3A;
  --white: #FFFFFF;
  --off-white: #F2F0EA;
  --text-muted: #8A96A8;
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(201,168,76,0.2);
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  /* Matches typical logo.png canvas; tune if your asset uses another hex */
  --logo-bg: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--dark);
  color: var(--off-white);
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
.cursor {
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top:0; left:0;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  position: fixed; top:0; left:0;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%,-50%);
  transition: all 0.15s ease;
}
a:hover ~ .cursor, button:hover ~ .cursor { transform: translate(-50%,-50%) scale(2); }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark-2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* NAVBAR */
.navbar {
  position: fixed; top:0; left:0; right:0;
  z-index: 1000;
  padding: 1.2rem 4rem;
  display: flex; align-items:center; justify-content:space-between;
  background: var(--logo-bg);
  transition: var(--transition);
  border-bottom: 1px solid rgba(10, 14, 20, 0.08);
}
.navbar.scrolled {
  background: rgba(10,14,20,0.95);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--glass-border);
  padding: 0.8rem 4rem;
}
.nav-logo img {
  height: 52px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: brightness(1.14) contrast(1.04);
}
.nav-links { display:flex; gap: 2.5rem; list-style:none; }
.navbar:not(.scrolled) .nav-links a {
  color: var(--dark);
}
.navbar.scrolled .nav-links a {
  color: var(--off-white);
}
.nav-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none;
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content:''; position:absolute; bottom:-4px; left:0;
  width:0; height:1px; background: var(--gold);
  transition: width 0.3s ease;
}
.navbar:not(.scrolled) .nav-links a:hover { color: var(--gold-dark); }
.navbar.scrolled .nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  padding: 0.7rem 1.8rem;
  border: none; border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,168,76,0.4); }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:5px; }
.hamburger span { width:25px; height:2px; background:var(--gold); transition:var(--transition); display:block; }
.navbar:not(.scrolled) .hamburger span { background: var(--dark); }
.navbar.scrolled .hamburger span { background: var(--gold); }

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items:center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset:0;
  background:
    linear-gradient(180deg, var(--logo-bg) 0%, var(--logo-bg) min(112px, 14vh), transparent min(112px, 14vh)),
    linear-gradient(135deg, #0A0E14 0%, #0D1525 40%, #0A1A2E 70%, #061018 100%);
}
.hero-bg::before {
  content:'';
  position:absolute; inset:0;
  background: 
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(27,154,212,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(201,168,76,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset:0; opacity:0.04;
  background-image: 
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index:2;
  max-width: 1400px; margin:0 auto;
  padding: 0 4rem;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  padding-top: 100px;
}
.hero-tag {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex; align-items:center; gap: 1rem;
}
.hero-tag::before {
  content:''; width: 40px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300; line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-title span { color: var(--gold); font-style: italic; }
.hero-title .line-accent {
  color: var(--sky); font-style: normal; font-weight: 600;
  -webkit-text-stroke: 1px var(--sky);
}
.hero-subtitle {
  font-size: 1rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.8;
  max-width: 480px; margin-bottom: 2.5rem;
}
.hero-ctas { display:flex; gap: 1.2rem; flex-wrap:wrap; margin-bottom: 3rem; }
.btn-primary {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--dark);
  padding: 1rem 2.5rem;
  border: none; border-radius: 2px;
  cursor: pointer; text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(201,168,76,0.45); }
.btn-outline {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: transparent;
  color: var(--off-white);
  padding: 1rem 2.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  cursor: pointer; text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.hero-stats { display:flex; gap: 2.5rem; }
.stat { text-align:center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--gold); display:block;
}
.stat-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted);
}
.hero-visual {
  position: relative;
  display: flex; justify-content:center; align-items:center;
}
.hero-glass-card {
  width: 100%; max-width: 520px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.hero-glass-card::before {
  content:'';
  position: absolute; top:0; left:0; right:0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-product-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px;
  background: var(--glass-border);
  border-radius: 2px; overflow:hidden;
}
.hero-product-item {
  background: var(--dark-3);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.hero-product-item:hover { background: var(--dark-4); }
.hero-product-item .icon {
  font-size: 1.8rem; margin-bottom: 0.6rem; display:block;
}
.hero-product-item .name {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--text-muted);
}
.hero-floating-badge {
  position: absolute; bottom: -20px; right: -20px;
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; flex-direction:column;
  align-items:center; justify-content:center;
  text-align:center;
  box-shadow: 0 20px 50px rgba(201,168,76,0.4);
  animation: float 3s ease-in-out infinite;
}
.hero-floating-badge .badge-text {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.55rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dark); line-height: 1.3;
}
.hero-scroll {
  position: absolute; bottom: 40px; left:50%;
  transform: translateX(-50%);
  display: flex; flex-direction:column;
  align-items:center; gap:0.5rem;
  opacity:0.5;
  animation: fadeInUp 1s 2s both;
}
.hero-scroll span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

/* MARQUEE */
.marquee-section {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 1rem 0; overflow:hidden;
}
.marquee-track {
  display:flex; gap: 3rem;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--dark);
  display: flex; align-items:center; gap: 1rem; flex-shrink:0;
}
.marquee-item::after { content: '◆'; opacity: 0.5; }

/* SECTION STYLES */
.section { padding: 6rem 0; }
.section-inner { max-width: 1400px; margin:0 auto; padding: 0 4rem; }
.section-header { margin-bottom: 4rem; }
.section-tag {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex; align-items:center; gap: 1rem;
}
.section-tag::before { content:''; width:30px; height:1px; background:var(--gold); }
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.1;
}
.section-title span { color: var(--gold); font-style: italic; }
.section-title em { color: var(--sky); font-style: normal; }
.section-subtitle {
  font-size: 0.95rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.8;
  max-width: 600px; margin-top: 1rem;
}

/* ABOUT SECTION */
.about-section { background: var(--dark-2); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items:center;
}
.about-image-wrap { position:relative; }
.about-image-frame {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  position: relative;
}
.about-image-frame::before {
  content:'';
  position: absolute; top: -10px; left: -10px; right: 10px; bottom: 10px;
  border: 1px solid var(--gold-dark);
  pointer-events: none;
}
.about-image-frame img { width:100%; display:block; }
.about-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: linear-gradient(135deg, var(--sky), var(--sky-dark));
  padding: 1.5rem 2rem;
  text-align:center;
  box-shadow: 0 10px 40px rgba(27,154,212,0.4);
}
.about-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--white); display:block;
}
.about-badge .label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.about-features { margin-top: 2.5rem; display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }
.feature-item {
  display:flex; gap:1rem; align-items:flex-start;
}
.feature-icon {
  width:40px; height:40px; flex-shrink:0;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
}
.feature-text h4 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.feature-text p { font-size: 0.8rem; color: var(--text-muted); line-height:1.6; }

/* PRODUCTS SECTION */
.products-section { background: var(--dark); }
.products-filter {
  display:flex; gap: 0.8rem; margin-bottom: 3rem; flex-wrap:wrap;
}
.filter-btn {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: transparent;
  color: var(--text-muted);
  padding: 0.6rem 1.4rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px;
  background: rgba(201,168,76,0.1);
}
.product-card {
  background: var(--dark-2);
  position: relative; overflow:hidden;
  cursor: pointer;
  transition: var(--transition);
}
.product-card:hover { background: var(--dark-3); }
.product-card:hover .product-overlay { opacity:1; }
.product-card:hover .product-img { transform: scale(1.05); }
.product-img-wrap { height: 260px; overflow:hidden; position:relative; }
.product-img-wrap .product-img {
  position: relative;
  z-index: 0;
  display: block;
}
.product-img-wrap .product-overlay { z-index: 1; }
.product-img-wrap .product-cat-badge { z-index: 2; }
.product-img {
  width:100%; height:100%; object-fit:cover;
  transition: transform 0.6s ease;
  filter: brightness(0.7) saturate(0.8);
}
.product-card:hover .product-img { filter: brightness(0.85) saturate(1); }
.product-overlay {
  position:absolute; inset:0;
  background: linear-gradient(to top, rgba(10,14,20,0.9) 0%, transparent 60%);
  opacity:0.7; transition: var(--transition);
}
.product-cat-badge {
  position:absolute; top:1rem; left:1rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.55rem; font-weight: 800;
  letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--sky);
  color: var(--white);
  padding: 0.3rem 0.8rem;
}
.product-body { padding: 1.8rem; }
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600;
  margin-bottom: 0.6rem; line-height:1.2;
}
.product-desc { font-size: 0.8rem; color: var(--text-muted); line-height:1.7; margin-bottom: 1.2rem; }
.product-features { list-style:none; margin-bottom: 1.5rem; }
.product-features li {
  font-size: 0.75rem; color: var(--text-muted);
  padding: 0.3rem 0;
  display: flex; align-items:center; gap: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.product-features li::before { content:'◆'; color: var(--gold); font-size:0.4rem; flex-shrink:0; }
.product-link {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: flex; align-items:center; gap:0.5rem;
  transition: var(--transition);
}
.product-link:hover { gap: 1rem; }
.product-link::after { content: '→'; }

/* FEATURED PRODUCT */
.featured-product {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: 1fr 1fr;
}
.featured-product .product-img-wrap { height: 400px; }
.featured-product .product-body { padding: 3rem; display:flex; flex-direction:column; justify-content:center; }
.featured-product .product-name { font-size: 2.2rem; }

/* SERVICES SECTION */
.services-section { background: var(--dark-2); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--glass-border); }
.service-card {
  background: var(--dark-2);
  padding: 2.5rem 2rem;
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  position: relative; overflow:hidden;
}
.service-card::before {
  content:'';
  position: absolute; top:0; left:0; right:0; height:2px;
  background: linear-gradient(90deg, var(--sky), var(--gold));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--dark-3); }
.service-icon { font-size:2rem; margin-bottom: 1.5rem; display:block; }
.service-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 600;
  margin-bottom: 0.8rem;
}
.service-desc { font-size: 0.8rem; color: var(--text-muted); line-height:1.7; }

/* WHY CHOOSE US */
.why-section { background: var(--dark); }
.why-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items:center; }
.why-list { margin-top: 2rem; }
.why-item {
  display:flex; gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.why-item:hover { padding-left: 0.5rem; }
.why-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 700;
  color: rgba(201,168,76,0.2);
  line-height:1; flex-shrink:0; width:50px;
}
.why-content h4 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 0.4rem; color: var(--gold);
}
.why-content p { font-size: 0.85rem; color: var(--text-muted); line-height:1.7; }
.why-visual {
  background: var(--dark-2);
  border: 1px solid var(--glass-border);
  padding: 3rem;
  position: relative;
}
.why-visual::before {
  content:'';
  position:absolute; bottom:-1px; left:-1px; right:-1px; height:2px;
  background: linear-gradient(90deg, var(--gold), var(--sky), var(--gold));
}
.stat-grid { display: grid; grid-template-columns:1fr 1fr; gap: 2px; margin-top: 2rem; background: var(--glass-border); }
.stat-box {
  background: var(--dark-3);
  padding: 2rem 1.5rem;
  text-align:center;
}
.stat-box .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem; font-weight: 700;
  color: var(--gold); display:block; line-height:1;
}
.stat-box .desc {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-top: 0.5rem; display:block;
}

/* CONTACT SECTION */
.contact-section {
  background: var(--dark-2);
  position: relative; overflow:hidden;
}
.contact-section::before {
  content:'';
  position:absolute; top:0; left:0; right:0; bottom:0;
  background: 
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(27,154,212,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 50%, rgba(201,168,76,0.06) 0%, transparent 50%);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 5rem; position:relative; z-index:1; }
.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 300;
  margin-bottom: 2.5rem;
}
.contact-blocks { display:flex; flex-direction:column; gap:1.5rem; }
.contact-block {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 1.5rem;
  transition: var(--transition);
}
.contact-block:hover { border-color: var(--gold); background: rgba(201,168,76,0.05); }
.contact-block-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--sky); margin-bottom: 0.8rem;
  display:flex; align-items:center; gap:0.5rem;
}
.contact-block p { font-size: 0.85rem; color: var(--text-muted); line-height:1.8; }
.contact-block a { color: var(--gold); text-decoration:none; }
.contact-form {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  padding: 3rem;
  position: relative;
}
.contact-form::before {
  content:'';
  position:absolute; top:0; left:0; right:0; height:2px;
  background: linear-gradient(90deg, var(--gold), var(--sky), var(--gold));
}
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300;
  margin-bottom: 2rem;
}
.form-row { display: grid; grid-template-columns:1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted);
  display:block; margin-bottom: 0.5rem;
}
.form-group input, .form-group select, .form-group textarea {
  width:100%;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 0.9rem 1.1rem;
  color: var(--off-white);
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  outline:none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  background: rgba(201,168,76,0.03);
}
.form-group textarea { min-height: 120px; resize:vertical; }
.form-group select option { background: var(--dark-3); }
.form-submit {
  width:100%; padding: 1rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.25em; text-transform: uppercase;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  border:none; border-radius:2px; cursor:pointer;
  transition: var(--transition);
}
.form-submit:hover { transform:translateY(-2px); box-shadow: 0 10px 30px rgba(201,168,76,0.4); }
.form-msg { margin-top:1rem; padding:0.8rem; text-align:center; display:none; font-size:0.85rem; border-radius:2px; }
.form-msg.success { background: rgba(27,154,212,0.1); border: 1px solid var(--sky); color: var(--sky); display:block; }
.form-msg.error { background: rgba(220,50,50,0.1); border: 1px solid #dc3232; color: #dc3232; display:block; }

/* FOOTER */
footer {
  background: var(--dark);
  border-top: 1px solid var(--glass-border);
  padding: 4rem 0 2rem;
}
.footer-inner { max-width: 1400px; margin:0 auto; padding: 0 4rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img {
  height: 50px;
  margin-bottom: 1.2rem;
  mix-blend-mode: multiply;
  filter: brightness(1.14) contrast(1.04);
}
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height:1.8; max-width: 260px; }
.footer-social { display:flex; gap: 0.8rem; margin-top: 1.5rem; }
.social-btn {
  width:38px; height:38px;
  border: 1px solid var(--glass-border);
  display:flex; align-items:center; justify-content:center;
  color: var(--text-muted); font-size:0.9rem;
  text-decoration:none; transition: var(--transition);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--dark-2);
}
.social-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.footer-col h4 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem; font-weight: 800;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a {
  font-size: 0.85rem; color: var(--text-muted);
  text-decoration:none; transition: var(--transition);
  display:flex; align-items:center; gap:0.5rem;
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 0.3rem; }
.footer-hours { display:flex; flex-direction:column; gap: 0.5rem; }
.hour-row { display:flex; justify-content:space-between; font-size:0.82rem; color: var(--text-muted); }
.hour-row span:last-child { color: var(--off-white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display:flex; justify-content:space-between; align-items:center;
  font-size: 0.75rem; color: var(--text-muted);
}
.footer-bottom a { color: var(--gold); text-decoration:none; }

/* CHATBOT */
.chatbot-toggle {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  border:none; cursor:pointer;
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
  display:flex; align-items:center; justify-content:center;
  font-size: 1.5rem;
  z-index: 9990;
  transition: var(--transition);
  animation: pulse-gold 2s ease-in-out infinite;
}
.chatbot-toggle-icon {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--dark);
}
.chatbot-toggle:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(201,168,76,0.6); }
.chatbot-window {
  position: fixed; bottom: 6rem; right: 2rem;
  width: 380px; height: 550px;
  background: var(--dark-2);
  border: 1px solid var(--glass-border);
  border-radius: 4px;
  display: flex; flex-direction:column;
  z-index: 9989;
  transform: translateY(20px) scale(0.95);
  opacity:0; pointer-events:none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  overflow:hidden;
}
.chatbot-window.open { transform: translateY(0) scale(1); opacity:1; pointer-events:all; }
.chatbot-header {
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
  border-bottom: 1px solid var(--glass-border);
  padding: 1.2rem 1.5rem;
  display:flex; align-items:center; gap: 1rem;
  position:relative;
}
.chatbot-header::before {
  content:'';
  position:absolute; top:0; left:0; right:0; height:2px;
  background: linear-gradient(90deg, var(--gold), var(--sky), var(--gold));
}
.chatbot-avatar {
  width:40px; height:40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:0.58rem;
  font-weight:800;
  letter-spacing:0.04em;
  font-family:'Josefin Sans',sans-serif;
  color:var(--dark);
  flex-shrink:0;
}
.chatbot-info h4 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.chatbot-info p { font-size: 0.7rem; color: var(--sky); }
.chatbot-close {
  position:absolute; right:1rem; top:50%; transform:translateY(-50%);
  background:transparent; border:none; color:var(--text-muted);
  cursor:pointer; font-size:1.2rem; transition:var(--transition);
}
.chatbot-close:hover { color: var(--gold); }
.chatbot-messages {
  flex:1; overflow-y:auto; padding: 1.5rem;
  display:flex; flex-direction:column; gap: 1rem;
}
.chatbot-messages::-webkit-scrollbar { width: 3px; }
.chatbot-messages::-webkit-scrollbar-thumb { background: var(--gold-dark); }
.msg { max-width: 85%; }
.msg-bot { align-self:flex-start; }
.msg-user { align-self:flex-end; }
.msg-bubble {
  padding: 0.8rem 1.1rem;
  border-radius: 2px;
  font-size: 0.82rem; line-height:1.6;
}
.msg-bot .msg-bubble {
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-left: 2px solid var(--gold);
  color: var(--off-white);
}
.msg-user .msg-bubble {
  background: linear-gradient(135deg, var(--sky-dark), var(--sky));
  color: var(--white);
}
.msg-time { font-size:0.65rem; color:var(--text-muted); margin-top:0.3rem; }
.msg-bot .msg-time { text-align:left; }
.msg-user .msg-time { text-align:right; }
.chatbot-quick { display:flex; gap:0.5rem; flex-wrap:wrap; padding: 0 1.5rem; margin-bottom:0.5rem; }
.quick-btn {
  font-size: 0.65rem;
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  color: var(--gold);
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
  cursor:pointer; transition:var(--transition);
  font-family: 'Josefin Sans', sans-serif;
  font-weight:600; letter-spacing:0.05em;
}
.quick-btn:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); }
.chatbot-input-wrap {
  display:flex; gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--glass-border);
  background: var(--dark-3);
}
.chatbot-input {
  flex:1; background:var(--dark-2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 0.7rem 1rem;
  color: var(--off-white);
  font-family: 'Raleway', sans-serif;
  font-size: 0.82rem; outline:none;
  transition: var(--transition);
}
.chatbot-input:focus { border-color: var(--gold); }
.chatbot-send {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border:none; border-radius:2px;
  width:40px; height:40px;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:var(--transition);
  color: var(--dark); font-size:1rem;
}
.chatbot-send:hover { transform:scale(1.05); }
.typing-indicator {
  display:flex; gap:4px; align-items:center;
  padding: 0.8rem 1.1rem;
  background: var(--dark-3);
  border: 1px solid var(--glass-border);
  border-left: 2px solid var(--gold);
  width:fit-content; border-radius:2px;
}
.typing-dot {
  width:6px; height:6px; border-radius:50%;
  background: var(--gold); animation: typingDot 1.2s ease-in-out infinite;
}
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

/* ANIMATIONS */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes scrollLine { 0%,100% { opacity:0; transform:scaleY(0); } 50% { opacity:1; transform:scaleY(1); } }
@keyframes fadeInUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
@keyframes pulse-gold { 0%,100% { box-shadow: 0 8px 30px rgba(201,168,76,0.4); } 50% { box-shadow: 0 8px 50px rgba(201,168,76,0.7); } }
@keyframes typingDot { 0%,100% { transform:translateY(0); opacity:0.4; } 50% { transform:translateY(-4px); opacity:1; } }
.reveal { opacity:0; transform:translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-content { grid-template-columns:1fr; padding-top: 120px; }
  .hero-visual { display:none; }
  .about-grid, .why-grid, .contact-grid { grid-template-columns:1fr; gap: 3rem; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .products-grid { grid-template-columns:1fr 1fr; }
  .featured-product { grid-column:auto; grid-template-columns:1fr; }
  .services-grid { grid-template-columns:1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar { padding: 1rem 1.5rem; }
  .navbar.scrolled { padding: 0.6rem 1.5rem; }
  .nav-links, .nav-cta { display:none; }
  .hamburger { display:flex; }
  .section-inner { padding: 0 1.5rem; }
  .hero-content { padding: 0 1.5rem; padding-top: 100px; }
  .products-grid { grid-template-columns:1fr; }
  .services-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-inner { padding: 0 1.5rem; }
  .chatbot-window { width: calc(100vw - 2rem); right: 1rem; }
  .form-row { grid-template-columns:1fr; }
}

/* MOBILE NAV */
.mobile-nav {
  position:fixed; inset:0; z-index:999;
  background: rgba(10,14,20,0.98);
  backdrop-filter:blur(20px);
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  gap: 2rem;
  transform:translateX(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.mobile-nav.open { transform:translateX(0); }
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem; font-weight: 300;
  color: var(--off-white); text-decoration:none;
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav-close {
  position:absolute; top:2rem; right:1.5rem;
  background:none; border:none; color:var(--text-muted);
  font-size:1.5rem; cursor:pointer;
}

/* PAGE HERO */
.page-hero {
  min-height: 50vh;
  background:
    linear-gradient(180deg, var(--logo-bg) 0%, var(--logo-bg) min(112px, 14vh), transparent min(112px, 14vh)),
    linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  display:flex; align-items:center;
  position:relative; overflow:hidden;
  padding-top: 80px;
}
.page-hero::before {
  content:'';
  position:absolute; inset:0;
  background: radial-gradient(ellipse 70% 60% at 60% 50%, rgba(27,154,212,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero-content { position:relative; z-index:1; padding: 0 4rem; max-width: 1400px; margin:0 auto; width:100%; }
.breadcrumb {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--gold); text-decoration:none; }
.breadcrumb span { margin: 0 0.5rem; }
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300; line-height: 1.1;
}
.page-title span { color: var(--gold); font-style:italic; }

/* ===== FLASH-STYLE SITE INTRO ===== */
html.splash-active,
body.splash-active {
  overflow: hidden;
  height: 100%;
}

.site-splash {
  position: fixed;
  inset: 0;
  z-index: 100100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(ellipse 120% 80% at 50% 20%, #1a2538 0%, var(--dark) 45%, #05070a 100%);
  transition: opacity 0.75s ease, transform 0.85s cubic-bezier(0.55, 0.06, 0.2, 1), filter 0.75s ease;
}

.site-splash.splash-exit {
  opacity: 0;
  transform: scale(1.04);
  filter: blur(12px);
  pointer-events: none;
}

.site-splash__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(201, 168, 76, 0.07) 0%, transparent 40%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.02) 2px,
      rgba(255, 255, 255, 0.02) 4px
    ),
    radial-gradient(circle at 50% 100%, rgba(27, 154, 212, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.site-splash__scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 3px,
    rgba(0, 0, 0, 0.12) 3px,
    rgba(0, 0, 0, 0.12) 6px
  );
  opacity: 0.35;
  pointer-events: none;
  mix-blend-mode: multiply;
}

.site-splash__shine {
  position: absolute;
  inset: -50%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.04) 45%,
    rgba(255, 255, 255, 0.09) 50%,
    rgba(255, 255, 255, 0.04) 55%,
    transparent 60%
  );
  animation: splash-shine 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes splash-shine {
  0%, 100% { transform: translateX(-30%) rotate(0deg); }
  50% { transform: translateX(30%) rotate(0deg); }
}

.site-splash__skip {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(10, 14, 20, 0.6);
  border: 1px solid var(--glass-border);
  padding: 0.55rem 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.site-splash__skip:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.site-splash__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
  max-width: 420px;
}

/* Logo sits in a radial well that matches the splash palette so it reads as part of the scene */
.site-splash__logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.35rem;
  padding: 1.85rem 2.4rem;
  border-radius: 50%;
  background:
    radial-gradient(ellipse 90% 90% at 50% 38%, rgba(201, 168, 76, 0.11) 0%, transparent 52%),
    radial-gradient(ellipse 100% 100% at 50% 50%, rgba(26, 37, 56, 0.85) 0%, rgba(10, 14, 20, 0.45) 52%, transparent 78%);
  box-shadow: inset 0 0 70px rgba(5, 7, 10, 0.55);
}

.site-splash__logo-wrap::after {
  content: '';
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 40%, transparent 0%, rgba(5, 7, 10, 0.42) 100%);
  pointer-events: none;
}

.site-splash__logo {
  position: relative;
  z-index: 1;
  height: 72px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  opacity: 0.98;
  /* Multiplies with dark splash bg so white/light PNG areas read as part of the scene */
  mix-blend-mode: multiply;
  filter: brightness(1.16) contrast(1.05) saturate(0.98);
  animation: splash-logo-pulse 2.2s ease-in-out infinite;
}

@keyframes splash-logo-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.95;
    filter: brightness(1.12) contrast(1.04) saturate(0.98) drop-shadow(0 0 18px rgba(27, 154, 212, 0.1));
  }
  50% {
    transform: scale(1.025);
    opacity: 1;
    filter: brightness(1.2) contrast(1.06) saturate(1) drop-shadow(0 0 24px rgba(201, 168, 76, 0.18));
  }
}

.site-splash__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--off-white);
  margin-top: 1.25rem;
  letter-spacing: 0.02em;
}

.site-splash__tag {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
}

.site-splash__bar-wrap {
  margin-top: 2rem;
  width: 100%;
}

.site-splash__bar {
  position: relative;
  height: 10px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(201, 168, 76, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 4px 20px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.site-splash__bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
  background-size: 200% 100%;
  animation: splash-bar-sheen 1.8s linear infinite;
  box-shadow: 0 0 16px rgba(201, 168, 76, 0.6);
  transition: width 0.12s linear;
}

@keyframes splash-bar-sheen {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

.site-splash__bar-gloss {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.25) 48%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0.25) 52%,
    transparent 100%
  );
  background-size: 40% 100%;
  animation: splash-gloss-move 1.4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes splash-gloss-move {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(320%); }
}

.site-splash__pct {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--off-white);
  margin-top: 1rem;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.35);
}

.site-splash__loading {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

@media (prefers-reduced-motion: reduce) {
  .site-splash__shine,
  .site-splash__bar-fill,
  .site-splash__bar-gloss,
  .site-splash__logo {
    animation: none;
  }
  .site-splash__logo {
    opacity: 0.96;
    filter: brightness(1.14) contrast(1.04) saturate(0.98) drop-shadow(0 0 14px rgba(201, 168, 76, 0.15));
  }
}

/* Homepage project gallery */
.showcase-section {
  background: var(--dark-2);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 168, 76, 0.12);
  margin-top: 2.5rem;
}

.showcase-item {
  margin: 0;
  overflow: hidden;
  background: var(--dark-3);
  aspect-ratio: 4 / 3;
}

.showcase-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.8, 0.25, 1), filter 0.45s ease;
  filter: saturate(0.92) brightness(0.95);
}

.showcase-item:hover img {
  transform: scale(1.04);
  filter: saturate(1) brightness(1);
}

@media (max-width: 900px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}
