:root {
    --navy: #07131f;
    --navy-mid: #0b1e30;
    --navy-dark: #050e18;
    --red: #c8102e;
    --sky: #5bc8e8;
    --white: #ffffff;
    --light-bg: #f4f7fa;
    --light-mid: #e8eef4;
    --text-dark: #0f1f2e;
    --text-gray: #5a7080;
    --border-dark: rgba(91, 200, 232, 0.18);
    --border-light: rgba(15, 31, 46, 0.12);
    --color1: var(--navy);
    --color2: var(--navy-mid);
    --color4: var(--red);
    --color5: var(--white);
    --color6: #a8bac8;
    --color7: var(--sky);
    --transition-normal: 0.2s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--white);
    background: var(--navy);
    font-family: "Montserrat", sans-serif;
}

a {
    text-decoration: none;
}

.tex-dark,
.tex-light {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    background-size: 26px 26px, 100% 100%;
}

.tex-dark {
    background-image:
        radial-gradient(circle, rgba(91, 200, 232, 0.22) 1.5px, transparent 1.5px),
        repeating-linear-gradient(-50deg, transparent, transparent 35px, rgba(91, 200, 232, 0.06) 35px, rgba(91, 200, 232, 0.06) 36px);
}

.tex-light {
    background-image:
        radial-gradient(circle, rgba(11, 30, 48, 0.14) 1.5px, transparent 1.5px),
        repeating-linear-gradient(-50deg, transparent, transparent 35px, rgba(11, 30, 48, 0.04) 35px, rgba(11, 30, 48, 0.04) 36px);
}

.av-proto-logo {
    display: inline-flex;
    align-items: center;
}

.av-proto-logo svg {
    width: 142px;
    height: auto;
}

.av-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    min-height: 66px;
    padding: 0 44px;
    background: rgba(5, 14, 24, 0.96);
    border-bottom: 1px solid var(--border-dark);
    backdrop-filter: blur(16px);
}

.av-navbar .container-fluid {
    padding: 0;
}

.av-navbar-menu {
    display: flex;
    gap: 3px;
    align-items: center;
    list-style: none;
}

.av-navbar-menu .nav-item {
    position: relative;
}

.av-navbar-menu .nav-link {
    display: block;
    padding: 8px 9px !important;
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.72);
    background: transparent;
    border: 0;
    appearance: none;
    font-family: inherit;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.045em;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.2s, background 0.2s;
}

.av-navbar-menu .nav-link:hover,
.av-navbar-menu .nav-link.active,
.av-navbar-menu .dropdown-open > .nav-link {
    color: var(--sky);
    background: rgba(91, 200, 232, 0.07);
}

.av-navbar-menu .nav-link.has-drop {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-caret {
    font-size: 9px;
    opacity: 0.72;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.av-navbar-menu .nav-link:hover .nav-caret,
.av-navbar-menu .dropdown-open > .nav-link .nav-caret {
    opacity: 1;
}

.av-navbar-menu .dropdown-open > .nav-link .nav-caret,
.av-navbar-menu .nav-item:hover > .nav-link .nav-caret {
    transform: rotate(180deg);
}

.av-dropdown {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 600;
    min-width: 220px;
    margin-top: 6px;
    padding: 8px 0;
    background: rgba(7, 19, 31, 0.98);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
}

.av-dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -10px;
    height: 10px;
}

.av-dropdown.wide {
    min-width: 560px;
    display: flex;
    flex-wrap: wrap;
}

.av-dropdown-col {
    flex: 1;
    min-width: 180px;
    padding: 8px 0;
}

.av-dropdown-title {
    padding: 8px 18px 4px;
    color: var(--sky);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.av-dropdown a {
    display: block;
    padding: 9px 18px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.15s;
}

.av-dropdown a:hover {
    padding-left: 22px;
    color: var(--white);
    background: rgba(91, 200, 232, 0.08);
}

.av-navbar-menu .nav-item:hover .av-dropdown,
.av-navbar-menu .nav-item.dropdown-open .av-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.av-navbar-menu .nav-item:hover .av-dropdown.wide,
.av-navbar-menu .nav-item.dropdown-open .av-dropdown.wide {
    display: flex;
}

.btn-account {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    color: var(--sky);
    background: transparent;
    border: 2px solid var(--sky);
    border-radius: 5px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.07em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.2s;
}

.btn-account:hover {
    color: var(--navy);
    background: var(--sky);
}

.btn-account svg {
    width: 14px;
    height: 14px;
}

.av-navbar-toggler {
    width: 42px;
    height: 42px;
    padding: 8px;
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    box-shadow: none !important;
}

.av-navbar-toggler span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 5px 0;
    background: var(--white);
    border-radius: 999px;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 44px 80px;
    background: linear-gradient(140deg, #030c15 0%, #07131f 50%, #0a1a2e 100%);
}

.hero-glow,
.hero-glow2 {
    position: absolute;
    pointer-events: none;
}

.hero-glow {
    top: -200px;
    right: -150px;
    width: 750px;
    height: 750px;
    background: radial-gradient(circle, rgba(91, 200, 232, 0.08) 0%, transparent 65%);
}

.hero-glow2 {
    bottom: -200px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 16, 46, 0.06) 0%, transparent 65%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 740px;
}

.eyebrow,
.sec-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow {
    margin-bottom: 28px;
    color: var(--sky);
    letter-spacing: 0.18em;
}

.eyebrow::before,
.sec-label::before {
    content: "";
    width: 24px;
    height: 2px;
}

.eyebrow::before,
.sec-label-dark::before {
    background: var(--sky);
}

.sec-label-light::before {
    background: var(--red);
}

.hero h1 {
    margin: 0 0 14px;
    font-size: clamp(42px, 5.5vw, 74px);
    font-style: italic;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.04;
}

.hero h1 em {
    color: var(--sky);
    font-style: italic;
}

.hero-slogan {
    margin: 0 0 24px;
    color: rgba(91, 200, 232, 0.75);
    font-size: 15px;
    font-style: italic;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hero-desc {
    max-width: 560px;
    margin: 0 0 38px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.78;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 42px;
}

.pill {
    padding: 5px 16px;
    color: var(--sky);
    background: rgba(91, 200, 232, 0.06);
    border: 1.5px solid rgba(91, 200, 232, 0.3);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-primary,
.btn-outline,
.btn-send {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 5px;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary {
    padding: 14px 32px;
    color: var(--white);
    background: var(--red);
    border: none;
}

.btn-primary:hover {
    color: var(--white);
    background: #a50d25;
    transform: translateY(-1px);
}

.btn-outline {
    padding: 14px 32px;
    color: var(--white);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    color: var(--white);
    border-color: var(--white);
}

.sec-dark,
.sec-light,
.sec-white,
.sec-darkest,
.gallery {
    position: relative;
    overflow: hidden;
}

.sec-dark {
    background: var(--navy-mid);
}

.sec-light {
    background: var(--light-bg);
}

.sec-white {
    background: var(--white);
}

.sec-darkest {
    background: var(--navy-dark);
}

.gallery {
    background: var(--navy);
}

.inner,
.gallery-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 96px 44px;
}

.gallery-inner {
    padding: 80px 44px;
}

.sec-label {
    margin-bottom: 18px;
}

.sec-label-dark {
    color: var(--sky);
}

.sec-label-light {
    color: var(--red);
}

.grad-line,
.grad-line-light {
    height: 1px;
}

.grad-line {
    opacity: 0.2;
    background: linear-gradient(90deg, transparent, var(--sky), transparent);
}

.grad-line-light {
    background: linear-gradient(90deg, transparent, rgba(11, 30, 48, 0.2), transparent);
}

.gallery-head,
.svc-header,
.offer-copy-grid,
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
}

.gallery-head h2,
.svc-header h2,
.contact-grid h2 {
    margin: 0;
    font-size: clamp(24px, 2.8vw, 40px);
    font-weight: 900;
    line-height: 1.2;
}

.gallery-head h2,
.svc-header h2,
.contact-grid h2 {
    max-width: 500px;
}

.see-all {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--sky);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 6px;
    overflow: hidden;
    border-radius: 12px;
}

.gp {
    position: relative;
    overflow: hidden;
}

.gp:nth-child(1) {
    grid-row: span 2;
}

.gp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.82) saturate(0.9);
    transition: transform 0.5s ease, filter 0.5s ease;
}

.gp:hover img {
    transform: scale(1.06);
    filter: brightness(0.95) saturate(1.1);
}

.gp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 19, 31, 0.7) 0%, transparent 55%);
}

.gp-label {
    position: absolute;
    bottom: 16px;
    left: 18px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-grid,
.contact-grid,
.offer-copy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.about-grid {
    margin-bottom: 64px;
}

.about-grid h2,
.offer-copy-grid h2 {
    margin: 0;
    color: var(--text-dark);
    font-size: clamp(28px, 3.2vw, 44px);
    font-weight: 900;
    line-height: 1.12;
}

.about-grid p,
.offer-copy-grid p {
    margin: 0 0 18px;
    color: var(--text-gray);
    font-size: 14.5px;
    font-weight: 400;
    line-height: 1.8;
}

.about-cards,
.svc-grid,
.offer-grid {
    display: grid;
    gap: 1px;
    overflow: hidden;
    border-radius: 10px;
}

.about-cards {
    grid-template-columns: repeat(3, 1fr);
    background: var(--border-light);
    border: 1px solid var(--border-light);
}

.about-card,
.offer-card {
    padding: 32px 26px;
    background: var(--white);
    transition: background 0.2s;
}

.about-card:hover,
.offer-card:hover {
    background: #f0f6fb;
}

.card-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--text-dark);
    background: rgba(11, 30, 48, 0.07);
    border: 1px solid rgba(11, 30, 48, 0.1);
    border-radius: 9px;
    font-size: 18px;
}

.about-card h4,
.offer-card h3 {
    margin: 0 0 8px;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 800;
}

.about-card p,
.offer-card p {
    margin: 0;
    color: var(--text-gray);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.65;
}

.svc-header {
    margin-bottom: 44px;
}

.svc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--border-dark);
    border: 1px solid var(--border-dark);
}

.svc-card {
    padding: 40px 36px;
    color: var(--white);
    background: rgba(7, 19, 31, 0.8);
    transition: background 0.25s;
}

.svc-card:hover {
    color: var(--white);
    background: rgba(91, 200, 232, 0.05);
}

.svc-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--sky);
    background: rgba(91, 200, 232, 0.08);
    border: 1px solid rgba(91, 200, 232, 0.2);
    border-radius: 10px;
    font-size: 20px;
}

.svc-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 800;
}

.svc-card > p {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.7;
}

.svc-list {
    padding: 0;
    margin: 0 0 26px;
    list-style: none;
}

.svc-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 4px 0;
    color: rgba(255, 255, 255, 0.45);
    font-size: 12.5px;
    font-weight: 400;
}

.svc-list li::before {
    content: "";
    width: 4px;
    height: 4px;
    flex-shrink: 0;
    background: var(--sky);
    border-radius: 50%;
}

.svc-explore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--sky);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 44px;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.stat-item {
    padding: 32px 20px;
    text-align: center;
    border-right: 1px solid var(--border-dark);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    margin-bottom: 8px;
    font-size: clamp(44px, 4.5vw, 60px);
    font-weight: 900;
    line-height: 1;
}

.stat-lbl {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.offer-copy-grid {
    align-items: center;
}

.offer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 48px;
    background: var(--border-light);
    border: 1px solid var(--border-light);
}

.offer-card {
    padding: 36px 30px;
}

.offer-card .oc-num {
    margin-bottom: 16px;
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.offer-card h3 {
    font-size: 16px;
}

.contact-grid {
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
}

.contact-desc {
    margin: 0 0 36px;
    color: rgba(255, 255, 255, 0.52);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
}

.cinfo {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cinfo-row {
    display: flex;
    align-items: center;
    gap: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-weight: 500;
}

.cinfo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sky);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-dark);
    border-radius: 8px;
    font-size: 15px;
}

.form-box {
    padding: 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-dark);
    border-radius: 12px;
}

.form-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 14px;
}

.fg {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 14px;
}

.fg label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.fg input,
.fg select,
.fg textarea {
    padding: 12px 15px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    outline: none;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    transition: border-color 0.2s;
}

.fg input::placeholder,
.fg textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--sky);
}

.fg select option {
    color: var(--white);
    background: var(--navy-mid);
}

.fg textarea {
    min-height: 96px;
    resize: vertical;
}

.form-note {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
    font-weight: 400;
}

.btn-send {
    width: 100%;
    padding: 14px;
    color: var(--white);
    background: var(--red);
    border: none;
}

.btn-send:hover {
    background: #a50d25;
}

.av-footer {
    background: #030d1a;
    border-top: 1px solid var(--border-dark);
}

.footer-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 64px 44px 32px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border-dark);
}

.fbrand p {
    max-width: 250px;
    margin: 14px 0 0;
    color: rgba(255, 255, 255, 0.38);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7;
}

.fcol h5 {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.fcol ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.fcol li {
    margin-bottom: 10px;
}

.fcol a,
.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    font-weight: 400;
    transition: color 0.2s;
}

.fcol a:hover,
.footer-bottom a:hover {
    color: var(--sky);
}

.footer-bottom {
    color: rgba(255, 255, 255, 0.22);
    font-size: 12px;
    font-weight: 400;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.page-offset-navbar {
    padding-top: 120px;
    padding-bottom: 72px;
    background: var(--light-bg);
}

@media (max-width: 1199.98px) {
    .av-navbar {
        padding: 0 18px;
    }

    .av-navbar-menu .nav-link {
        padding-inline: 6px !important;
        font-size: 9.8px;
        letter-spacing: 0.035em;
    }

    .av-navbar-menu {
        gap: 1px;
    }

    .btn-account {
        padding-inline: 14px;
        font-size: 11px;
    }
}

@media (max-width: 991.98px) {
    .av-navbar {
        min-height: auto;
        padding: 12px 20px;
    }

    .av-navbar .navbar-collapse {
        margin-top: 14px;
        padding: 14px;
        max-height: calc(100svh - 82px);
        overflow-y: auto;
        overscroll-behavior: contain;
        background: rgba(5, 14, 24, 0.98);
        border: 1px solid var(--border-dark);
        border-radius: 10px;
        -webkit-overflow-scrolling: touch;
    }

    .av-navbar-menu {
        align-items: stretch;
        gap: 0;
    }

    .av-navbar-menu .nav-link {
        width: 100%;
        justify-content: space-between;
        padding: 11px 10px !important;
        font-size: 11px;
        letter-spacing: 0.055em;
    }

    .av-dropdown,
    .av-dropdown.wide {
        position: static;
        display: none;
        min-width: 0;
        margin-top: 0;
        padding: 0 0 8px 12px;
        background: transparent;
        border: 0;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        transition: none;
    }

    .av-dropdown::before {
        display: none;
    }

    .av-navbar-menu .nav-item:not(.dropdown-open):hover .av-dropdown,
    .av-navbar-menu .nav-item:not(.dropdown-open):hover .av-dropdown.wide {
        display: none;
    }

    .av-navbar-menu .nav-item.dropdown-open .av-dropdown {
        display: block;
    }

    .av-navbar-menu .nav-item.dropdown-open .av-dropdown.wide {
        display: block;
    }

    .av-navbar-menu .nav-item:hover > .nav-link .nav-caret {
        transform: none;
    }

    .av-navbar-menu .dropdown-open > .nav-link .nav-caret {
        transform: rotate(180deg);
    }

    .av-dropdown-title {
        padding-left: 12px;
    }

    .av-dropdown a {
        padding: 7px 12px;
        white-space: normal;
    }

    .btn-account {
        width: 100%;
        justify-content: center;
        margin-top: 12px;
    }

    .gallery-head,
    .svc-header,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-grid,
    .contact-grid,
    .offer-copy-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .gallery-grid,
    .about-cards,
    .svc-grid,
    .offer-grid,
    .stats-grid,
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-rows: repeat(3, 220px);
    }

    .gp:nth-child(1) {
        grid-row: span 1;
    }
}

@media (max-width: 767.98px) {
    .hero,
    .inner,
    .gallery-inner,
    .stats-grid,
    .footer-wrap {
        padding-left: 22px;
        padding-right: 22px;
    }

    .hero {
        min-height: 92vh;
        padding-top: 110px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .gallery-grid,
    .about-cards,
    .svc-grid,
    .offer-grid,
    .stats-grid,
    .footer-top,
    .form-row2 {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-rows: repeat(5, 210px);
    }

    .stat-item {
        border-right: 0;
        border-bottom: 1px solid var(--border-dark);
    }

    .stat-item:last-child {
        border-bottom: 0;
    }

    .form-box {
        padding: 26px;
    }
}
