@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:wght@400;500;600;700&display=swap');

:root {
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --gold-dark: #a08339;
  --black: #0a0a0a;
  --black-light: #141414;
  --black-card: #1a1a1a;
  --black-border: #2a2a2a;
  --white: #f5f5f5;
  --gray: #888;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;
}

* { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width:8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius:4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ========== PRELOADER ========== */
.preloader {
  position: fixed; inset:0; z-index:9999;
  background: var(--black);
  display: flex; align-items:center; justify-content:center;
  transition: opacity .6s, visibility .6s;
}
.preloader.hidden { opacity:0; visibility:hidden; }
.preloader-logo {
  width:120px; animation: pulse-glow 1.5s infinite;
}
@keyframes pulse-glow {
  0%,100% { filter: drop-shadow(0 0 10px rgba(201,168,76,.3)); transform:scale(1); }
  50% { filter: drop-shadow(0 0 30px rgba(201,168,76,.8)); transform:scale(1.05); }
}

/* ========== CURSOR ========== */
.custom-cursor {
  width:20px; height:20px; border:2px solid var(--gold);
  border-radius:50%; position:fixed; pointer-events:none;
  z-index:10000; transition: transform .15s, opacity .15s;
  mix-blend-mode: difference;
}
.custom-cursor.hover { transform: scale(2); opacity:.5; }

/* ========== NAVBAR ========== */
.navbar {
  position:fixed; top:0; width:100%; z-index:1000;
  padding:20px 60px; display:flex; align-items:center; justify-content:space-between;
  transition: all .4s; background: transparent;
}
.navbar.scrolled {
  background: rgba(10,10,10,.95); backdrop-filter:blur(20px);
  padding:12px 60px; box-shadow: 0 2px 30px rgba(0,0,0,.5);
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.nav-logo { display:flex; align-items:center; gap:15px; text-decoration:none; }
.nav-logo img { height:55px; transition: .3s; border-radius:50%; background:var(--black); padding:3px; border:2px solid rgba(201,168,76,.3); }
.navbar.scrolled .nav-logo img { height:42px; }
.nav-logo-text h2 {
  font-family: var(--font-heading); color: var(--gold);
  font-size:1.3rem; font-weight:700; letter-spacing:1px;
}
.nav-logo-text span { font-size:.7rem; color:var(--gray); letter-spacing:2px; text-transform:uppercase; }

.nav-links { display:flex; gap:35px; list-style:none; }
.nav-links a {
  color: var(--white); text-decoration:none; font-size:.85rem;
  font-weight:500; letter-spacing:1.5px; text-transform:uppercase;
  position:relative; padding:5px 0; transition: color .3s;
}
.nav-links a::after {
  content:''; position:absolute; bottom:0; left:0;
  width:0; height:2px; background: var(--gold);
  transition: width .3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width:100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black); padding:12px 30px; border:none; border-radius:4px;
  font-weight:600; font-size:.8rem; letter-spacing:1.5px; text-transform:uppercase;
  cursor:pointer; transition: all .3s; text-decoration:none;
}
.nav-cta:hover { transform:translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,.4); }

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; z-index:1001; }
.hamburger span { width:28px; height:2px; background:var(--gold); transition:.3s; }
.hamburger.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* ========== HERO ========== */
.hero {
  min-height:100vh; position:relative; display:flex; align-items:center;
  justify-content:center; overflow:hidden; text-align:center;
}
.hero-bg {
  position:absolute; inset:0; z-index:0;
  background: url('../images/hero-bg.png') center/cover no-repeat;
}
.hero-bg::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(0,0,0,.85), rgba(10,10,10,.7), rgba(0,0,0,.85));
}
.hero-particles { position:absolute; inset:0; z-index:1; }
.particle {
  position:absolute; width:3px; height:3px; background: var(--gold);
  border-radius:50%; opacity:.3; animation: float-particle linear infinite;
}
@keyframes float-particle {
  0% { transform:translateY(100vh) rotate(0deg); opacity:0; }
  10% { opacity:.3; }
  90% { opacity:.3; }
  100% { transform:translateY(-100vh) rotate(720deg); opacity:0; }
}

.hero-content {
  position:relative; z-index:2; text-align:center;
  max-width:900px; padding:0 20px; margin:0 auto;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
}
.hero-badge {
  display:inline-block; padding:8px 25px; border:1px solid rgba(201,168,76,.4);
  border-radius:30px; font-size:.75rem; letter-spacing:3px; text-transform:uppercase;
  color: var(--gold); margin-bottom:30px;
  animation: fadeInDown 1s .3s both;
}
.hero-logo {
  width:180px; height:180px; margin-bottom:30px;
  border-radius:50%; object-fit:contain;
  border:3px solid var(--gold);
  background: #fff;
  padding:15px;
  box-shadow: 0 0 40px rgba(201,168,76,.3), 0 0 80px rgba(201,168,76,.1);
  filter: drop-shadow(0 0 20px rgba(201,168,76,.4));
  animation: fadeInDown 1s .5s both;
}
.hero h1 {
  font-family: var(--font-heading); font-size:4rem; font-weight:800;
  line-height:1.1; margin-bottom:10px; animation: fadeInUp 1s .7s both;
}
.hero h1 .gold { color: var(--gold); }
.hero .subtitle {
  font-family: var(--font-accent); font-size:1.5rem; color: var(--gold-light);
  margin-bottom:15px; font-style:italic; animation: fadeInUp 1s .9s both;
}
.hero .tagline {
  font-size:1rem; color: var(--gray); max-width:600px; margin:0 auto 40px;
  line-height:1.8; animation: fadeInUp 1s 1.1s both; text-align:center;
}
.hero-buttons {
  display:flex; gap:20px; justify-content:center; align-items:center;
  animation: fadeInUp 1s 1.3s both; flex-wrap:wrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black); padding:16px 40px; border:none; border-radius:4px;
  font-weight:700; font-size:.85rem; letter-spacing:2px; text-transform:uppercase;
  cursor:pointer; transition:.3s; text-decoration:none; display:inline-flex;
  align-items:center; gap:10px;
}
.btn-primary:hover { transform:translateY(-3px); box-shadow: 0 10px 30px rgba(201,168,76,.4); }
.btn-outline {
  background:transparent; color:var(--gold); padding:16px 40px;
  border:2px solid var(--gold); border-radius:4px; font-weight:600;
  font-size:.85rem; letter-spacing:2px; text-transform:uppercase;
  cursor:pointer; transition:.3s; text-decoration:none;
}
.btn-outline:hover { background: var(--gold); color: var(--black); transform:translateY(-3px); }

.scroll-indicator {
  position:absolute; bottom:40px; left:50%; transform:translateX(-50%);
  z-index:2; animation: bounce 2s infinite;
}
.scroll-indicator span {
  display:block; width:25px; height:40px; border:2px solid var(--gold);
  border-radius:15px; position:relative;
}
.scroll-indicator span::after {
  content:''; width:4px; height:8px; background:var(--gold); border-radius:2px;
  position:absolute; top:6px; left:50%; transform:translateX(-50%);
  animation: scroll-dot 2s infinite;
}
@keyframes scroll-dot { 0% { opacity:1; top:6px; } 100% { opacity:0; top:24px; } }
@keyframes bounce { 0%,100% { transform:translateX(-50%) translateY(0); } 50% { transform:translateX(-50%) translateY(10px); } }

/* ========== SECTION COMMON ========== */
.section { padding:120px 60px; position:relative; }
.section-header { text-align:center; margin-bottom:80px; }
.section-badge {
  display:inline-block; padding:6px 20px; border:1px solid rgba(201,168,76,.3);
  border-radius:20px; font-size:.7rem; letter-spacing:3px; text-transform:uppercase;
  color:var(--gold); margin-bottom:20px;
}
.section-header h2 {
  font-family: var(--font-heading); font-size:3rem; font-weight:700;
  margin-bottom:15px;
}
.section-header h2 .gold { color: var(--gold); }
.section-line {
  width:80px; height:3px; background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  margin:0 auto 20px; border-radius:2px;
}
.section-header p { color: var(--gray); max-width:600px; margin:0 auto; line-height:1.8; }

/* ========== ABOUT ========== */
.about { background: var(--black-light); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.about-image { position:relative; }
.about-image img {
  width:100%; border-radius:8px; box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.about-image::before {
  content:''; position:absolute; top:-20px; left:-20px; right:20px; bottom:20px;
  border:2px solid var(--gold); border-radius:8px; z-index:-1;
}
.about-image .experience-badge {
  position:absolute; bottom:-20px; right:-20px; background: var(--gold);
  color: var(--black); padding:25px; border-radius:8px; text-align:center;
  box-shadow: 0 10px 30px rgba(201,168,76,.3);
}
.experience-badge .number { font-family:var(--font-heading); font-size:2.5rem; font-weight:800; line-height:1; }
.experience-badge .label { font-size:.75rem; font-weight:600; text-transform:uppercase; letter-spacing:1px; }

.about-content h3 {
  font-family: var(--font-heading); font-size:2.2rem; margin-bottom:25px; line-height:1.3;
}
.about-content h3 .gold { color: var(--gold); }
.about-content p { color: var(--gray); line-height:1.9; margin-bottom:20px; }
.about-stats {
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:40px;
}
.stat-item {
  text-align:center; padding:25px; background: var(--black-card);
  border:1px solid var(--black-border); border-radius:8px; transition:.3s;
}
.stat-item:hover { border-color: var(--gold); transform:translateY(-5px); }
.stat-item .stat-number {
  font-family: var(--font-heading); font-size:2rem; color: var(--gold);
  font-weight:700;
}
.stat-item .stat-label { font-size:.75rem; color:var(--gray); text-transform:uppercase; letter-spacing:1px; margin-top:5px; }

/* ========== SERVICES ========== */
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:30px; }
.service-card {
  background: var(--black-card); border:1px solid var(--black-border);
  border-radius:12px; padding:45px 35px; transition:.5s; position:relative;
  overflow:hidden; cursor:pointer;
}
.service-card::before {
  content:''; position:absolute; top:0; left:0; width:100%; height:3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform:scaleX(0); transition:.5s; transform-origin:left;
}
.service-card:hover::before { transform:scaleX(1); }
.service-card:hover {
  transform:translateY(-10px); border-color: rgba(201,168,76,.3);
  box-shadow: 0 20px 50px rgba(0,0,0,.5), 0 0 30px rgba(201,168,76,.1);
}
.service-icon {
  width:65px; height:65px; background: linear-gradient(135deg, rgba(201,168,76,.15), rgba(201,168,76,.05));
  border-radius:12px; display:flex; align-items:center; justify-content:center;
  margin-bottom:25px; font-size:1.5rem; color: var(--gold); transition:.3s;
}
.service-card:hover .service-icon {
  background: var(--gold); color: var(--black); transform:rotateY(180deg);
}
.service-card h3 {
  font-family: var(--font-heading); font-size:1.3rem; margin-bottom:15px; transition:.3s;
}
.service-card:hover h3 { color: var(--gold); }
.service-card p { color: var(--gray); line-height:1.8; font-size:.9rem; }
.service-card .card-number {
  position:absolute; top:20px; right:25px; font-family:var(--font-heading);
  font-size:3rem; color: rgba(201,168,76,.08); font-weight:800;
}

/* ========== GALLERY ========== */
.gallery { background: var(--black-light); }
.gallery-filters {
  display:flex; justify-content:center; gap:15px; margin-bottom:50px; flex-wrap:wrap;
}
.filter-btn {
  padding:10px 28px; border:1px solid var(--black-border); background:transparent;
  color:var(--gray); border-radius:30px; cursor:pointer; font-size:.8rem;
  letter-spacing:1px; text-transform:uppercase; transition:.3s; font-family:var(--font-body);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold); color: var(--black); border-color: var(--gold);
}
.gallery-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:25px;
}
.gallery-item {
  position:relative; border-radius:12px; overflow:hidden; cursor:pointer;
  aspect-ratio:4/3;
}
.gallery-item img {
  width:100%; height:100%; object-fit:cover; transition:.6s;
}
.gallery-item:hover img { transform:scale(1.1); }
.gallery-overlay {
  position:absolute; inset:0; background: linear-gradient(to top, rgba(0,0,0,.9), transparent);
  display:flex; align-items:flex-end; padding:25px; opacity:0; transition:.4s;
}
.gallery-item:hover .gallery-overlay { opacity:1; }
.gallery-overlay h4 { font-family:var(--font-heading); font-size:1.1rem; color:var(--gold); }

/* Lightbox */
.lightbox {
  position:fixed; inset:0; z-index:9999; background:rgba(0,0,0,.95);
  display:none; align-items:center; justify-content:center;
}
.lightbox.active { display:flex; }
.lightbox img { max-width:85%; max-height:85%; object-fit:contain; border-radius:8px; }
.lightbox-close {
  position:absolute; top:30px; right:30px; font-size:2rem; color:var(--gold);
  cursor:pointer; background:none; border:none; transition:.3s;
}
.lightbox-close:hover { transform:rotate(90deg); }

/* ========== TESTIMONIALS ========== */
.testimonials-slider { max-width:800px; margin:0 auto; position:relative; }
.testimonial-card {
  background: var(--black-card); border:1px solid var(--black-border);
  border-radius:12px; padding:50px; text-align:center; display:none;
}
.testimonial-card.active { display:block; animation: fadeIn .5s; }
.testimonial-card .quote-icon { font-size:3rem; color: rgba(201,168,76,.2); margin-bottom:20px; }
.testimonial-card p { font-family:var(--font-accent); font-size:1.3rem; line-height:1.8; color:var(--gray); font-style:italic; margin-bottom:30px; }
.testimonial-card .author { color:var(--gold); font-weight:600; font-size:1rem; }
.testimonial-card .role { color:var(--gray); font-size:.8rem; margin-top:5px; }
.testimonial-stars { color:var(--gold); margin-bottom:20px; letter-spacing:3px; }
.testimonial-nav { display:flex; justify-content:center; gap:15px; margin-top:30px; }
.testimonial-dot {
  width:12px; height:12px; border-radius:50%; background:var(--black-border);
  cursor:pointer; transition:.3s; border:none;
}
.testimonial-dot.active { background:var(--gold); }

/* ========== CONTACT ========== */
.contact-grid { display:grid; grid-template-columns:1fr 1fr; gap:60px; }
.contact-info { display:flex; flex-direction:column; gap:30px; }
.contact-item {
  display:flex; gap:20px; align-items:flex-start; padding:25px;
  background:var(--black-card); border:1px solid var(--black-border);
  border-radius:12px; transition:.3s;
}
.contact-item:hover { border-color: var(--gold); transform:translateX(5px); }
.contact-item i { font-size:1.3rem; color:var(--gold); margin-top:3px; }
.contact-item h4 { font-size:.9rem; margin-bottom:5px; }
.contact-item p { color:var(--gray); font-size:.85rem; }
.contact-item a { color:var(--gold); text-decoration:none; }

.contact-form { display:flex; flex-direction:column; gap:20px; }
.form-group { position:relative; }
.form-group input, .form-group textarea {
  width:100%; padding:16px 20px; background:var(--black-card);
  border:1px solid var(--black-border); border-radius:8px; color:var(--white);
  font-family:var(--font-body); font-size:.9rem; transition:.3s; outline:none;
}
.form-group input:focus, .form-group textarea:focus { border-color:var(--gold); }
.form-group textarea { min-height:150px; resize:vertical; }
.form-group label {
  position:absolute; left:20px; top:16px; color:var(--gray); font-size:.9rem;
  transition:.3s; pointer-events:none;
}
.form-group input:focus ~ label, .form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label, .form-group textarea:not(:placeholder-shown) ~ label {
  top:-8px; left:15px; font-size:.7rem; color:var(--gold);
  background:var(--black-card); padding:0 5px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--black-light); border-top:1px solid var(--black-border);
  padding:80px 60px 30px;
}
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:50px; margin-bottom:50px; }
.footer-brand img { height:60px; margin-bottom:20px; border-radius:50%; background:var(--black); padding:4px; border:2px solid rgba(201,168,76,.3); }
.footer-brand p { color:var(--gray); line-height:1.8; font-size:.85rem; }
.footer-col h4 {
  font-family:var(--font-heading); color:var(--gold); margin-bottom:20px;
  font-size:1rem; letter-spacing:1px;
}
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:12px; }
.footer-col ul li a { color:var(--gray); text-decoration:none; font-size:.85rem; transition:.3s; }
.footer-col ul li a:hover { color:var(--gold); padding-left:5px; }
.footer-bottom {
  border-top:1px solid var(--black-border); padding-top:25px;
  display:flex; justify-content:space-between; align-items:center;
}
.footer-bottom p { color:var(--gray); font-size:.8rem; }
.footer-social { display:flex; gap:15px; }
.footer-social a {
  width:40px; height:40px; border:1px solid var(--black-border); border-radius:50%;
  display:flex; align-items:center; justify-content:center; color:var(--gray);
  transition:.3s; text-decoration:none;
}
.footer-social a:hover { border-color:var(--gold); color:var(--gold); transform:translateY(-3px); }

/* ========== ANIMATIONS ========== */
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeInUp { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInDown { from { opacity:0; transform:translateY(-40px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInLeft { from { opacity:0; transform:translateX(-40px); } to { opacity:1; transform:translateX(0); } }
@keyframes fadeInRight { from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:translateX(0); } }

.reveal { opacity:0; transform:translateY(40px); transition: all .8s cubic-bezier(.4,0,.2,1); }
.reveal.active { opacity:1; transform:translateY(0); }
.reveal-left { opacity:0; transform:translateX(-40px); transition: all .8s cubic-bezier(.4,0,.2,1); }
.reveal-left.active { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(40px); transition: all .8s cubic-bezier(.4,0,.2,1); }
.reveal-right.active { opacity:1; transform:translateX(0); }

/* ========== BACK TO TOP ========== */
.back-to-top {
  position:fixed; bottom:30px; right:30px; width:50px; height:50px;
  background: var(--gold); color: var(--black); border:none; border-radius:50%;
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  font-size:1.2rem; opacity:0; visibility:hidden; transition:.3s; z-index:999;
  box-shadow: 0 5px 20px rgba(201,168,76,.3);
}
.back-to-top.visible { opacity:1; visibility:visible; }
.back-to-top:hover { transform:translateY(-5px); }

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position:fixed; bottom:30px; left:30px; width:55px; height:55px;
  background:#25d366; border-radius:50%; display:flex; align-items:center;
  justify-content:center; color:#fff; font-size:1.5rem; z-index:999;
  box-shadow: 0 5px 20px rgba(37,211,102,.3); animation: pulse-green 2s infinite;
  text-decoration:none;
}
@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.4); }
  50% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
}

/* ========== MOBILE MENU ========== */
.mobile-menu {
  position:fixed; inset:0; background:rgba(10,10,10,.98); z-index:999;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:30px; transform:translateX(100%); transition:.5s;
}
.mobile-menu.active { transform:translateX(0); }
.mobile-menu a {
  color:var(--white); text-decoration:none; font-family:var(--font-heading);
  font-size:1.8rem; transition:.3s;
}
.mobile-menu a:hover { color:var(--gold); }

/* ========== PAGE BANNER ========== */
.page-banner {
  min-height:45vh; display:flex; align-items:center; justify-content:center;
  background: linear-gradient(135deg, rgba(0,0,0,.9), rgba(20,15,5,.8)),
              url('../images/hero-bg.png') center/cover no-repeat;
  text-align:center; padding-top:80px;
}
.page-banner-content h1 {
  font-family: var(--font-heading); font-size:3.5rem; font-weight:800;
  margin-bottom:15px; animation: fadeInUp .8s;
}
.page-banner-content h1 .gold { color: var(--gold); }
.page-banner-content p {
  color: var(--gray); font-size:.9rem; letter-spacing:2px; text-transform:uppercase;
  animation: fadeInUp .8s .2s both;
}
.page-banner-content p .gold { color: var(--gold); }

/* Active nav link */
.nav-links a.active-link { color: var(--gold); }
.nav-links a.active-link::after { width:100%; }

/* ========== RESPONSIVE ========== */
@media(max-width:1024px) {
  .section { padding:80px 30px; }
  .navbar { padding:15px 30px; }
  .hero h1 { font-size:3rem; }
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .about-grid { gap:40px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}
@media(max-width:768px) {
  .nav-links, .nav-cta { display:none; }
  .hamburger { display:flex; }
  .hero h1 { font-size:2.2rem; }
  .hero .subtitle { font-size:1.1rem; }
  .hero-buttons { flex-direction:column; align-items:center; }
  .about-grid { grid-template-columns:1fr; }
  .services-grid { grid-template-columns:1fr; }
  .gallery-grid { grid-template-columns:repeat(2,1fr); }
  .contact-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-bottom { flex-direction:column; gap:15px; text-align:center; }
  .section-header h2 { font-size:2rem; }
  .about-stats { grid-template-columns:repeat(3,1fr); gap:10px; }
  .stat-item { padding:15px 10px; }
  .custom-cursor { display:none; }
}
@media(max-width:480px) {
  .gallery-grid { grid-template-columns:1fr; }
  .section { padding:60px 20px; }
  .hero-logo { width:140px; height:140px; }
}
