:root {
    --gold: #f5b301;
    --gold-soft: #ffcb3d;
    --dark: #0d0d0d;
    --dark-2: #141414;
    --dark-3: #1c1c1c;
    --gray: #9a9a9a;
    --light: #f4f4f4;
    --border: rgba(255, 255, 255, .08);
    --shadow: 0 20px 50px rgba(0, 0, 0, .45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
section { padding: 100px 0; position: relative; }

.container { width: min(1200px, 92%); margin: 0 auto; }
.headline { font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: 1px; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 15px 34px; border-radius: 50px; font-weight: 600;
    font-size: 15px; cursor: pointer; border: 2px solid transparent;
    transition: all .3s ease; text-transform: uppercase; letter-spacing: .5px;
}
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(245, 179, 1, .35); }
.btn-outline { background: transparent; color: var(--light); border-color: rgba(255,255,255,.25); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ===== Section headers ===== */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-head .label {
    color: var(--gold); font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    font-size: 14px; display: inline-block; margin-bottom: 14px; position: relative; padding: 0 40px;
}
.section-head .label::before, .section-head .label::after {
    content: ''; position: absolute; top: 50%; width: 28px; height: 2px; background: var(--gold);
}
.section-head .label::before { left: 0; }
.section-head .label::after { right: 0; }
.section-head h2 { font-size: clamp(30px, 5vw, 46px); line-height: 1.1; }
.section-head p { color: var(--gray); margin-top: 16px; }
.section-head h2 span, .text-gold { color: var(--gold); }

/* ===== Header / Nav ===== */
.header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 22px 0; transition: all .35s ease;
}
.header.scrolled { background: rgba(13,13,13,.92); backdrop-filter: blur(12px); padding: 14px 0; box-shadow: 0 5px 30px rgba(0,0,0,.4); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: 'Oswald', sans-serif; font-size: 26px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
.logo i { color: var(--gold); }
.logo span { color: var(--gold); }
.nav-links { display: flex; gap: 36px; }
.nav-links a { font-weight: 500; font-size: 15px; position: relative; transition: color .25s; }
.nav-links a::after { content: ''; position: absolute; bottom: -6px; 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 { display: flex; align-items: center; gap: 18px; }
.menu-toggle { display: none; font-size: 26px; cursor: pointer; color: var(--light); background: none; border: none; }

/* ===== Hero ===== */
.hero { height: 100vh; min-height: 640px; display: flex; align-items: center; overflow: hidden; padding: 0; }
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg video, .hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(13,13,13,.92) 0%, rgba(13,13,13,.7) 50%, rgba(13,13,13,.45) 100%); }
.hero-content { max-width: 720px; }
.hero .tagline { color: var(--gold); font-weight: 600; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 20px; font-size: 15px; opacity: 0; animation: fadeUp .8s .2s forwards; }
.hero h1 { font-family: 'Oswald', sans-serif; font-size: clamp(48px, 8vw, 92px); line-height: .98; text-transform: uppercase; margin-bottom: 22px; opacity: 0; animation: fadeUp .8s .4s forwards; }
.hero h1 span { color: var(--gold); }
.hero p { font-size: 18px; color: #cfcfcf; max-width: 540px; margin-bottom: 36px; opacity: 0; animation: fadeUp .8s .6s forwards; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; opacity: 0; animation: fadeUp .8s .8s forwards; }
.scroll-down { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: var(--gray); font-size: 22px; animation: bounce 2s infinite; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,12px); } }

/* ===== Stats ===== */
.stats { background: var(--gold); color: var(--dark); padding: 50px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { text-align: center; }
.stat i { font-size: 32px; margin-bottom: 10px; }
.stat .num { font-family: 'Oswald', sans-serif; font-size: 46px; font-weight: 700; line-height: 1; }
.stat .lbl { font-weight: 600; text-transform: uppercase; letter-spacing: 1px; font-size: 14px; margin-top: 6px; }

/* ===== About ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-img { position: relative; }
.about-img img { border-radius: 14px; box-shadow: var(--shadow); height: 520px; object-fit: cover; width: 100%; }
.about-img .badge { position: absolute; bottom: -28px; right: -10px; background: var(--gold); color: var(--dark); padding: 24px 30px; border-radius: 14px; text-align: center; box-shadow: var(--shadow); }
.about-img .badge .big { font-family: 'Oswald', sans-serif; font-size: 42px; font-weight: 700; line-height: 1; }
.about-text .label { color: var(--gold); font-weight: 600; letter-spacing: 3px; text-transform: uppercase; font-size: 14px; }
.about-text h2 { font-size: clamp(30px, 4vw, 44px); margin: 14px 0 10px; }
.about-text .sub { color: var(--gold-soft); font-size: 18px; margin-bottom: 18px; font-style: italic; }
.about-text p { color: var(--gray); margin-bottom: 16px; white-space: pre-line; }
.about-feats { display: flex; gap: 30px; margin: 26px 0; flex-wrap: wrap; }
.about-feats div { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.about-feats i { color: var(--gold); font-size: 22px; }

/* ===== Services ===== */
.services { background: var(--dark-2); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
    background: var(--dark-3); border: 1px solid var(--border); border-radius: 14px; padding: 38px 30px;
    transition: all .35s ease; position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s; }
.service-card:hover { transform: translateY(-8px); border-color: rgba(245,179,1,.4); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 70px; height: 70px; border-radius: 14px; background: rgba(245,179,1,.12); display: flex; align-items: center; justify-content: center; font-size: 30px; color: var(--gold); margin-bottom: 22px; transition: all .35s; }
.service-card:hover .service-icon { background: var(--gold); color: var(--dark); }
.service-card h3 { font-size: 22px; margin-bottom: 12px; font-family: 'Oswald', sans-serif; letter-spacing: .5px; }
.service-card p { color: var(--gray); font-size: 15px; margin-bottom: 20px; }
.service-card .price { font-family: 'Oswald', sans-serif; font-size: 26px; color: var(--gold); font-weight: 600; }

/* ===== Team ===== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.team-card { position: relative; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.team-card img { width: 100%; height: 420px; object-fit: cover; transition: transform .5s; }
.team-card:hover img { transform: scale(1.06); }
.team-info { position: absolute; bottom: 0; left: 0; width: 100%; padding: 60px 26px 26px; background: linear-gradient(transparent, rgba(13,13,13,.96)); }
.team-info h3 { font-family: 'Oswald', sans-serif; font-size: 24px; letter-spacing: .5px; }
.team-info span { color: var(--gold); font-size: 14px; font-weight: 500; }
.team-social { display: flex; gap: 12px; margin-top: 14px; opacity: 0; transform: translateY(15px); transition: all .35s; }
.team-card:hover .team-social { opacity: 1; transform: translateY(0); }
.team-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: #fff; transition: all .3s; }
.team-social a:hover { background: var(--gold); color: var(--dark); }

/* ===== Gallery ===== */
.gallery { background: var(--dark-2); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { position: relative; overflow: hidden; border-radius: 12px; cursor: pointer; aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item::after { content: '\f00e'; font-family: 'Font Awesome 6 Free'; font-weight: 900; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 28px; background: rgba(13,13,13,.6); opacity: 0; transition: opacity .35s; }
.gallery-item:hover img { transform: scale(1.12); }
.gallery-item:hover::after { opacity: 1; }

/* ===== Testimonials ===== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi-card { background: var(--dark-3); border: 1px solid var(--border); border-radius: 14px; padding: 36px 30px; position: relative; }
.testi-card .quote { font-size: 60px; color: rgba(245,179,1,.25); font-family: Georgia, serif; line-height: 1; position: absolute; top: 18px; right: 26px; }
.testi-stars { color: var(--gold); margin-bottom: 16px; }
.testi-card p { color: #d2d2d2; font-style: italic; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author .avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--gold); color: var(--dark); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 20px; font-family: 'Oswald', sans-serif; overflow: hidden; }
.testi-author .avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-author h4 { font-size: 17px; }
.testi-author span { color: var(--gray); font-size: 13px; }

/* ===== CTA ===== */
.cta { background: linear-gradient(rgba(13,13,13,.9), rgba(13,13,13,.9)); background-size: cover; background-position: center; text-align: center; }
.cta h2 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 18px; }
.cta p { color: var(--gray); max-width: 560px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h3 { font-size: 28px; margin-bottom: 24px; font-family: 'Oswald', sans-serif; }
.contact-item { display: flex; gap: 18px; margin-bottom: 24px; align-items: flex-start; }
.contact-item .ic { width: 54px; height: 54px; flex-shrink: 0; border-radius: 12px; background: rgba(245,179,1,.12); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 22px; }
.contact-item h4 { font-size: 17px; margin-bottom: 4px; }
.contact-item p { color: var(--gray); }
.contact-map { border-radius: 14px; overflow: hidden; min-height: 380px; height: 100%; border: 1px solid var(--border); }
.contact-map iframe { width: 100%; height: 100%; min-height: 380px; filter: grayscale(1) invert(.92) contrast(.85); }

/* ===== Footer ===== */
.footer { background: #080808; padding: 70px 0 0; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; padding-bottom: 50px; }
.footer .logo { margin-bottom: 18px; }
.footer-col p { color: var(--gray); font-size: 15px; }
.footer-col h4 { font-size: 18px; margin-bottom: 22px; font-family: 'Oswald', sans-serif; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background: var(--gold); }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: var(--gray); transition: color .25s; }
.footer-col ul a:hover { color: var(--gold); padding-left: 6px; }
.footer-social { display: flex; gap: 14px; margin-top: 22px; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; background: var(--dark-3); display: flex; align-items: center; justify-content: center; transition: all .3s; }
.footer-social a:hover { background: var(--gold); color: var(--dark); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid var(--border); padding: 24px 0; text-align: center; color: var(--gray); font-size: 14px; }
.footer-bottom a { color: var(--gold); }

/* ===== WhatsApp float ===== */
.wa-float { position: fixed; bottom: 26px; right: 26px; width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 30px; z-index: 900; box-shadow: 0 8px 24px rgba(37,211,102,.4); transition: transform .3s; animation: pulse 2.5s infinite; }
.wa-float:hover { transform: scale(1.1); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5);} 70% { box-shadow: 0 0 0 18px rgba(37,211,102,0);} 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0);} }

/* ===== Lightbox ===== */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.94); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90%; max-height: 88vh; border-radius: 10px; }
.lightbox .close { position: absolute; top: 24px; right: 34px; font-size: 40px; color: #fff; cursor: pointer; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: all .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .services-grid, .team-grid, .testi-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .about-img img { height: 420px; }
}
@media (max-width: 768px) {
    section { padding: 70px 0; }
    .nav-links { position: fixed; top: 0; right: -100%; width: 75%; max-width: 320px; height: 100vh; background: var(--dark-2); flex-direction: column; justify-content: center; align-items: center; gap: 30px; transition: right .4s ease; box-shadow: -10px 0 40px rgba(0,0,0,.5); z-index: 1001; }
    .nav-links.open { right: 0; }
    .menu-toggle { display: block; z-index: 1002; }
    .nav-cta .btn { display: none; }
    .services-grid, .team-grid, .testi-grid, .footer-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-img .badge { right: 10px; }
}
