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

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

:root {
  --yellow: #f5c800;
  --yellow-dark: #d4ac00;
  --yellow-pale: #fff9e0;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --border: #2a2a2a;
  --text: #f0f0f0;
  --muted: #888888;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: var(--dark); color: var(--text); overflow-x: hidden; }

/* TEXTURE */
.bg-texture {
  position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0.03;
  background-image: repeating-linear-gradient(
    45deg,
    #f5c800 0px, #f5c800 1px,
    transparent 1px, transparent 12px
  );
}

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; display: flex; align-items: center; justify-content: space-between; padding: 14px 48px; background: rgba(17,17,17,0.97); backdrop-filter: blur(20px); border-bottom: 2px solid var(--yellow); }
.nav-logo-placeholder { font-family: 'Oswald', sans-serif; font-size: 22px; font-weight: 700; letter-spacing: 0.12em; color: var(--yellow); }
nav ul { list-style: none; display: flex; gap: 36px; align-items: center; }
nav ul li a { text-decoration: none; font-size: 13px; font-weight: 600; color: var(--muted); letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
nav ul li a:hover { color: var(--yellow); }
.nav-cta { background: var(--yellow) !important; color: var(--dark) !important; padding: 10px 24px; border-radius: 4px; font-weight: 700 !important; }
.nav-cta:hover { background: var(--yellow-dark) !important; color: var(--dark) !important; }
.burger { display: none; background: none; border: 1px solid var(--yellow); border-radius: 4px; padding: 6px 10px; font-size: 18px; cursor: pointer; color: var(--yellow); }
.mobile-menu { display: none; flex-direction: column; position: fixed; top: 67px; left: 0; right: 0; z-index: 199; background: var(--dark); border-bottom: 2px solid var(--yellow); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 16px 28px; text-decoration: none; font-weight: 600; color: var(--muted); border-bottom: 1px solid var(--border); font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s, background 0.2s; }
.mobile-menu a:hover { color: var(--yellow); background: var(--dark2); }

/* HERO */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 100px 48px 80px; gap: 80px; max-width: 1300px; margin: 0 auto; position: relative; z-index: 1; }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(245,200,0,0.06), transparent); pointer-events: none; }
.hero-inner { flex: 1.2; }
.hero-tag { font-size: 12px; font-weight: 600; color: var(--yellow); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 24px; border-left: 3px solid var(--yellow); padding-left: 12px; }
.hero h1 { font-family: 'Oswald', sans-serif; font-size: clamp(60px, 8vw, 110px); line-height: 0.95; font-weight: 700; color: var(--white); margin-bottom: 28px; letter-spacing: 0.02em; text-transform: uppercase; }
.hero h1 .yellow { color: var(--yellow); display: block; }
.hero-sub { font-size: 17px; color: var(--muted); line-height: 1.75; max-width: 500px; margin-bottom: 40px; font-weight: 300; }
.hero-sub em { color: var(--yellow); font-style: normal; font-weight: 600; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }

/* BUTTONS */
.btn-yellow { background: var(--yellow); color: var(--dark); text-decoration: none; padding: 14px 32px; border-radius: 4px; font-weight: 700; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; border: none; cursor: pointer; transition: background 0.2s, transform 0.2s; display: inline-block; box-shadow: 0 4px 24px rgba(245,200,0,0.3); }
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--white); text-decoration: none; padding: 14px 32px; border-radius: 4px; font-weight: 700; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; border: 1px solid var(--border); cursor: pointer; transition: border-color 0.2s, transform 0.2s; display: inline-block; }
.btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-2px); }
.btn-dark { background: var(--dark); color: var(--yellow); text-decoration: none; padding: 14px 32px; border-radius: 4px; font-weight: 700; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; border: 2px solid var(--dark); cursor: pointer; transition: all 0.2s; display: inline-block; width: 100%; text-align: center; }
.btn-dark:hover { background: var(--dark2); transform: translateY(-2px); }

/* HERO BADGES */
.hero-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.badge { font-size: 12px; font-weight: 600; color: var(--yellow); background: rgba(245,200,0,0.08); border: 1px solid rgba(245,200,0,0.2); padding: 7px 14px; border-radius: 4px; letter-spacing: 0.04em; }

/* HERO VISUAL */
.hero-visual { flex: 0.8; display: flex; justify-content: center; }
.stat-stack { display: flex; flex-direction: column; gap: 16px; width: 100%; max-width: 280px; }
.stat-card { background: var(--dark2); border: 1px solid var(--border); border-radius: 8px; padding: 24px 28px; position: relative; overflow: hidden; transition: border-color 0.2s, transform 0.2s; animation: floatCard 6s ease-in-out infinite; }
.stat-card:nth-child(2) { animation-delay: 0.5s; }
.stat-card:nth-child(3) { animation-delay: 1s; }
.stat-card:hover { border-color: var(--yellow); transform: translateX(5px); }
.stat-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--yellow); }
.stat-card.big { padding: 32px 28px; }
@keyframes floatCard { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
.sc-num { font-family: 'Oswald', sans-serif; font-size: 42px; font-weight: 700; color: var(--yellow); line-height: 1; }
.stat-card.big .sc-num { font-size: 56px; }
.sc-label { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-top: 4px; }

/* MARQUEE */
.marquee-strip { background: var(--yellow); padding: 14px 0; overflow: hidden; white-space: nowrap; position: relative; z-index: 1; }
.marquee-inner { display: inline-block; animation: marquee 25s linear infinite; }
.marquee-inner span { font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark); margin: 0 20px; }
.marquee-inner span:nth-child(even) { color: rgba(0,0,0,0.35); font-size: 10px; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* SECTIONS */
.section { padding: 100px 48px; position: relative; z-index: 1; }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-label { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--yellow); margin-bottom: 16px; }
.section-label.light { color: rgba(245,200,0,0.6); }
.dark-label { color: var(--dark3); }
h2 { font-family: 'Oswald', sans-serif; font-size: clamp(36px, 4.5vw, 60px); font-weight: 700; color: var(--white); line-height: 1.05; margin-bottom: 16px; letter-spacing: 0.02em; text-transform: uppercase; }
.light-h2 { color: var(--white); }
.dark-h2 { color: var(--dark); }
.yellow { color: var(--yellow); }
.dark-span { color: var(--dark2); }
.section-desc { font-size: 16px; color: var(--muted); line-height: 1.7; max-width: 540px; margin-bottom: 52px; font-weight: 300; }
.light-p { color: rgba(255,255,255,0.6) !important; }
.dark-p { color: rgba(0,0,0,0.65) !important; font-size: 16px; line-height: 1.7; margin-bottom: 32px; font-weight: 400; }

/* ABOUT */
.about-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.img-placeholder { background: var(--dark2); border: 2px dashed var(--border); border-radius: 8px; height: 380px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; position: relative; }
.ip-icon { font-size: 48px; }
.img-placeholder p { font-size: 13px; color: var(--muted); font-weight: 500; }
.about-tag { background: var(--yellow); color: var(--dark); font-family: 'Oswald', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 10px 20px; display: inline-block; margin-top: 16px; }
.about-text p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 18px; font-weight: 300; }
.about-text h2 { margin-top: 16px; margin-bottom: 20px; }
.about-details { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 32px; }
.ad-item { display: flex; gap: 14px; align-items: flex-start; }
.ad-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.ad-label { font-size: 11px; font-weight: 700; color: var(--yellow); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; }
.ad-value { font-size: 14px; color: var(--text); font-weight: 500; }

/* SERVICES */
.section-dark { background: var(--dark2); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.service-card { background: var(--dark2); padding: 32px 24px; transition: background 0.2s; position: relative; overflow: hidden; }
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--yellow); transform: scaleX(0); transition: transform 0.3s; }
.service-card:hover { background: var(--dark3); }
.service-card:hover::after { transform: scaleX(1); }
.sc-icon-wrap { font-size: 32px; margin-bottom: 16px; display: block; }
.service-card h3 { font-family: 'Oswald', sans-serif; font-size: 18px; font-weight: 600; color: var(--white); margin-bottom: 10px; letter-spacing: 0.04em; text-transform: uppercase; }
.service-card p { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* WHY US */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 8px; }
.why-card { background: var(--dark2); border: 1px solid var(--border); border-radius: 8px; padding: 32px 24px; position: relative; transition: border-color 0.2s, transform 0.2s; }
.why-card:hover { border-color: var(--yellow); transform: translateY(-4px); }
.wc-num { font-family: 'Oswald', sans-serif; font-size: 52px; font-weight: 700; color: rgba(245,200,0,0.1); line-height: 1; margin-bottom: 8px; }
.wc-icon { font-size: 28px; margin-bottom: 14px; }
.why-card h3 { font-family: 'Oswald', sans-serif; font-size: 17px; font-weight: 600; color: var(--white); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.04em; }
.why-card p { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 300; }

/* GALLERY */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-placeholder { background: var(--dark3); border: 2px dashed var(--border); border-radius: 8px; height: 200px; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s; cursor: pointer; }
.gallery-placeholder:hover { border-color: var(--yellow); }
.gp-inner { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 28px; }
.gp-inner p { font-size: 12px; color: var(--muted); font-weight: 500; }

/* CONTACT */
.section-yellow { background: var(--yellow); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.cd-item { display: flex; gap: 14px; align-items: flex-start; }
.cd-icon { font-size: 20px; flex-shrink: 0; }
.cd-label { font-size: 11px; font-weight: 700; color: rgba(0,0,0,0.5); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; }
.cd-value { font-size: 15px; font-weight: 700; color: var(--dark); text-decoration: none; display: block; }
.cd-value:hover { text-decoration: underline; }

/* FORM */
.contact-form { background: var(--dark); border-radius: 12px; padding: 36px; display: flex; flex-direction: column; gap: 16px; box-shadow: 0 24px 60px rgba(0,0,0,0.3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 11px; font-weight: 700; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { background: var(--dark2); border: 1px solid var(--border); border-radius: 6px; padding: 13px 16px; font-family: 'Barlow', sans-serif; font-size: 14px; font-weight: 400; color: var(--white); outline: none; transition: border-color 0.2s; resize: vertical; width: 100%; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--muted); }
.contact-form select { color: var(--muted); }
.contact-form select option { background: var(--dark); color: var(--white); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--yellow); }
.form-success { display: none; margin-top: 12px; background: rgba(245,200,0,0.1); border: 1px solid rgba(245,200,0,0.3); color: var(--yellow); border-radius: 8px; padding: 16px; font-size: 14px; font-weight: 600; }
.send-btn { display: inline-block; text-decoration: none; padding: 11px 22px; border-radius: 6px; font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 13px; letter-spacing: 0.04em; transition: transform 0.2s; margin-right: 8px; margin-top: 4px; }
.wa-btn { background: #25D366; color: #fff; }
.email-btn { background: var(--yellow); color: var(--dark); }

/* FOOTER */
footer { background: #080808; border-top: 2px solid var(--yellow); padding: 60px 48px 28px; position: relative; z-index: 1; }
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.5fr 2fr; gap: 80px; margin-bottom: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--border); }
.footer-logo { font-family: 'Oswald', sans-serif; font-size: 24px; font-weight: 700; letter-spacing: 0.12em; color: var(--yellow); margin-bottom: 8px; }
.footer-brand p { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 300; }
.footer-reg { font-size: 11px !important; color: #444 !important; margin-top: 4px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.fl-col { display: flex; flex-direction: column; gap: 10px; }
.fl-title { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--yellow); margin-bottom: 6px; }
.fl-col a, .fl-col span { font-size: 13px; color: var(--muted); text-decoration: none; font-weight: 300; transition: color 0.2s; }
.fl-col a:hover { color: var(--yellow); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: #333; }
.footer-tag { color: var(--muted) !important; }
.footer-tag a { color: var(--yellow); text-decoration: none; font-weight: 600; }

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero { flex-direction: column; padding: 110px 40px 80px; min-height: auto; gap: 48px; }
  .stat-stack { flex-direction: row; max-width: 100%; }
  .stat-card.big { flex: 1; }
  .stat-card { flex: 1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  nav { padding: 12px 20px; }
  nav ul { display: none; }
  .burger { display: block; }
  .section { padding: 70px 20px; }
  .hero { padding: 100px 20px 60px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 48px 20px 24px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .stat-stack { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 48px; }
  .hero-btns { flex-direction: column; }
  .btn-yellow, .btn-ghost { text-align: center; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
}

/* GALLERY IMAGES */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { position: relative; border-radius: 8px; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gi-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.85)); color: var(--yellow); font-family: 'Oswald', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 28px 16px 14px; transform: translateY(100%); transition: transform 0.3s ease; }
.gallery-item:hover .gi-caption { transform: translateY(0); }

/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 999; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lightbox-close { position: absolute; top: 20px; right: 28px; font-size: 36px; color: var(--yellow); cursor: pointer; font-weight: 300; line-height: 1; }

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