@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --black: #070809;
    --dark: #0c0e10;
    --card: #121416;
    --red: #e10600;
    --red-dark: #b10500;
    --white: #f7f7f7;
    --gray: #8b9198;
    --border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: Inter, Arial, sans-serif;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--red);
}

h1, h2, h3, .logo-text, .stat-num, .service-num {
    font-family: "Barlow Condensed", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* TOP STRIP */
.top-strip {
    background: #050607;
    border-bottom: 1px solid var(--border);
    font-size: 12px;
    color: #9aa0a6;
}

.top-strip .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 38px;
    gap: 16px;
}

.top-strip span,
.top-strip a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-strip a:hover {
    color: #fff;
}

.top-strip i {
    color: var(--red);
}

/* NAVBAR */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 8, 9, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 42px;
    width: auto;
}

.logo-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--red);
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
    font-size: 18px;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    line-height: 0.85;
}

.logo-text small {
    display: block;
    font-size: 10px;
    letter-spacing: 3.5px;
    color: #8d9399;
    margin-top: 5px;
}

.logo-text b {
    color: var(--red);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: #c5c8cc;
    font-size: 13px;
    font-weight: 600;
    position: relative;
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: 0.25s;
}

.nav-links a:hover::after,
.nav-links .admin-link::after {
    width: 100%;
}

.nav-links .admin-link,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 20px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: 0.25s;
}

.nav-links .admin-link::after {
    display: none;
}

.nav-links .admin-link,
.btn-primary {
    background: var(--red);
    color: #fff;
    border: 0;
    cursor: pointer;
}

.nav-links .admin-link:hover,
.btn-primary:hover {
    background: #ff1a12;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: transparent;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #111;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: 0;
    cursor: pointer;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #fff;
}

/* HERO */
.hero {
    position: relative;
    min-height: calc(100vh - 116px);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 70px 0 80px;
}

.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-bg {
    background:
        url("https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=2000&q=80")
        center / cover;
    transform: scale(1.04);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(7, 8, 9, 0.96) 0%, rgba(7, 8, 9, 0.82) 46%, rgba(7, 8, 9, 0.35) 100%),
        linear-gradient(0deg, #070809, transparent 38%);
}

.hero .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 50px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(52px, 7vw, 92px);
    line-height: 0.88;
    font-weight: 800;
    margin: 18px 0 22px;
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--red);
}

.hero p {
    max-width: 540px;
    color: #b7bcc2;
    line-height: 1.8;
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 28px;
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.stat-num {
    display: block;
    color: var(--red);
    font-size: 34px;
    font-weight: 800;
}

.hero-stats p {
    margin: 0;
    color: #8d9399;
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.hero-panel {
    min-height: 420px;
    border: 1px solid var(--border);
    background: rgba(12, 14, 16, 0.55);
    position: relative;
    overflow: hidden;
}

.hero-panel img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.hero-panel .panel-frame {
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    pointer-events: none;
}

.hero-panel .panel-tag {
    position: absolute;
    left: 28px;
    bottom: 28px;
    background: var(--red);
    padding: 10px 14px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 800;
    letter-spacing: 1.5px;
}

/* SECTIONS */
.section {
    padding: 100px 0;
}

.section-head {
    max-width: 640px;
    margin-bottom: 48px;
}

.section-head h2,
.about-copy h2,
.contact-copy h2 {
    font-size: clamp(40px, 5vw, 64px);
    line-height: 0.92;
    margin: 14px 0 16px;
}

.section-head h2 span,
.about-copy h2 span,
.contact-copy h2 span {
    color: var(--red);
}

.section-head p,
.about-copy p {
    color: var(--gray);
    line-height: 1.8;
}

.services {
    background: var(--black);
    border-top: 1px solid var(--border);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 28px 24px 26px;
    min-height: 240px;
    transition: 0.3s;
    position: relative;
}

.service-card:hover {
    border-color: rgba(225, 6, 0, 0.55);
    transform: translateY(-6px);
}

.service-card .service-img {
    width: calc(100% + 48px);
    margin: -28px -24px 20px;
    height: 150px;
    object-fit: cover;
}

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
}

.service-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: rgba(225, 6, 0, 0.12);
    color: var(--red);
    font-size: 18px;
}

.service-num {
    color: #3a3f45;
    font-size: 28px;
    font-weight: 800;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
}

/* GALLERY */
.gallery {
    background: var(--dark);
    border-top: 1px solid var(--border);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-auto-rows: 210px;
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    color: #6b7178;
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item i {
    font-size: 34px;
    color: var(--red);
}

.gallery-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 28px 18px 16px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.88));
}

.gallery-overlay small {
    color: var(--red);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.gallery-overlay strong {
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 22px;
    text-transform: uppercase;
}

/* ABOUT */
.about {
    background: var(--black);
    border-top: 1px solid var(--border);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-frame {
    min-height: 460px;
    background:
        linear-gradient(rgba(7, 8, 9, 0.25), rgba(7, 8, 9, 0.55)),
        url("https://images.unsplash.com/photo-1487754180451-c456f719a1fc?auto=format&fit=crop&w=1200&q=80")
        center / cover;
    border: 1px solid var(--border);
    overflow: hidden;
}

.about-frame img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
}

.form-note {
    padding: 12px 14px;
    margin-bottom: 14px;
    font-size: 14px;
    font-weight: 600;
}

.form-note.success {
    background: rgba(33, 199, 122, 0.12);
    border: 1px solid rgba(33, 199, 122, 0.35);
    color: #7dffc0;
}

.form-note.error {
    background: rgba(225, 6, 0, 0.12);
    border: 1px solid rgba(225, 6, 0, 0.35);
    color: #ff9a9a;
}

.experience-box {
    position: absolute;
    right: -18px;
    bottom: 28px;
    background: var(--red);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.experience-box strong {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 42px;
    line-height: 1;
}

.experience-box span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    max-width: 80px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0 8px;
}

.about-features div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
}

.about-features i {
    color: var(--red);
}

/* CTA */
.cta {
    padding: 70px 0;
    background:
        linear-gradient(90deg, rgba(225, 6, 0, 0.92), rgba(140, 0, 0, 0.88)),
        url("https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?auto=format&fit=crop&w=1800&q=80")
        center / cover;
}

.cta .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.cta h2 {
    font-size: clamp(36px, 4vw, 52px);
    line-height: 0.95;
    margin-top: 8px;
}

.cta .btn-outline {
    border-color: #fff;
}

/* CONTACT */
.contact {
    background: var(--dark);
    border-top: 1px solid var(--border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
}

.contact-list a,
.contact-list div {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.contact-list i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--card);
    color: var(--red);
}

.contact-list small {
    display: block;
    color: #6f757c;
    font-size: 10px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.contact-form {
    background: var(--card);
    border: 1px solid var(--border);
    padding: 32px;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    margin-bottom: 12px;
    padding: 14px 16px;
    background: #0c0e10;
    border: 1px solid var(--border);
    color: #fff;
    font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--red);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
}

/* FOOTER */
.footer {
    background: #050607;
    border-top: 1px solid var(--border);
    padding: 56px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.footer h3 b {
    color: var(--red);
}

.footer p,
.footer a {
    color: #8a9096;
    font-size: 14px;
    line-height: 1.8;
}

.footer h4 {
    font-size: 12px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.footer ul {
    list-style: none;
}

.footer a:hover {
    color: #fff;
}

.social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.social a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    color: #aaa;
}

.social a:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}

.footer-bottom {
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    color: #5c6166;
    font-size: 12px;
    text-align: center;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 28px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

.whatsapp-float:hover {
    transform: scale(1.06);
}

.admin-bar {
    position: sticky;
    top: 0;
    z-index: 2000;
    background: var(--red);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
}

.admin-bar div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-bar a {
    background: rgba(0, 0, 0, 0.22);
    padding: 6px 12px;
}

@media (max-width: 980px) {
    .hero .container,
    .about-grid,
    .contact-grid,
    .cta .container,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-panel {
        display: none;
    }

    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 200px;
    }

    .gallery-item.large {
        grid-row: auto;
        grid-column: span 2;
        min-height: 240px;
    }

    .experience-box {
        right: 12px;
    }
}

@media (max-width: 760px) {
    .top-strip .hide-sm {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(320px, 86vw);
        height: 100vh;
        background: #0c0e10;
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 28px;
        gap: 18px;
        transition: 0.35s;
        border-left: 1px solid var(--border);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a::after {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .services-grid,
    .gallery-grid,
    .about-features,
    .contact-form .form-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: auto;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
}
