﻿:root {
    --navy: #0B1220;
    --blue: #2B7DE9;
    --blue2: #1F63C0;
    --bg: #F6F8FC;
    --card: #ffffff;
    --muted: #5B6475;
    --border: #E6EAF2;
    --radius: 18px;
    --shadow: 0 12px 28px rgba(11,18,32,.08);
    --shadow2: 0 10px 22px rgba(11,18,32,.06);
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--navy);
}

a {
    color: inherit;
    text-decoration: none
}

.wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px
}

/* NAV */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246,248,252,.82);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

    .nav .inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 0;
        gap: 16px;
        position:relative;
    }

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

    .brand img {
        height: 100px;
        width: auto;
        display: block;
        position: absolute;
        top: -14px;
    }

.menu {
    display: flex;
    align-items: center;
    gap: 18px
}

    .menu a {
        color: var(--muted);
        font-weight: 700;
        font-size: 14px;
        padding: 8px 10px;
        border-radius: 10px;
    }

        .menu a:hover {
            color: var(--navy);
            background: rgba(11,18,32,.04);
        }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 14px;
    border-radius: 12px;
    font-weight: 800;
    border: 1px solid var(--border);
    background: var(--card);
    transition: transform .08s ease, background .12s ease, border-color .12s ease;
    white-space: nowrap;
}

    .btn:hover {
        transform: translateY(-1px);
        border-color: #d5dbea
    }

    .btn.primary {
        background: var(--blue);
        border-color: var(--blue);
        color: #fff;
        box-shadow: 0 10px 22px rgba(43,125,233,.22);
    }

        .btn.primary:hover {
            background: var(--blue2);
            border-color: var(--blue2);
        }

/* HERO */
header.hero {
    padding: 56px 0 28px
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 22px;
    align-items: center;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-weight: 900;
    letter-spacing: .2px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: var(--blue);
    display: inline-block
}

h1 {
    font-size: 46px;
    line-height: 1.05;
    margin: 12px 0 12px;
    letter-spacing: -0.6px;
}

.lead {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.6;
    max-width: 56ch;
    margin: 0;
}

.cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px
}

.trust {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px
}

.pill {
    padding: 10px 12px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.7);
    border-radius: 999px;
    color: var(--muted);
    font-weight: 800;
    font-size: 13px;
}

.hero-card {
    background: linear-gradient(180deg, #fff, #fff);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

    .hero-card:before {
        content: "";
        position: absolute;
        inset: -120px -120px auto auto;
        width: 220px;
        height: 220px;
        background: radial-gradient(circle, rgba(43,125,233,.25), rgba(43,125,233,0) 65%);
        pointer-events: none;
        transform: translate(30px,-30px);
    }

    .hero-card h3 {
        margin: 0 0 8px
    }

    .hero-card p {
        margin: 0;
        color: var(--muted);
        line-height: 1.6
    }

.tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 12px 0 0
}

.tag {
    font-size: 12px;
    font-weight: 900;
    color: #16345e;
    background: #eaf2ff;
    border: 1px solid #d7e6ff;
    padding: 6px 10px;
    border-radius: 999px;
}

/* SECTIONS */
section {
    padding: 28px 0
}

.section-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

    .section-title h2 {
        margin: 0;
        font-size: 26px;
        letter-spacing: -.2px
    }

    .section-title p {
        margin: 0;
        color: var(--muted);
        font-weight: 700
    }

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    margin-top: 16px
}

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow2);
}

/* Work cards */
.proj {
    grid-column: span 6
}

    .proj img {
        width: 100%;
        height: 260px;
        object-fit: cover;
        object-position: top;
        display: block;
      
    }


.card-body {
    padding: 14px
}

.card-title {
    font-weight: 950;
    font-size: 18px
}

.card-sub {
    color: var(--muted);
    font-weight: 800;
    margin-top: 2px
}

.bullets {
    margin: 10px 0 0;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.6;
    font-weight: 650
}

.card-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 12px
}

/* Service cards */
.svc {
    grid-column: span 6;
    padding: 16px
}

    .svc h3 {
        margin: 0 0 8px
    }

    .svc ul {
        margin: 10px 0 0;
        padding-left: 18px;
        color: var(--muted);
        line-height: 1.9;
        font-weight: 650
    }

/* Process */
.steps {
    grid-column: span 12;
    padding: 16px
}

.step-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 12px
}

.step {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px;
    background: rgba(255,255,255,.8);
}

    .step b {
        display: block;
        margin-bottom: 6px
    }

    .step span {
        color: var(--muted);
        font-weight: 650;
        line-height: 1.45
    }

/* Contact */
.two {
    grid-column: span 6;
    padding: 16px
}

.form input, .form textarea {
    width: 100%;
    padding: 12px 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #fff;
    font: inherit;
    outline: none;
}

    .form input:focus, .form textarea:focus {
        border-color: #b8cdf6;
        box-shadow: 0 0 0 4px rgba(43,125,233,.12)
    }

.form textarea {
    min-height: 120px;
    resize: vertical
}

.form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px
}

.form .row2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 10px
}

/* Footer */
footer {
    padding: 26px 0 34px;
    border-top: 1px solid var(--border);
    margin-top: 22px;
    color: var(--muted);
    font-weight: 700;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

/* Mobile */
@media (max-width: 900px) {
    .menu {
        display: none
    }

    h1 {
        font-size: 36px
    }

    .hero-grid {
        grid-template-columns: 1fr
    }

    .proj {
        grid-column: span 12
    }

    .svc {
        grid-column: span 12
    }

    .two {
        grid-column: span 12
    }

    .step-row {
        grid-template-columns: 1fr
    }
}

/* ===== HERO 2 (Screenshot-style) ===== */
.hero2 {
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    /* clears sticky nav; adjust if your nav height changes */
    padding: 120px 0 120px;
    background: #eef3ff;
}

/* background image layer */
.hero2-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/mountian.png'); /* change path */
    background-size: cover;
    background-position: center;
    opacity: .55;
    transform: scale(1.02);
}

/* soft fade overlay (keeps text readable like the screenshot) */
.hero2-overlay {
    inset: 0;
    background: radial-gradient(1200px 520px at 50% 25%, rgba(255,255,255,.92), rgba(255,255,255,.65) 55%, rgba(246,248,252,.95) 100%), linear-gradient(180deg, rgba(246,248,252,.75), rgba(246,248,252,1));
}

/* content */
.hero2-inner {
    position: relative;
    text-align: center;
    max-width: 860px;
}

/* headline */
.hero2-title {
    margin: 0;
    font-size: 52px;
    line-height: 1.05;
    letter-spacing: -0.8px;
}

/* sub text */
.hero2-sub {
    margin: 14px auto 0;
    max-width: 52ch;
    color: var(--muted);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.7;
}

/* buttons */
.hero2-actions {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* mobile tuning */
@media (max-width: 900px) {
    .hero2 {
        padding: 86px 0 52px;
    }

    .hero2-title {
        font-size: 38px;
    }

    .hero2-sub {
        font-size: 16px;
    }
}

/* ===============================
   Dallas GAA Project Thumbnail
================================ */

.project-thumb {
    width: 100%;
    height: 210px;
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.dallas-gaa-thumb {
    background: #0B1F3B;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Optional faint background image/photo layer */
.dallas-gaa-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient( rgba(11, 31, 59, 0.84), rgba(11, 31, 59, 0.94) ), url("/images/dallas-action.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    transform: scale(1.04);
}

/* Red accent shape along the bottom */
.dallas-gaa-thumb::after {
    content: "";
    position: absolute;
    left: -45px;
    bottom: 0;
    width: 72%;
    height: 7px;
    background: #C8102E;
    transform: skewX(-28deg);
    box-shadow: 190px 0 0 rgba(200, 16, 46, 0.35);
}

/* Optional subtle top shine */
.dallas-gaa-thumb::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient( circle at top center, rgba(255, 255, 255, 0.16), transparent 45% );
    z-index: 1;
}

.dallas-gaa-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 28px;
}

.dallas-gaa-logo {
    max-width: 165px;
    max-height: 92px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.32));
}

.dallas-gaa-line {
    width: 54px;
    height: 3px;
    background: #C8102E;
    border-radius: 999px;
    margin: 16px auto 10px;
}

.dallas-gaa-text {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1.35;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}