/* ─── Variables ─────────────────────────────────────────── */
:root {
  --gold: #F5C842;
  --gold-dark: #D4A91E;
  --black: #0D0D0D;
  --dark: #1A1A2E;
  --dark2: #16213E;
  --dark3: #0F3460;
  --white: #FFFFFF;
  --gray: #8892A4;
  --light-gray: #F4F6F9;
  --card-bg: #FFFFFF;
  --text: #1A1A2E;
  --text-light: #6B7280;
  --border: #E5E7EB;
  --whatsapp: #25D366;
  --whatsapp-dark: #1eba5a;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
  --transition: 0.25s ease;
  --navbar-h: 72px;
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Container ─────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,200,66,0.15);
  transition: var(--transition);
  height: var(--navbar-h);
}
.navbar.scrolled { background: rgba(13,13,13,0.98); box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.nav-container { display: flex; align-items: center; justify-content: space-between; height: var(--navbar-h); }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo { width: 44px; height: 44px; object-fit: contain; border-radius: 50%; }
.nav-title { font-family: 'Bebas Neue', cursive; font-size: 1.3rem; letter-spacing: 0.05em; color: var(--gold); }
.nav-menu { display: flex; align-items: center; gap: 8px; }
.nav-link { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500; padding: 8px 14px; border-radius: 8px; transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--gold); background: rgba(245,200,66,0.1); }
.nav-cta { background: var(--gold); color: var(--black); font-weight: 700; font-size: 0.85rem; padding: 9px 20px; border-radius: 8px; transition: var(--transition); }
.nav-cta:hover { background: var(--gold-dark); transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  padding-top: var(--navbar-h);
  background: linear-gradient(135deg, var(--black) 0%, var(--dark) 50%, #0F1729 100%);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    rgba(245,200,66,0.04) 0px, rgba(245,200,66,0.04) 2px,
    transparent 2px, transparent 40px
  );
}
.hero-content { position: relative; z-index: 1; padding: 80px 0; }
.hero-badge { display: inline-block; background: rgba(245,200,66,0.12); border: 1px solid rgba(245,200,66,0.3); color: var(--gold); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; margin-bottom: 28px; }
.hero-title { font-family: 'Bebas Neue', cursive; font-size: clamp(3rem, 8vw, 7rem); line-height: 0.9; color: var(--white); letter-spacing: 0.02em; margin-bottom: 24px; }
.hero-title span { color: var(--gold); }
.hero-subtitle { font-size: clamp(1rem, 2.5vw, 1.25rem); color: rgba(255,255,255,0.65); max-width: 600px; margin-bottom: 40px; line-height: 1.7; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats { display: flex; gap: 48px; }
.stat-item { display: flex; flex-direction: column; }
.stat-num { font-family: 'Bebas Neue', cursive; font-size: 2.5rem; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); letter-spacing: 0.05em; text-transform: uppercase; margin-top: 4px; }
.hero-scroll-indicator { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.3); font-size: 1.5rem; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* ─── Buttons ────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 0.95rem; transition: var(--transition); cursor: pointer; }
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,200,66,0.3); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-whatsapp { background: var(--whatsapp); color: var(--white); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.3); }
.btn-light { background: rgba(255,255,255,0.15); color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
.btn-light:hover { background: rgba(255,255,255,0.25); }

/* ─── Sections ───────────────────────────────────────────── */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); background: rgba(245,200,66,0.1); padding: 6px 14px; border-radius: 100px; margin-bottom: 12px; }
.section-title { font-family: 'Bebas Neue', cursive; font-size: clamp(2rem, 5vw, 3.5rem); color: var(--dark); letter-spacing: 0.02em; line-height: 1.1; }
.section-cta { text-align: center; margin-top: 48px; }

/* ─── About ──────────────────────────────────────────────── */
.section-about { background: var(--light-gray); }
.about-grid { display: grid; grid-template-columns: 1fr 400px; gap: 80px; align-items: center; }
.about-text .section-eyebrow { display: inline-block; margin-bottom: 16px; }
.about-text .section-title { text-align: left; margin-bottom: 20px; }
.about-text p { color: var(--text-light); font-size: 1.05rem; margin-bottom: 32px; line-height: 1.8; }
.about-logo-wrap { display: flex; justify-content: center; }
.about-logo-img { width: 280px; height: 280px; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(245,200,66,0.2)); }

/* ─── Services ───────────────────────────────────────────── */
.section-services { background: var(--dark); }
.section-services .section-eyebrow { background: rgba(245,200,66,0.15); }
.section-services .section-title { color: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.service-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 28px 24px; transition: var(--transition); }
.service-card:hover { border-color: var(--gold); transform: translateY(-4px); background: rgba(245,200,66,0.05); }
.service-icon { font-size: 2rem; display: block; margin-bottom: 16px; }
.service-card h3 { font-family: 'Bebas Neue', cursive; font-size: 1.3rem; letter-spacing: 0.05em; color: var(--white); margin-bottom: 10px; }
.service-card p { font-size: 0.9rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.services-grid-full { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.service-card-lg { background: var(--card-bg); border: 1px solid var(--border); }
.service-card-lg h3 { color: var(--dark); }
.service-card-lg p { color: var(--text-light); }
.service-icon-lg { font-size: 2.5rem; }

/* ─── Gallery Preview ────────────────────────────────────── */
.gallery-grid-preview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 10px; aspect-ratio: 4/3; display: block; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.7)); color: white; font-size: 0.8rem; padding: 20px 12px 10px; transform: translateY(100%); transition: var(--transition); }
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* ─── Gallery Page ───────────────────────────────────────── */
.gallery-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; justify-content: center; }
.filter-btn { padding: 8px 20px; border-radius: 100px; border: 2px solid var(--border); background: transparent; font-size: 0.9rem; font-weight: 500; color: var(--text-light); transition: var(--transition); }
.filter-btn:hover, .filter-btn.active { border-color: var(--gold); color: var(--dark); background: rgba(245,200,66,0.1); }
.gallery-masonry { column-count: 3; column-gap: 16px; }
.gallery-masonry-item { break-inside: avoid; margin-bottom: 16px; }
.gallery-masonry-item a { display: block; border-radius: 10px; overflow: hidden; position: relative; }
.gallery-masonry-item img { width: 100%; display: block; transition: transform 0.4s; }
.gallery-masonry-item:hover img { transform: scale(1.03); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; opacity: 0; transition: var(--transition); }
.gallery-masonry-item:hover .gallery-overlay { opacity: 1; }
.gallery-zoom { font-size: 2rem; }
.gallery-label { color: white; font-size: 0.9rem; text-align: center; padding: 0 16px; }

/* ─── Lightbox ───────────────────────────────────────────── */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-img-wrap { max-width: 90vw; max-height: 90vh; text-align: center; }
.lightbox-img-wrap img { max-width: 100%; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.lightbox-title { color: rgba(255,255,255,0.7); margin-top: 12px; font-size: 0.9rem; }
.lightbox-close, .lightbox-prev, .lightbox-next { position: absolute; background: rgba(255,255,255,0.1); color: white; border: none; border-radius: 50%; width: 48px; height: 48px; font-size: 1.3rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: var(--gold); color: var(--black); }

/* ─── Blog ───────────────────────────────────────────────── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.blog-grid-full { grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); }
.blog-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { display: block; aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; }
.blog-date { font-size: 0.8rem; color: var(--text-light); display: block; margin-bottom: 8px; }
.blog-card-body h2, .blog-card-body h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.4; }
.blog-card-body h2 a:hover, .blog-card-body h3 a:hover { color: var(--gold-dark); }
.blog-card-body p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 16px; }
.read-more { font-size: 0.85rem; font-weight: 600; color: var(--gold-dark); }
.read-more:hover { text-decoration: underline; }

/* Blog Post */
.post-container { max-width: 800px; }
.post-featured-img { width: 100%; border-radius: var(--radius); margin-bottom: 40px; }
.post-body { font-size: 1.05rem; line-height: 1.8; color: var(--text); }
.post-body h1,.post-body h2,.post-body h3 { font-family: 'Bebas Neue',cursive; color: var(--dark); margin: 32px 0 16px; letter-spacing: 0.03em; }
.post-body h2 { font-size: 1.8rem; }
.post-body h3 { font-size: 1.4rem; }
.post-body p { margin-bottom: 20px; }
.post-body img { border-radius: 10px; margin: 24px 0; }
.post-body ul,.post-body ol { margin: 0 0 20px 24px; }
.post-body li { margin-bottom: 8px; }
.breadcrumb { display: inline-block; color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; }
.breadcrumb:hover { text-decoration: underline; }

/* Pagination */
.pagination { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 48px; }
.page-btn { padding: 10px 24px; border: 2px solid var(--border); border-radius: 8px; font-weight: 600; color: var(--dark); transition: var(--transition); }
.page-btn:hover { border-color: var(--gold); color: var(--gold-dark); }
.page-info { color: var(--text-light); }

/* ─── FAQ ────────────────────────────────────────────────── */
.faq-container { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 48px; }
.faq-item { background: var(--card-bg); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; font-size: 1rem; font-weight: 600; color: var(--dark); text-align: left; gap: 16px; transition: var(--transition); }
.faq-question:hover { color: var(--gold-dark); }
.faq-icon { font-size: 1.3rem; flex-shrink: 0; transition: transform 0.3s; color: var(--gold-dark); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 24px 20px; color: var(--text-light); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-contact-box { background: var(--light-gray); border-radius: var(--radius); padding: 40px; text-align: center; }
.faq-contact-box h3 { font-family: 'Bebas Neue',cursive; font-size: 1.8rem; color: var(--dark); margin-bottom: 10px; }
.faq-contact-box p { color: var(--text-light); margin-bottom: 24px; }

/* ─── Page Hero ──────────────────────────────────────────── */
.page-hero { background: linear-gradient(135deg, var(--black) 0%, var(--dark) 100%); padding: calc(var(--navbar-h) + 64px) 0 64px; text-align: center; }
.page-hero h1 { font-family: 'Bebas Neue',cursive; font-size: clamp(2.5rem,6vw,5rem); color: var(--white); letter-spacing: 0.04em; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.page-hero-sm { padding-bottom: 40px; }
.page-hero time { color: var(--gold); font-size: 0.9rem; display: block; margin-top: 8px; }

/* ─── CTA Banner ─────────────────────────────────────────── */
.section-cta-banner { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); padding: 80px 0; }
.cta-banner-inner { text-align: center; }
.cta-banner-inner h2 { font-family: 'Bebas Neue',cursive; font-size: clamp(2rem,5vw,3.5rem); color: var(--black); margin-bottom: 16px; }
.cta-banner-inner p { color: rgba(0,0,0,0.65); font-size: 1.1rem; margin-bottom: 36px; }
.cta-banner-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── Footer ─────────────────────────────────────────────── */
.footer { background: var(--black); padding: 72px 0 32px; color: rgba(255,255,255,0.7); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { width: 60px; height: 60px; object-fit: contain; border-radius: 50%; margin-bottom: 16px; }
.footer-tagline { font-size: 0.9rem; line-height: 1.6; margin-bottom: 20px; }
.footer-social { display: flex; flex-direction: column; gap: 8px; }
.social-link { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.social-link:hover { color: var(--gold); }
.footer-links h4, .footer-contact h4 { font-family: 'Bebas Neue',cursive; font-size: 1.1rem; letter-spacing: 0.05em; color: var(--white); margin-bottom: 20px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-contact a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-contact p { font-size: 0.9rem; margin-bottom: 10px; display: flex; gap: 8px; align-items: flex-start; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; color: rgba(255,255,255,0.3); }
.footer-admin-link { color: rgba(255,255,255,0.2); font-size: 0.8rem; }
.footer-admin-link:hover { color: var(--gold); }

/* ─── Floating Buttons ───────────────────────────────────── */
.float-btn { position: fixed; right: 24px; width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 999; box-shadow: 0 4px 20px rgba(0,0,0,0.25); transition: transform 0.25s, box-shadow 0.25s; }
.float-btn:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(0,0,0,0.3); }
.float-whatsapp { bottom: 100px; background: var(--whatsapp); color: white; }
.float-call { bottom: 32px; background: var(--gold); color: var(--black); }

/* ─── Empty State ────────────────────────────────────────── */
.empty-state { text-align: center; padding: 80px 20px; color: var(--text-light); }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-logo-wrap { order: -1; }
  .about-text .section-title { text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { column-count: 2; }
}
@media (max-width: 768px) {
  :root { --navbar-h: 64px; }
  .nav-menu { display: none; position: fixed; top: var(--navbar-h); left: 0; right: 0; background: rgba(13,13,13,0.98); flex-direction: column; padding: 24px; gap: 4px; border-top: 1px solid rgba(255,255,255,0.05); }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 32px; }
  .gallery-grid-preview { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-masonry { column-count: 2; }
  .section { padding: 64px 0; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-stats { gap: 24px; }
  .gallery-grid-preview { grid-template-columns: 1fr; }
  .gallery-masonry { column-count: 1; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
}
