/* ===================== Base / Variables ===================== */
:root {
    --dark: #080808;
    --dark2: #0f0f10;
    --panel: #131314;
    --gold: #c9a24b;
    --gold-light: #e5c377;
    --text: #f0f0f0;
    --muted: #a3a3a3;
    --border: #232326;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
p { text-align: justify; text-align-last: left; }
.gold { color: var(--gold); }
section { padding: 90px 0; }
@media (max-width: 768px) { section { padding: 60px 0; } }

/* ===================== Buttons ===================== */
.btn { display: inline-block; padding: 14px 28px; border-radius: 10px; font-weight: 700; font-size: 15px; cursor: pointer; border: none; transition: .25s; }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #111; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,162,75,.25); }
.btn-outline { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ===================== Header ===================== */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(8,8,8,.85); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 18px 24px; }
.logo { font-weight: 800; letter-spacing: .5px; font-size: 18px; display: flex; align-items: center; gap: 8px; }
.logo span { color: var(--gold); }
.logo-img { height: 30px; width: auto; display: block; }
.main-nav { display: flex; gap: 30px; }
.main-nav a { font-size: 14px; color: var(--muted); transition: .2s; }
.main-nav a:hover, .main-nav a.active { color: var(--text); }
.nav-cta { padding: 10px 20px; font-size: 13px; }
.menu-toggle { display: none; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; }
@media (max-width: 860px) {
    .main-nav { position: absolute; top: 100%; left: 0; right: 0; background: var(--dark2); flex-direction: column; padding: 10px 24px 20px; gap: 4px; border-bottom: 1px solid var(--border); display: none; }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 10px 0; border-bottom: 1px solid var(--border); }
    .nav-cta { display: none; }
    .menu-toggle { display: block; }
}

/* ===================== Hero ===================== */
.hero { padding: 90px 0 60px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(201,162,75,.15), transparent 70%); }
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: center; position: relative; z-index: 1; }
.eyebrow { display: inline-block; padding: 6px 14px; border: 1px solid var(--border); border-radius: 20px; font-size: 12px; color: var(--gold); margin-bottom: 18px; }
.hero h1 { font-size: 46px; margin-bottom: 20px; }
.hero p.lead { color: var(--muted); font-size: 17px; margin-bottom: 28px; max-width: 480px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-image-wrap { border-radius: 18px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 30px 80px rgba(0,0,0,.5); }
.hero-image-wrap img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; } .hero h1 { font-size: 32px; } }

.trust-bar { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 50px; padding-top: 30px; border-top: 1px solid var(--border); }
.trust-item { font-size: 14px; color: var(--muted); }
.trust-item b { color: var(--text); font-size: 18px; display: block; }

/* ===================== Section headings ===================== */
.section-head { text-align: center; max-width: 620px; margin: 0 auto 50px; }
.section-eyebrow { color: var(--gold); font-size: 13px; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; display: block; }
.section-head h2 { font-size: 34px; margin-bottom: 12px; }
.section-head p { color: var(--muted); }

/* ===================== Counters ===================== */
.counters { background: var(--panel); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.counters-grid { display: grid; grid-template-columns: repeat(4,1fr); text-align: center; gap: 20px; }
.counters-grid .num { font-size: 38px; font-weight: 800; color: var(--gold); }
.counters-grid .lbl { color: var(--muted); font-size: 13px; margin-top: 6px; }
@media (max-width: 700px) { .counters-grid { grid-template-columns: repeat(2,1fr); gap: 30px; } }

/* ===================== Services ===================== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.service-card { background: var(--panel); border: 1px solid var(--border); border-radius: 16px; padding: 30px 24px; transition: .25s; }
.service-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.service-icon { font-size: 30px; margin-bottom: 16px; }
.service-card h3 { font-size: 18px; margin-bottom: 10px; }
.service-card p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size: 11px; background: rgba(201,162,75,.1); color: var(--gold); padding: 4px 10px; border-radius: 20px; }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* ===================== About ===================== */
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: center; }
.about-grid img { border-radius: 18px; border: 1px solid var(--border); width: 100%; object-fit: cover; aspect-ratio: 4/3; }
.about-grid h2 { font-size: 32px; margin-bottom: 18px; }
.about-grid p { color: var(--muted); }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }

/* ===================== Projects ===================== */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.project-card { background: var(--panel); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: .25s; }
.project-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.project-card .thumb { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: #1a1a1c; }
.project-card .body { padding: 20px; }
.project-cat { color: var(--gold); font-size: 12px; text-transform: uppercase; letter-spacing: .5px; }
.project-card h3 { margin: 8px 0 4px; font-size: 18px; }
.project-card .sub { color: var(--muted); font-size: 13px; margin-bottom: 14px; }
.project-card a.view { font-size: 13px; color: var(--gold); }
@media (max-width: 900px) { .projects-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .projects-grid { grid-template-columns: 1fr; } }

/* ===================== Process ===================== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-step .num { font-size: 32px; font-weight: 800; color: var(--gold); opacity: .5; margin-bottom: 10px; }
.process-step h3 { font-size: 18px; margin-bottom: 8px; }
.process-step p { color: var(--muted); font-size: 14px; }
@media (max-width: 800px) { .process-grid { grid-template-columns: repeat(2,1fr); } }

/* ===================== Testimonials ===================== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { background: var(--panel); border: 1px solid var(--border); border-radius: 16px; padding: 26px; }
.stars { color: var(--gold); margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card .msg { color: var(--text); font-size: 14.5px; margin-bottom: 20px; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer .avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gold); color: #111; display: flex; align-items: center; justify-content: center; font-weight: 700; overflow: hidden; }
.reviewer .avatar img { width: 100%; height: 100%; object-fit: cover; }
.reviewer .name { font-weight: 700; font-size: 14px; }
.reviewer .role { color: var(--muted); font-size: 12px; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ===================== YouTube embed section ===================== */
.video-section { text-align: center; }
.video-wrap { max-width: 800px; margin: 30px auto 0; border-radius: 18px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 30px 80px rgba(0,0,0,.5); position: relative; padding-bottom: 45%; height: 0; }
.video-wrap iframe { position: absolute; top:0; left:0; width: 100%; height: 100%; }

/* ===================== CTA ===================== */
.cta-section { background: linear-gradient(135deg, #14120a, #0a0a0a); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; }
.cta-section h2 { font-size: 32px; margin-bottom: 14px; }
.cta-section p { color: var(--muted); max-width: 480px; margin: 0 auto 30px; }

/* ===================== Footer ===================== */
.site-footer { background: var(--dark2); border-top: 1px solid var(--border); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 30px; padding-bottom: 40px; }
.footer-brand p { color: var(--muted); font-size: 14px; margin: 14px 0 18px; max-width: 280px; }
.social-icons { display: flex; gap: 10px; }
.social-icons a { width: 34px; height: 34px; border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--muted); }
.social-icons a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-size: 14px; margin-bottom: 16px; color: var(--text); }
.footer-col a { display: block; color: var(--muted); font-size: 14px; margin-bottom: 10px; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); text-align: center; padding: 20px 0; color: var(--muted); font-size: 13px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }

/* ===================== WhatsApp float ===================== */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; box-shadow: 0 8px 24px rgba(0,0,0,.4); z-index: 200; }

/* ===================== Page header (inner pages) ===================== */
.page-header { padding: 70px 0 40px; text-align: center; }
.page-header h1 { font-size: 38px; margin-bottom: 12px; }
.page-header p { color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ===================== Contact page ===================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info-card { background: var(--panel); border: 1px solid var(--border); border-radius: 16px; padding: 30px; margin-bottom: 16px; }
.contact-info-card h4 { color: var(--gold); font-size: 13px; text-transform: uppercase; margin-bottom: 8px; letter-spacing: .5px; }
.contact-form { background: var(--panel); border: 1px solid var(--border); border-radius: 16px; padding: 34px; }
.contact-form label { display: block; font-size: 13px; color: var(--muted); margin: 14px 0 6px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--border); background: #0d0d0d; color: var(--text); font-family: inherit; }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form button { margin-top: 20px; width: 100%; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* ===================== Blog ===================== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card { background: var(--panel); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: .25s; }
.blog-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.blog-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.blog-card .body { padding: 20px; }
.blog-card .meta { color: var(--muted); font-size: 12px; margin-bottom: 8px; }
.blog-card h3 { font-size: 18px; margin-bottom: 10px; }
.blog-card p { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.blog-card a.read { color: var(--gold); font-size: 13px; font-weight: 700; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-single-header img { width: 100%; border-radius: 18px; aspect-ratio: 21/9; object-fit: cover; margin-bottom: 30px; border: 1px solid var(--border); }
.blog-single-content { max-width: 760px; margin: 0 auto; color: #d8d8d8; font-size: 16px; }
.blog-single-content h2, .blog-single-content h3 { color: var(--text); margin: 26px 0 12px; }
.blog-single-content p { margin-bottom: 18px; }
.blog-single-content img { border-radius: 12px; margin: 20px 0; }

.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); }

/* ===================== Alert / form status ===================== */
.alert-box { padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: 14px; }
.alert-box.success { background: rgba(76,175,125,.12); border: 1px solid #4caf7d; color: #7fdba6; }
.alert-box.error { background: rgba(224,82,82,.12); border: 1px solid #e05252; color: #f19b9b; }
