@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #C9A96E;
  --gold-light: #E8D5A8;
  --dark: #1A1A1A;
  --darker: #111111;
  --text: #E8E8E8;
  --text-muted: #999999;
  --bg: #0D0D0D;
  --card-bg: rgba(255,255,255,0.04);
  --border: rgba(201,169,110,0.2);
  --glass: rgba(255,255,255,0.06);
  --whatsapp: #25D366;
}

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

html { scroll-behavior: smooth; overflow-x: hidden; width: 100vw; max-width: 100%; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  width: 100vw;
  max-width: 100%;
}

h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; }

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

/* PRELOADER */
#preloader {
  position: fixed; inset:0; z-index:9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s, visibility .6s;
}
#preloader.hidden { opacity:0; visibility:hidden; }
.loader-ring {
  width:60px; height:60px; border-radius:50%;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* TOP BAR */
.top-bar {
  background: var(--darker);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-muted);
}
.top-bar .container {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.top-bar a { color: var(--gold-light); transition: color .3s; }
.top-bar a:hover { color: var(--gold); }
.top-bar-left, .top-bar-right { display:flex; gap:20px; align-items:center; }
.top-bar-right a { display:flex; align-items:center; gap:5px; }

/* NAVBAR */
.navbar {
  position: sticky; top:0; z-index:1000;
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  transition: box-shadow .3s;
}
.navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,.5); }
.navbar .container {
  display:flex; justify-content:space-between; align-items:center;
  padding: 12px 20px;
}
.logo { display:flex; align-items:center; gap:12px; }
.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  object-fit: cover;
}
.logo-text h2 { font-size:20px; color:var(--gold); line-height:1.2; letter-spacing:.5px; }
.logo-text span { font-size:11px; color:var(--text-muted); letter-spacing:2px; text-transform:uppercase; }

.nav-links { display:flex; gap:8px; list-style:none; }
.nav-links a {
  padding:10px 16px; border-radius:8px; font-size:14px; font-weight:500;
  color:var(--text-muted); transition: all .3s; position:relative;
}
.nav-links a:hover, .nav-links a.active { color:var(--gold); background:var(--glass); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), #b8943e) !important;
  color: var(--dark) !important; font-weight:600 !important;
}
.nav-cta:hover { transform:translateY(-2px); box-shadow:0 4px 20px rgba(201,169,110,.4); }

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:8px; }
.hamburger span { width:24px; height:2px; background:var(--gold); border-radius:2px; transition: all .3s; }

/* HERO */
.hero {
  position: relative; min-height:90vh;
  display:flex; align-items:center;
  overflow:hidden;
}
.hero-bg {
  position:absolute; inset:0;
  background: url('images/hero-banner.png') center/cover no-repeat;
}
.hero-bg::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(0,0,0,.82), rgba(0,0,0,.5), rgba(0,0,0,.75));
}
.hero .container { position:relative; z-index:2; padding: 120px 20px 80px; }
.hero-content { max-width:700px; }
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background:var(--glass); border:1px solid var(--border);
  padding:8px 20px; border-radius:50px; font-size:13px;
  color:var(--gold); margin-bottom:28px;
  animation: fadeInUp .8s ease;
}
.hero-badge::before { content:'◆'; font-size:8px; }
.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height:1.15; margin-bottom:24px;
  animation: fadeInUp .8s ease .2s both;
}
.hero h1 span { color:var(--gold); }
.hero p {
  font-size:18px; line-height:1.7; color:var(--text-muted);
  margin-bottom:36px; max-width:550px;
  animation: fadeInUp .8s ease .4s both;
}
.hero-buttons {
  display:flex; gap:16px; flex-wrap:wrap;
  animation: fadeInUp .8s ease .6s both;
}
.btn {
  padding:14px 32px; border-radius:10px; font-size:15px;
  font-weight:600; cursor:pointer; border:none;
  transition: all .3s; display:inline-flex; align-items:center; gap:8px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), #b8943e);
  color:var(--dark);
}
.btn-primary:hover { transform:translateY(-3px); box-shadow:0 8px 30px rgba(201,169,110,.4); }
.btn-outline {
  background:transparent; border:1.5px solid var(--border);
  color:var(--gold);
}
.btn-outline:hover { background:var(--glass); border-color:var(--gold); }
.btn-whatsapp {
  background: var(--whatsapp); color:#fff;
}
.btn-whatsapp:hover { transform:translateY(-3px); box-shadow:0 8px 30px rgba(37,211,102,.35); }

.hero-stats {
  display:flex; gap:50px; margin-top:60px;
  animation: fadeInUp .8s ease .8s both;
}
.stat h3 { font-size:36px; color:var(--gold); }
.stat p { font-size:13px; color:var(--text-muted); margin-top:4px; }

/* SCROLLING MARQUEE */
.marquee-section {
  background:var(--darker); border-top:1px solid var(--border);
  border-bottom:1px solid var(--border); padding:18px 0; overflow:hidden;
}
.marquee-track {
  display:flex; gap:60px; animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-item {
  font-size:15px; color:var(--text-muted); white-space:nowrap;
  display:flex; align-items:center; gap:12px;
}
.marquee-item span { color:var(--gold); font-size:8px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* SECTIONS */
.container { max-width:1200px; margin:0 auto; padding:0 20px; }

.section { padding:100px 0; }
.section-header { text-align:center; margin-bottom:60px; }
.section-label {
  display:inline-flex; align-items:center; gap:8px;
  color:var(--gold); font-size:13px; letter-spacing:3px;
  text-transform:uppercase; margin-bottom:16px;
}
.section-label::before, .section-label::after {
  content:''; width:30px; height:1px; background:var(--gold);
}
.section-header h2 { font-size: clamp(28px, 3.5vw, 44px); margin-bottom:16px; }
.section-header h2 span { color:var(--gold); }
.section-header p { color:var(--text-muted); font-size:16px; max-width:600px; margin:0 auto; line-height:1.7; }

/* ABOUT */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.about-img {
  border-radius:20px; overflow:hidden; position:relative;
  border:1px solid var(--border);
}
.about-img img { width:100%; height:400px; object-fit:cover; display:block; }
.about-img-badge {
  position:absolute; bottom:20px; left:20px;
  background:rgba(0,0,0,.7); backdrop-filter:blur(10px);
  border:1px solid var(--border); padding:16px 24px;
  border-radius:12px; display:flex; align-items:center; gap:12px;
}
.about-img-badge h4 { font-size:28px; color:var(--gold); }
.about-img-badge p { font-size:12px; color:var(--text-muted); }
.about-content h2 { font-size:36px; margin-bottom:20px; }
.about-content h2 span { color:var(--gold); }
.about-content p { color:var(--text-muted); line-height:1.8; margin-bottom:16px; }
.about-features { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-top:30px; }
.about-feature {
  background:var(--card-bg); border:1px solid var(--border);
  padding:20px; border-radius:12px; transition: all .3s;
}
.about-feature:hover { border-color:var(--gold); transform:translateY(-3px); }
.about-feature .icon { font-size:24px; margin-bottom:8px; }
.about-feature h4 { font-size:15px; color:var(--gold); margin-bottom:4px; }
.about-feature p { font-size:13px; color:var(--text-muted); }

/* SERVICES */
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.service-card {
  background:var(--card-bg); border:1px solid var(--border);
  border-radius:16px; overflow:hidden; transition: all .4s;
  position:relative;
}
.service-card:hover { transform:translateY(-8px); border-color:var(--gold); box-shadow:0 20px 60px rgba(0,0,0,.4); }
.service-card img { width:100%; height:220px; object-fit:cover; transition:transform .5s; }
.service-card:hover img { transform:scale(1.05); }
.service-card-content { padding:24px; }
.service-card h3 { font-size:20px; margin-bottom:10px; }
.service-card p { font-size:14px; color:var(--text-muted); line-height:1.7; }
.service-card-overlay {
  position:absolute; top:16px; right:16px;
  background:rgba(0,0,0,.6); backdrop-filter:blur(8px);
  border:1px solid var(--border); padding:8px 14px;
  border-radius:8px; font-size:12px; color:var(--gold);
}

/* WHY US */
.why-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.why-card {
  background:var(--card-bg); border:1px solid var(--border);
  padding:36px 28px; border-radius:16px; text-align:center;
  transition: all .4s; position:relative; overflow:hidden;
}
.why-card::before {
  content:''; position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:60px; height:3px; background:linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius:0 0 4px 4px;
}
.why-card:hover { transform:translateY(-6px); border-color:var(--gold); }
.why-card .icon { font-size:36px; margin-bottom:16px; }
.why-card h3 { font-size:18px; margin-bottom:10px; color:var(--gold-light); }
.why-card p { font-size:14px; color:var(--text-muted); line-height:1.6; }

/* GALLERY */
.gallery-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.gallery-item {
  border-radius:12px; overflow:hidden; position:relative;
  cursor:pointer; border:1px solid var(--border);
}
.gallery-item img { width:100%; height:280px; object-fit:cover; transition:transform .5s; display:block; }
.gallery-item:hover img { transform:scale(1.1); }
.gallery-item::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(to top, rgba(0,0,0,.6), transparent);
  opacity:0; transition:opacity .3s;
}
.gallery-item:hover::after { opacity:1; }
.gallery-item span {
  position:absolute; bottom:16px; left:16px; z-index:2;
  font-size:14px; color:#fff; opacity:0; transition: all .3s;
  transform:translateY(10px);
}
.gallery-item:hover span { opacity:1; transform:translateY(0); }

/* BRANDS MARQUEE */
.brands-section { background:var(--darker); padding:50px 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border); overflow: hidden; }
.brands-track { display:flex; gap:80px; animation: marquee 30s linear infinite; width:max-content; }
.brand-item {
  font-family:'Playfair Display',serif; font-size:22px;
  color:var(--text-muted); white-space:nowrap; opacity:.5;
  transition:opacity .3s;
}
.brand-item:hover { opacity:1; color:var(--gold); }

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, rgba(201,169,110,.12), rgba(201,169,110,.04));
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  padding:80px 0; text-align:center;
}
.cta-section h2 { font-size:clamp(28px,3.5vw,42px); margin-bottom:16px; }
.cta-section h2 span { color:var(--gold); }
.cta-section p { color:var(--text-muted); font-size:16px; max-width:550px; margin:0 auto 32px; line-height:1.7; }
.cta-buttons { display:flex; justify-content:center; gap:16px; flex-wrap:wrap; }

/* FAQ / SSS */
.faq-grid { max-width:800px; margin:0 auto; display:flex; flex-direction:column; gap:16px; }
.faq-item {
  background:var(--card-bg); border:1px solid var(--border);
  border-radius:14px; overflow:hidden; transition: all .3s;
}
.faq-item[open] { border-color:var(--gold); }
.faq-item summary {
  padding:22px 28px; cursor:pointer; font-family:'Playfair Display',serif;
  font-size:17px; color:var(--text); font-weight:500;
  display:flex; align-items:center; justify-content:space-between;
  list-style:none; transition: color .3s;
}
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after {
  content:'+'; font-size:22px; color:var(--gold); font-family:'Inter',sans-serif;
  font-weight:300; transition: transform .3s;
}
.faq-item[open] summary::after { content:'−'; }
.faq-item[open] summary { color:var(--gold); }
.faq-item p {
  padding:0 28px 22px; font-size:15px; color:var(--text-muted);
  line-height:1.8; border-top:1px solid var(--border);
  margin-top:0; padding-top:18px;
}
.faq-item p strong { color:var(--text); }

/* CONTACT */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; }
.contact-info { display:flex; flex-direction:column; gap:24px; }
.contact-card {
  background:var(--card-bg); border:1px solid var(--border);
  padding:28px; border-radius:16px; display:flex; gap:16px;
  align-items:flex-start; transition: all .3s;
}
.contact-card:hover { border-color:var(--gold); transform:translateX(6px); }
.contact-card .icon {
  width:48px; height:48px; border-radius:12px;
  background:linear-gradient(135deg, var(--gold), #b8943e);
  display:flex; align-items:center; justify-content:center;
  font-size:20px; flex-shrink:0;
}
.contact-card h4 { font-size:16px; color:var(--gold-light); margin-bottom:6px; }
.contact-card p { font-size:14px; color:var(--text-muted); line-height:1.6; }
.contact-card a { color:var(--text); transition:color .3s; }
.contact-card a:hover { color:var(--gold); }

.contact-map {
  border-radius:16px; overflow:hidden;
  border:1px solid var(--border); height:100%; min-height:400px;
}
.contact-map iframe { width:100%; height:100%; border:0; filter:grayscale(.7) brightness(.8); }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position:fixed; bottom:28px; right:28px; z-index:999;
  width:60px; height:60px; border-radius:50%;
  background:var(--whatsapp);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,.4);
  animation: pulse-wp 2s infinite;
  transition: transform .3s;
}
.whatsapp-float:hover { transform:scale(1.1); }
.whatsapp-float svg { width:30px; height:30px; fill:#fff; }
@keyframes pulse-wp {
  0%,100% { box-shadow:0 4px 20px rgba(37,211,102,.4); }
  50% { box-shadow:0 4px 40px rgba(37,211,102,.6); }
}

/* FOOTER */
.footer {
  background:var(--darker); border-top:1px solid var(--border);
  padding:60px 0 0;
}
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr; gap:40px; margin-bottom:40px; }
.footer-brand h3 { font-size:22px; color:var(--gold); margin-bottom:12px; }
.footer-brand p { font-size:14px; color:var(--text-muted); line-height:1.7; }
.footer h4 { font-size:16px; color:var(--gold-light); margin-bottom:16px; }
.footer ul { list-style:none; }
.footer li { margin-bottom:10px; }
.footer li a { font-size:14px; color:var(--text-muted); transition:color .3s; display:flex; align-items:center; gap:6px; }
.footer li a:hover { color:var(--gold); }
.footer-contact-item { display:flex; align-items:center; gap:8px; margin-bottom:12px; font-size:14px; color:var(--text-muted); }
.footer-contact-item a { color:var(--text-muted); transition:color .3s; }
.footer-contact-item a:hover { color:var(--gold); }
.footer-bottom {
  border-top:1px solid var(--border); padding:20px 0;
  display:flex; justify-content:space-between; align-items:center;
  font-size:13px; color:var(--text-muted);
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(30px); }
  to { opacity:1; transform:translateY(0); }
}
.animate-on-scroll { opacity:0; transform:translateY(30px); transition: all .6s ease; }
.animate-on-scroll.visible { opacity:1; transform:translateY(0); }

/* RESPONSIVE */
@media(max-width:1024px) {
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .why-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:768px) {
  .top-bar { display:none; }
  .nav-links { display:none; position:fixed; top:0; left:0; width:100%; height:100vh; background:var(--bg); flex-direction:column; align-items:center; justify-content:center; gap:24px; z-index:998; }
  .nav-links a { font-size:18px; padding:12px 24px; width:80%; max-width:300px; text-align:center; }
  .nav-links .nav-cta { justify-content:center; font-size:18px; padding:14px 24px; }
  .nav-links.active { display:flex; }
  .hamburger { display:flex; z-index:999; }
  .about-grid, .contact-grid { grid-template-columns:1fr; }
  .services-grid { grid-template-columns:1fr; }
  .why-grid { grid-template-columns:1fr; }
  .hero-stats { gap:30px; flex-wrap:wrap; }
  .gallery-grid { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; gap:8px; text-align:center; }
  .hero { min-height:auto; padding:40px 0; }
}
@media(max-width:480px) {
  .gallery-grid { grid-template-columns:1fr; }
  .hero-buttons { flex-direction:column; }
  .btn { width:100%; justify-content:center; }
}
