/* =========================================================
   SNMF INFRATECH PVT. LTD.
   MAIN STYLE SHEET
   Luxury Dark + Gold
   Reference-Based Compact Layout
   ========================================================= */


/* =========================================================
   01. ROOT VARIABLES
   ========================================================= */

:root {
    --snmf-black: #070808;
    --snmf-black-soft: #0b0c0c;
    --snmf-black-card: #101111;

    --snmf-gold: #d8ae45;
    --snmf-gold-light: #edc967;
    --snmf-gold-dark: #a27b27;

    --snmf-white: #f5f2eb;
    --snmf-white-soft: #d9d6cf;
    --snmf-text: #aaa8a1;
    --snmf-muted: #77756f;

    --snmf-border: rgba(255, 255, 255, 0.14);
    --snmf-gold-border: rgba(216, 174, 69, 0.48);

    /*
       IMPORTANT:
       1424px screen -> 1304px content + 60px each side
       1024px screen -> 904px content + 60px each side
    */
    --snmf-container: 1304px;
    --snmf-side-space: 60px;

    --snmf-serif: "Playfair Display", Georgia, serif;
    --snmf-sans: "DM Sans", Arial, sans-serif;

    --snmf-transition: 0.28s ease;
}


/* =========================================================
   02. RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;

    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;

    background: var(--snmf-black);
    color: var(--snmf-white);

    font-family: var(--snmf-sans);
    font-size: 13px;
    line-height: 1.5;

    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

main {
    display: block;
}

section {
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-top: 0;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

::selection {
    background: var(--snmf-gold);
    color: #080808;
}


/* =========================================================
   03. MAIN CONTAINER
   ========================================================= */

.container,
.hero-container,
.final-cta-container {
    width: calc(100% - (var(--snmf-side-space) * 2));
    max-width: var(--snmf-container);

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   04. COMMON TYPOGRAPHY
   ========================================================= */

.section-label {
    display: block;

    margin: 0 0 6px;

    color: var(--snmf-gold-light);

    font-family: var(--snmf-sans);
    font-size: 8px;
    font-weight: 600;
    line-height: 1.3;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-title {
    margin: 0;

    color: var(--snmf-white);

    font-family: var(--snmf-serif);
    font-size: 25px;
    font-weight: 400;
    line-height: 1.08;

    letter-spacing: -0.15px;
}

.section-description {
    margin: 0;

    color: var(--snmf-text);

    font-family: var(--snmf-sans);
    font-size: 10px;
    font-weight: 400;
    line-height: 1.58;
}


/* =========================================================
   05. BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    min-height: 34px;

    padding: 0 15px;

    border: 1px solid var(--snmf-gold-border);
    border-radius: 3px;

    font-family: var(--snmf-sans);
    font-size: 9px;
    font-weight: 600;
    line-height: 1;

    white-space: nowrap;

    transition:
        background var(--snmf-transition),
        border-color var(--snmf-transition),
        color var(--snmf-transition),
        transform var(--snmf-transition);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--snmf-gold);
    border-color: var(--snmf-gold);

    color: #090908;
}

.btn-primary:hover {
    background: var(--snmf-gold-light);
    border-color: var(--snmf-gold-light);

    color: #090908;
}

.btn-outline {
    background: rgba(0, 0, 0, 0.20);
    border-color: rgba(216, 174, 69, 0.65);

    color: var(--snmf-white);
}

.btn-outline:hover {
    background: var(--snmf-gold);
    border-color: var(--snmf-gold);

    color: #090908;
}

.btn-arrow {
    display: inline-block;

    font-size: 12px;
    line-height: 1;
}


/* =========================================================
   06. HERO SECTION
   ========================================================= */

.hero-section {
    position: relative;

    width: 100%;
    height: 495px;
    min-height: 495px;

    overflow: hidden;

    background: #050606;
}

.hero-background {
    position: absolute;

    inset: 0;

    background-image: url("../images/hero-building-cityscape.png");

    background-position: center 10%;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.78) 22%,
            rgba(0, 0, 0, 0.48) 42%,
            rgba(0, 0, 0, 0.18) 65%,
            rgba(0, 0, 0, 0.28) 100%
        ),
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.30) 0%,
            rgba(0, 0, 0, 0.05) 50%,
            rgba(0, 0, 0, 0.60) 100%
        );
}

.hero-container {
    position: relative;

    height: 100%;

    z-index: 2;

    display: flex;
    align-items: center;
}

.hero-content {
    width: 420px;

    padding-top: 30px;
}

.hero-eyebrow {
    margin: 0 0 11px;

    color: #e5e2da;

    font-family: var(--snmf-sans);
    font-size: 7px;
    font-weight: 500;
    line-height: 1.45;

    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.hero-title {
    margin: 0 0 11px;

    color: var(--snmf-white);

    font-family: var(--snmf-serif);
    font-size: 43px;
    font-weight: 400;
    line-height: 1.01;

    letter-spacing: -0.65px;
}

.hero-title span {
    display: block;

    color: var(--snmf-gold-light);
}

.hero-description {
    width: 405px;
    max-width: 100%;

    margin: 0 0 15px;

    color: #dddcd5;

    font-family: var(--snmf-sans);
    font-size: 9.5px;
    font-weight: 400;
    line-height: 1.58;
}

.hero-actions {
    display: flex;
    align-items: center;

    gap: 11px;

    margin: 0;
}


/* =========================================================
   07. HERO SIDE LABEL
   ========================================================= */

.hero-side-label {
    position: absolute;

    top: 50%;
    right: 0;

    z-index: 3;

    display: flex;
    align-items: center;

    gap: 10px;

    transform: translateY(-50%);

    color: var(--snmf-gold-light);

    font-size: 7px;
    font-weight: 500;
    line-height: 1.55;

    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.hero-side-label::after {
    content: "";

    display: block;

    width: 1px;
    height: 126px;

    background: rgba(255, 255, 255, 0.68);
}


/* =========================================================
   08. HERO FEATURES
   ========================================================= */

.hero-features {
    position: absolute;

    left: 0;
    bottom: 22px;

    z-index: 3;

    display: flex;
    align-items: center;

    gap: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;

    gap: 7px;

    color: #e6e3dc;

    font-family: var(--snmf-sans);
    font-size: 8px;
    font-weight: 400;

    white-space: nowrap;
}

.hero-feature-icon {
    width: 21px;
    height: 21px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.hero-feature-icon img {
    width: 21px;
    height: 21px;

    object-fit: contain;
}


/* =========================================================
   09. ABOUT SECTION
   ========================================================= */

.about-section {
    position: relative;

    padding: 18px 0 18px;

    background: var(--snmf-black);

    border-top: 1px solid rgba(255, 255, 255, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);

    overflow: hidden;
}

.about-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(300px, 1.12fr)
        minmax(500px, 1.75fr)
        minmax(125px, 0.48fr);

    align-items: center;

    gap: 24px;
}

.about-content {
    min-width: 0;
}

.about-title {
    margin: 0 0 8px;

    color: var(--snmf-white);

    font-family: var(--snmf-serif);
    font-size: 27px;
    font-weight: 400;
    line-height: 1.02;
}

.about-text {
    max-width: 390px;

    margin: 0;

    color: var(--snmf-text);

    font-size: 9px;
    line-height: 1.58;
}

.about-button {
    margin-top: 10px;
}


/* =========================================================
   10. ABOUT STATS
   ========================================================= */

.about-stats {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    min-width: 0;

    border-left: 1px solid var(--snmf-gold-border);
}

.about-stat {
    min-width: 0;
    min-height: 80px;

    padding: 3px 14px;

    border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.about-stat:last-child {
    border-right: 0;
}

.about-stat-number {
    display: block;

    margin: 0 0 6px;

    color: var(--snmf-gold-light);

    font-family: var(--snmf-serif);
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
}

.about-stat-label {
    display: block;

    color: var(--snmf-white-soft);

    font-family: var(--snmf-sans);
    font-size: 8px;
    font-weight: 400;
    line-height: 1.45;
}


/* =========================================================
   11. ABOUT STATEMENT
   ========================================================= */

.about-statement {
    position: relative;

    min-width: 0;

    padding-left: 16px;
}

.about-statement::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 1px;
    height: 100%;

    background: var(--snmf-gold);
}

.about-statement p {
    max-width: 125px;

    margin: 0;

    color: var(--snmf-white-soft);

    font-family: var(--snmf-sans);
    font-size: 8px;
    font-weight: 500;
    line-height: 1.7;

    letter-spacing: 1.45px;
    text-transform: uppercase;
}

.about-statement span {
    display: block;

    width: 24px;
    height: 1px;

    margin-top: 10px;

    background: var(--snmf-gold);
}


/* =========================================================
   12. SERVICES SECTION
   ========================================================= */

.services-section {
    position: relative;

    padding: 10px 0 12px;

    background: var(--snmf-black-soft);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.services-heading {
    display: grid;

    grid-template-columns:
        minmax(390px, 1.18fr)
        minmax(310px, 1fr)
        auto;

    align-items: end;

    gap: 28px;

    margin-bottom: 8px;
}

.services-heading .section-title {
    font-size: 24px;
}

.services-heading .section-description {
    max-width: 340px;
}

.services-heading > .btn {
    margin-bottom: 1px;
}


/* =========================================================
   13. SERVICES GRID
   ========================================================= */

.services-grid {
    display: grid;

    grid-template-columns: repeat(6, minmax(0, 1fr));

    gap: 9px;

    width: 100%;
}

.service-card {
    min-width: 0;
    min-height: 132px;

    padding: 12px 10px 10px;

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.035),
            rgba(255, 255, 255, 0.008)
        );

    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 2px;

    transition:
        transform var(--snmf-transition),
        border-color var(--snmf-transition),
        background var(--snmf-transition);
}

.service-card:hover {
    transform: translateY(-2px);

    border-color: rgba(216, 174, 69, 0.58);

    background:
        linear-gradient(
            145deg,
            rgba(216, 174, 69, 0.075),
            rgba(255, 255, 255, 0.01)
        );
}

.service-icon {
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    margin-bottom: 7px;
}

.service-icon img {
    width: 26px;
    height: 26px;

    object-fit: contain;
}

.service-card h3 {
    margin: 0 0 5px;

    color: var(--snmf-white);

    font-family: var(--snmf-sans);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.24;
}

.service-card p {
    margin: 0;

    color: var(--snmf-text);

    font-family: var(--snmf-sans);
    font-size: 7.8px;
    font-weight: 400;
    line-height: 1.42;
}


/* =========================================================
   14. PROJECTS SECTION
   ========================================================= */

.projects-section {
    position: relative;

    padding: 10px 0 12px;

    background: var(--snmf-black);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.projects-heading {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 8px;
}

.projects-heading .section-title {
    font-size: 24px;
}


/* =========================================================
   15. PROJECT GRID
   ========================================================= */

.projects-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 11px;

    width: 100%;
}

.project-card {
    min-width: 0;

    background: #0b0c0c;

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;

    overflow: hidden;

    transition:
        transform var(--snmf-transition),
        border-color var(--snmf-transition);
}

.project-card:hover {
    transform: translateY(-2px);

    border-color: rgba(216, 174, 69, 0.60);
}


/* =========================================================
   16. PROJECT IMAGE
   ========================================================= */

.project-image {
    position: relative;

    width: 100%;
    height: 120px;

    overflow: hidden;

    background: #151616;
}

.project-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.55s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.04);
}

.project-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0) 48%,
            rgba(0, 0, 0, 0.28) 100%
        );
}

.project-category {
    position: absolute;

    left: 0;
    bottom: 0;

    z-index: 2;

    padding: 4px 8px;

    background: rgba(7, 8, 8, 0.90);

    color: var(--snmf-gold-light);

    font-size: 7px;
    font-weight: 500;
    line-height: 1;
}


/* =========================================================
   17. PROJECT INFO
   ========================================================= */

.project-info {
    position: relative;

    min-height: 59px;

    padding: 7px 9px 7px;
}

.project-info h3 {
    margin: 0 0 4px;

    color: var(--snmf-white);

    font-family: var(--snmf-serif);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
}

.project-location {
    display: flex;
    align-items: center;

    gap: 4px;

    color: var(--snmf-text);

    font-size: 7.5px;
    line-height: 1;
}

.project-location img {
    width: 9px;
    height: 9px;

    object-fit: contain;
}

.project-arrow {
    position: absolute;

    right: 8px;
    bottom: 8px;

    color: var(--snmf-gold-light);

    font-size: 15px;
    line-height: 1;

    transition: transform var(--snmf-transition);
}

.project-card:hover .project-arrow {
    transform: translateX(3px);
}


/* =========================================================
   18. FINAL CTA
   ========================================================= */

.final-cta {
    position: relative;

    width: 100%;
    height: 150px;
    min-height: 150px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: #090a09;
}

.final-cta-background {
    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            90deg,
            rgba(5, 6, 6, 0.92) 0%,
            rgba(5, 6, 6, 0.66) 40%,
            rgba(5, 6, 6, 0.36) 100%
        ),
        url("../images/hero-building-cityscape.png");

    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
}

.final-cta-container {
    position: relative;

    z-index: 2;

    height: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.final-cta-content {
    padding-left: 32px;

    border-left: 1px solid var(--snmf-gold);
}

.final-cta-label {
    display: block;

    margin: 0 0 5px;

    color: var(--snmf-gold-light);

    font-size: 7px;
    font-weight: 500;

    letter-spacing: 3px;
    line-height: 1.3;

    text-transform: uppercase;
}

.final-cta-title {
    margin: 0 0 9px;

    color: var(--snmf-white);

    font-family: var(--snmf-serif);
    font-size: 27px;
    font-weight: 400;
    line-height: 1.04;
}

.final-cta-side {
    display: flex;
    align-items: center;

    gap: 17px;
}

.final-cta-side p {
    max-width: 120px;

    margin: 0;

    color: var(--snmf-gold-light);

    font-size: 8px;
    font-weight: 500;
    line-height: 1.7;

    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.final-cta-side span {
    display: block;

    width: 26px;
    height: 1px;

    background: var(--snmf-gold);
}


/* =========================================================
   19. INNER PAGE SUPPORT
   ========================================================= */

.page-hero {
    position: relative;

    min-height: 235px;

    display: flex;
    align-items: flex-end;

    padding: 110px 0 32px;

    background: var(--snmf-black-soft);

    overflow: hidden;
}

.page-hero-content {
    position: relative;

    z-index: 2;
}

.page-hero-label {
    display: block;

    margin: 0 0 7px;

    color: var(--snmf-gold-light);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;
}

.page-hero h1 {
    margin: 0;

    color: var(--snmf-white);

    font-family: var(--snmf-serif);
    font-size: 39px;
    font-weight: 400;
    line-height: 1.05;
}

.page-content {
    padding: 40px 0;
}

.page-content-inner {
    width: calc(100% - (var(--snmf-side-space) * 2));
    max-width: var(--snmf-container);

    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   20. GOLD LINE
   ========================================================= */

.gold-line {
    display: block;

    width: 27px;
    height: 1px;

    margin-top: 9px;

    background: var(--snmf-gold);
}


/* =========================================================
   21. FORM ELEMENTS
   ========================================================= */

.form-group {
    margin-bottom: 13px;
}

.form-group label {
    display: block;

    margin-bottom: 5px;

    color: var(--snmf-white-soft);

    font-size: 9px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    display: block;

    width: 100%;

    padding: 9px 11px;

    background: rgba(255, 255, 255, 0.025);

    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 2px;

    color: var(--snmf-white);

    outline: none;

    transition:
        background var(--snmf-transition),
        border-color var(--snmf-transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    background: rgba(255, 255, 255, 0.04);

    border-color: var(--snmf-gold);
}

.form-group textarea {
    min-height: 115px;

    resize: vertical;
}


/* =========================================================
   22. 1200px - 1440px
   ========================================================= */

@media (min-width: 1201px) {

    .container,
    .hero-container,
    .final-cta-container {
        width: calc(100% - 120px);
        max-width: 1304px;
    }

    .page-content-inner,
    .page-hero-content {
        width: calc(100% - 120px);
        max-width: 1304px;
    }
}


/* =========================================================
   23. 1101px - 1200px
   ========================================================= */

@media (max-width: 1200px) and (min-width: 1101px) {

    .container,
    .hero-container,
    .final-cta-container,
    .page-content-inner,
    .page-hero-content {
        width: calc(100% - 100px);
    }

    .services-heading {
        gap: 20px;
    }

    .services-grid {
        gap: 8px;
    }

    .service-card {
        padding-left: 9px;
        padding-right: 9px;
    }

    .projects-grid {
        gap: 9px;
    }
}


/* =========================================================
   24. 1024px REFERENCE DESKTOP
   ========================================================= */

@media (max-width: 1100px) and (min-width: 901px) {

    /*
       1024px:
       1024 - 120 = 904px content
    */

    .container,
    .hero-container,
    .final-cta-container,
    .page-content-inner,
    .page-hero-content {
        width: calc(100% - 120px);
        max-width: none;
    }


    /* HERO */

    .hero-section {
        height: 495px;
        min-height: 495px;
    }

    .hero-content {
        width: 410px;
    }

    .hero-title {
        font-size: 41px;
    }

    .hero-description {
        width: 390px;
    }

    .hero-features {
        gap: 22px;
    }


    /* ABOUT */

    .about-grid {
        grid-template-columns:
            minmax(275px, 1.08fr)
            minmax(470px, 1.72fr)
            minmax(105px, 0.45fr);

        gap: 16px;
    }

    .about-stat {
        padding-left: 10px;
        padding-right: 10px;
    }

    .about-stat-number {
        font-size: 27px;
    }


    /* SERVICES */

    .services-heading {
        grid-template-columns:
            minmax(350px, 1.18fr)
            minmax(280px, 1fr)
            auto;

        gap: 16px;
    }

    .services-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));

        gap: 7px;
    }

    .service-card {
        min-height: 130px;

        padding: 11px 8px;
    }

    .service-card h3 {
        font-size: 9.5px;
    }

    .service-card p {
        font-size: 7.2px;
    }


    /* PROJECTS */

    .projects-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));

        gap: 8px;
    }

    .project-image {
        height: 110px;
    }

    .project-info {
        min-height: 57px;
    }

    .project-info h3 {
        font-size: 11.5px;
    }
}


/* =========================================================
   25. TABLET 900px
   ========================================================= */

@media (max-width: 900px) {

    .container,
    .hero-container,
    .final-cta-container,
    .page-content-inner,
    .page-hero-content {
        width: calc(100% - 60px);
        max-width: none;
    }


    /* HERO */

    .hero-section {
        height: 540px;
        min-height: 540px;
    }

    .hero-content {
        width: 420px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-side-label {
        display: none;
    }


    /* ABOUT */

    .about-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .about-text {
        max-width: 560px;
    }

    .about-stats {
        max-width: 550px;
    }

    .about-statement {
        display: none;
    }


    /* SERVICES */

    .services-heading {
        grid-template-columns: 1fr 1fr;

        gap: 20px;
    }

    .services-heading > .btn {
        justify-self: start;
    }

    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));

        gap: 9px;
    }


    /* PROJECTS */

    .projects-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 10px;
    }

    .project-image {
        height: 145px;
    }
}


/* =========================================================
   26. MOBILE 700px
   ========================================================= */

@media (max-width: 700px) {

    .container,
    .hero-container,
    .final-cta-container,
    .page-content-inner,
    .page-hero-content {
        width: calc(100% - 36px);
    }


    /* HERO */

    .hero-section {
        height: 640px;
        min-height: 640px;
    }

    .hero-background {
        background-position: 63% center;
    }

    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(3, 4, 4, 0.95) 0%,
                rgba(3, 4, 4, 0.66) 70%,
                rgba(3, 4, 4, 0.48) 100%
            ),
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.40),
                rgba(0, 0, 0, 0.78)
            );
    }

    .hero-container {
        align-items: center;
    }

    .hero-content {
        width: 100%;
        max-width: 450px;

        padding-top: 50px;
    }

    .hero-eyebrow {
        font-size: 7px;
        letter-spacing: 2px;
    }

    .hero-title {
        font-size: 37px;
    }

    .hero-description {
        width: 100%;

        font-size: 9px;
    }

    .hero-actions {
        flex-wrap: wrap;

        gap: 8px;
    }

    .hero-features {
        position: static;

        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 10px 14px;

        margin-top: 22px;
    }

    .hero-feature {
        font-size: 8px;
    }


    /* ABOUT */

    .about-section {
        padding: 28px 0;
    }

    .about-title {
        font-size: 28px;
    }

    .about-stats {
        max-width: none;

        grid-template-columns: repeat(2, 1fr);

        border-left: 0;
        border-top: 1px solid var(--snmf-gold-border);
    }

    .about-stat {
        min-height: 74px;

        padding: 11px 10px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    }

    .about-stat-number {
        font-size: 26px;
    }


    /* SERVICES */

    .services-section {
        padding: 28px 0;
    }

    .services-heading {
        grid-template-columns: 1fr;

        gap: 11px;

        margin-bottom: 13px;
    }

    .services-heading .section-title {
        font-size: 25px;
    }

    .services-heading > .btn {
        justify-self: start;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 9px;
    }

    .service-card {
        min-height: 132px;
    }


    /* PROJECTS */

    .projects-section {
        padding: 28px 0;
    }

    .projects-heading {
        align-items: flex-start;

        flex-direction: column;

        gap: 10px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-image {
        height: 180px;
    }


    /* CTA */

    .final-cta {
        height: 245px;
        min-height: 245px;
    }

    .final-cta-container {
        align-items: flex-start;

        flex-direction: column;

        justify-content: center;

        gap: 20px;
    }

    .final-cta-content {
        padding-left: 18px;
    }

    .final-cta-title {
        font-size: 29px;
    }

    .final-cta-side {
        display: none;
    }
}


/* =========================================================
   27. SMALL MOBILE 480px
   ========================================================= */

@media (max-width: 480px) {

    .container,
    .hero-container,
    .final-cta-container,
    .page-content-inner,
    .page-hero-content {
        width: calc(100% - 28px);
    }


    /* HERO */

    .hero-section {
        height: 675px;
        min-height: 675px;
    }

    .hero-content {
        padding-top: 55px;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-description {
        font-size: 9px;
    }

    .hero-feature {
        font-size: 7px;
    }


    /* GENERAL */

    .section-title {
        font-size: 24px;
    }


    /* SERVICES */

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 120px;
    }


    /* PROJECTS */

    .project-image {
        height: 165px;
    }


    /* INNER PAGE */

    .page-hero h1 {
        font-size: 34px;
    }
}


/* =========================================================
   28. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}


/* =========================================================
   29. SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #080908;
}

::-webkit-scrollbar-thumb {
    background: #4c411f;

    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--snmf-gold-dark);
}