/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #111111;
    background: #fffdf5;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

header {
    background: rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border-bottom: 1px solid #eee9d8;

    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;

    gap: 11px;

    font-size: 23px;
    font-weight: 900;

    letter-spacing: -0.8px;

    color: #111111;
}

.brand img {
    width: 39px;
    height: 39px;

    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;

    gap: 32px;
}

.nav-links a {
    font-size: 15px;

    font-weight: 600;

    color: #333333;

    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #111111;
}

.nav-cta {
    background: #ffd21c;

    color: #111111 !important;

    padding: 11px 20px;

    border-radius: 7px;

    font-weight: 800 !important;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.nav-cta:hover {
    background: #f5c400;

    transform: translateY(-2px);
}


/* =========================================================
   HERO — HOME PAGE
========================================================= */

.hero {
    min-height: 680px;

    display: flex;
    align-items: center;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            600px circle at 90% 5%,
            rgba(255, 210, 28, 0.30),
            transparent 65%
        ),
        radial-gradient(
            500px circle at 5% 85%,
            rgba(255, 225, 80, 0.18),
            transparent 65%
        ),
        #fffdf5;
}

.hero::after {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -190px;
    bottom: -260px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255, 210, 28, 0.18),
            transparent 70%
        );

    filter: blur(10px);

    pointer-events: none;
}

.hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(17, 17, 17, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(17, 17, 17, 0.035) 1px,
            transparent 1px
        );

    background-size: 50px 50px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.75),
            transparent 90%
        );

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.75),
            transparent 90%
        );

    pointer-events: none;
}

.hero-content {
    max-width: 850px;

    position: relative;

    z-index: 2;
}

.hero-label {
    display: inline-block;

    font-size: 13px;

    font-weight: 900;

    margin-bottom: 20px;

    color: #111111;

    text-transform: uppercase;

    letter-spacing: 2px;

    background: #ffd21c;

    padding: 7px 12px;

    border-radius: 4px;
}

.hero h1 {
    font-size: clamp(48px, 7vw, 82px);

    line-height: 1.01;

    letter-spacing: -4px;

    margin-bottom: 28px;

    color: #111111;

    max-width: 900px;
}

.hero p {
    max-width: 650px;

    font-size: 20px;

    color: #4b4b4b;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 12px;
}


/* =========================================================
   BUTTONS
========================================================= */

.primary-button {
    display: inline-block;

    background: #111111;

    color: #ffffff;

    padding: 15px 28px;

    border-radius: 7px;

    font-weight: 800;

    border: 2px solid #111111;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.primary-button:hover {
    background: #ffd21c;

    color: #111111;

    border-color: #ffd21c;

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px
        rgba(17, 17, 17, 0.12);
}

.secondary-button {
    display: inline-block;

    border: 2px solid #111111;

    padding: 13px 26px;

    border-radius: 7px;

    font-weight: 800;

    background: transparent;

    color: #111111;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.secondary-button:hover {
    background: #ffd21c;

    border-color: #ffd21c;

    transform: translateY(-2px);
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

section {
    padding: 110px 0;

    position: relative;
}

.section-heading {
    max-width: 700px;

    margin-bottom: 55px;
}

.section-heading.center {
    text-align: center;

    margin-left: auto;
    margin-right: auto;
}

.section-heading span {
    display: inline-block;

    font-size: 13px;

    text-transform: uppercase;

    letter-spacing: 2px;

    font-weight: 900;

    color: #111111;

    background: #ffd21c;

    padding: 6px 10px;

    border-radius: 4px;
}

.section-heading h2 {
    font-size: 48px;

    line-height: 1.08;

    letter-spacing: -2px;

    margin-top: 14px;

    color: #111111;
}

.section-heading p {
    margin-top: 18px;

    color: #555555;

    font-size: 18px;
}


/* =========================================================
   SERVICES
========================================================= */

.services {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.service-card {
    background: #ffffff;

    border: 1px solid #e7e2d3;

    padding: 35px;

    border-radius: 12px;

    position: relative;

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.service-card::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background: #ffd21c;
}

.service-card:hover {
    transform: translateY(-6px);

    border-color: #ffd21c;

    box-shadow:
        0 18px 45px
        rgba(17, 17, 17, 0.08);
}

.service-card h3 {
    font-size: 22px;

    margin-bottom: 12px;

    color: #111111;
}

.service-card p {
    color: #666666;
}


/* =========================================================
   SERVICE NUMBERS
   Hidden because you previously wanted them removed
========================================================= */

.service-number {
    display: none;
}


/* =========================================================
   ALTERNATE / YELLOW SECTION
========================================================= */

.gray-section {
    background:
        radial-gradient(
            500px circle at 10% 20%,
            rgba(255, 210, 28, 0.14),
            transparent 65%
        ),
        #fff8d9;
}


/* =========================================================
   INDUSTRIES
========================================================= */

.industries {
    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 12px;
}

.industry {
    padding: 13px 22px;

    border: 1px solid #ddd7c4;

    border-radius: 50px;

    background: #ffffff;

    color: #222222;

    font-weight: 600;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.industry:hover {
    background: #ffd21c;

    border-color: #ffd21c;

    transform: translateY(-2px);
}


/* =========================================================
   PAGE HERO — ABOUT / PROJECTS / CONTACT
========================================================= */

.page-hero {
    padding: 130px 0;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            600px circle at 85% 15%,
            rgba(255, 210, 28, 0.25),
            transparent 65%
        ),
        #fffdf5;
}

.page-hero::before {
    content: "";

    position: absolute;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(17, 17, 17, 0.03) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(17, 17, 17, 0.03) 1px,
            transparent 1px
        );

    background-size: 50px 50px;

    pointer-events: none;
}

.page-hero .container {
    position: relative;

    z-index: 1;
}


/* =========================================================
   PAGE HERO HEADING
========================================================= */

.page-hero h1 {
    display: block;

    max-width: 1000px;

    font-size: 65px;

    line-height: 1.05;

    letter-spacing: -3px;

    color: #111111;

    margin-top: 0;

    margin-bottom: 25px;
}


/* =========================================================
   ABOUT PAGE — HERO HIGHLIGHT
========================================================= */

/*
   The span inside the H1 receives the animation.
   The H1 itself remains a block element, preventing
   the About Us label from shifting beside it.
*/

.hero-highlight {
    display: inline;

    background-image:
        linear-gradient(
            to right,
            #ffd21c,
            #ffd21c
        );

    background-repeat: no-repeat;

    background-position: 0 88%;

    background-size: 0% 12px;

    transition:
        background-size 0.6s
        cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-highlight:hover {
    background-size: 100% 12px;
}


/* =========================================================
   PAGE HERO PARAGRAPH
========================================================= */

.page-hero p {
    max-width: 700px;

    margin-top: 0;

    font-size: 19px;

    color: #555555;
}


/* =========================================================
   ABOUT
========================================================= */

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.about-image {
    min-height: 450px;

    border-radius: 16px;

    background:
        radial-gradient(
            circle at 25% 25%,
            rgba(255, 210, 28, 0.65),
            transparent 30%
        ),
        radial-gradient(
            circle at 75% 75%,
            rgba(255, 231, 120, 0.50),
            transparent 35%
        ),
        #fff8d9;

    border: 1px solid #e8dfbd;

    box-shadow:
        0 20px 60px
        rgba(17, 17, 17, 0.07);
}

.about-text h2 {
    font-size: 48px;

    line-height: 1.1;

    letter-spacing: -2px;

    color: #111111;
}

.about-text p {
    margin-top: 20px;

    color: #555555;
}


/* =========================================================
   PROJECTS
========================================================= */

.projects {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.project-card {
    background: #ffffff;

    border: 1px solid #e7e2d3;

    border-radius: 12px;

    overflow: hidden;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.project-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 45px
        rgba(17, 17, 17, 0.08);

    border-color: #ffd21c;
}

.project-image {
    height: 250px;

    background:
        linear-gradient(
            135deg,
            #fff2a8,
            #fffbea
        );
}

.project-image img {
    width: 100%;

    height: 100%;

    object-fit: cover;
}

.project-info {
    padding: 25px;
}

.project-info span {
    font-size: 13px;

    color: #111111;

    background: #ffd21c;

    padding: 4px 8px;

    border-radius: 3px;

    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.project-info h3 {
    margin-top: 14px;

    font-size: 22px;

    color: #111111;
}

.project-info p {
    margin-top: 10px;

    color: #666666;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-grid {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 80px;

    align-items: start;
}

.contact-info h2 {
    font-size: 42px;

    line-height: 1.1;

    color: #111111;
}

.contact-info p {
    margin-top: 20px;

    color: #555555;
}

.contact-details {
    margin-top: 35px;
}

.contact-detail {
    margin-bottom: 20px;
}

.contact-detail strong {
    display: block;

    margin-bottom: 3px;

    color: #111111;
}

.contact-detail span {
    color: #666666;
}


/* =========================================================
   TALLY FORM
========================================================= */

.tally-container {
    background: #ffffff;

    border: 1px solid #e4dfcf;

    border-radius: 14px;

    padding: 10px;

    box-shadow:
        0 15px 50px
        rgba(17, 17, 17, 0.07);

    overflow: hidden;
}

.tally-container iframe {
    display: block;

    width: 100%;

    min-height: 650px;

    border: none;

    border-radius: 8px;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            500px circle at 15% 20%,
            rgba(255, 210, 28, 0.25),
            transparent 65%
        ),
        radial-gradient(
            500px circle at 85% 80%,
            rgba(255, 225, 80, 0.18),
            transparent 65%
        ),
        #111111;

    color: #ffffff;

    text-align: center;
}

.cta-section h2 {
    font-size: 55px;

    line-height: 1.05;

    letter-spacing: -2px;

    color: #ffffff;
}

.cta-section p {
    max-width: 600px;

    margin: 20px auto 30px;

    color: #d6d6d6;
}

.cta-section .primary-button {
    background: #ffd21c;

    color: #111111;

    border-color: #ffd21c;
}

.cta-section .primary-button:hover {
    background: #ffffff;

    border-color: #ffffff;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    background: #111111;

    color: #cccccc;

    padding: 50px 0 25px;
}

.footer-grid {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 60px;
}

.footer-logo {
    color: #ffd21c;

    font-size: 24px;

    font-weight: 900;
}

.footer-description {
    max-width: 350px;

    margin-top: 15px;

    color: #999999;
}

.footer-column h4 {
    color: #ffffff;

    margin-bottom: 15px;
}

.footer-column a {
    display: block;

    margin-bottom: 8px;

    color: #999999;

    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #ffd21c;
}

.footer-bottom {
    margin-top: 45px;

    padding-top: 20px;

    border-top: 1px solid #333333;

    font-size: 13px;

    color: #888888;
}


/* =========================================================
   MOBILE — HEADER
========================================================= */

@media (max-width: 768px) {

    .navbar {
        height: 70px;
    }

    .brand {
        font-size: 19px;
    }

    .brand img {
        width: 34px;
        height: 34px;
    }

    .nav-links {
        gap: 12px;
    }

    .nav-links a:not(.nav-cta) {
        display: none;
    }

    .nav-cta {
        padding: 9px 15px;

        font-size: 14px !important;
    }
}


/* =========================================================
   MOBILE — HOME HERO
========================================================= */

@media (max-width: 768px) {

    .hero {
        min-height: 600px;
    }

    .hero h1 {
        font-size: clamp(44px, 12vw, 62px);

        letter-spacing: -2.5px;
    }

    .hero p {
        font-size: 18px;

        margin-bottom: 28px;
    }

    .hero-label {
        font-size: 10px;

        letter-spacing: 1.5px;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }
}


/* =========================================================
   MOBILE — GENERAL
========================================================= */

@media (max-width: 768px) {

    section {
        padding: 75px 0;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 38px;

        letter-spacing: -1.5px;
    }

    .section-heading p {
        font-size: 16px;
    }
}


/* =========================================================
   MOBILE — SERVICES
========================================================= */

@media (max-width: 768px) {

    .services {
        grid-template-columns: 1fr;

        gap: 16px;
    }

    .service-card {
        padding: 28px;
    }
}


/* =========================================================
   MOBILE — ABOUT
========================================================= */

@media (max-width: 768px) {

    .about-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .about-image {
        min-height: 300px;
    }

    .about-text h2 {
        font-size: 38px;

        letter-spacing: -1.5px;
    }
}


/* =========================================================
   MOBILE — PAGE HERO
========================================================= */

@media (max-width: 768px) {

    .page-hero {
        padding: 90px 0;
    }

    .page-hero h1 {
        font-size: 48px;

        letter-spacing: -2px;

        line-height: 1.05;
    }

    .page-hero p {
        font-size: 17px;
    }

    .hero-highlight {
        background-size: 0% 9px;
    }

    .hero-highlight:hover {
        background-size: 100% 9px;
    }
}


/* =========================================================
   MOBILE — PROJECTS
========================================================= */

@media (max-width: 768px) {

    .projects {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .project-image {
        height: 220px;
    }
}


/* =========================================================
   MOBILE — CONTACT
========================================================= */

@media (max-width: 768px) {

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .contact-info h2 {
        font-size: 38px;

        letter-spacing: -1.5px;
    }

    .tally-container {
        padding: 5px;

        border-radius: 10px;
    }

    .tally-container iframe {
        min-height: 650px;
    }
}


/* =========================================================
   MOBILE — CTA
========================================================= */

@media (max-width: 768px) {

    .cta-section h2 {
        font-size: 40px;

        letter-spacing: -1.5px;
    }

    .cta-section p {
        font-size: 16px;
    }
}


/* =========================================================
   MOBILE — FOOTER
========================================================= */

@media (max-width: 768px) {

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .footer-bottom {
        margin-top: 35px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .container {
        width: 92%;
    }

    .hero {
        min-height: 560px;
    }

    .hero h1 {
        font-size: 43px;

        letter-spacing: -2px;
    }

    .hero p {
        font-size: 17px;
    }

    .page-hero h1 {
        font-size: 42px;

        letter-spacing: -2px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .about-text h2 {
        font-size: 34px;
    }

    .contact-info h2 {
        font-size: 34px;
    }

    .cta-section h2 {
        font-size: 36px;
    }

    .brand {
        font-size: 17px;

        gap: 7px;
    }

    .brand img {
        width: 30px;
        height: 30px;
    }

    .nav-cta {
        padding: 8px 12px;

        font-size: 13px !important;
    }
}

/* =========================================================
   HOME PAGE — HERO HOVER EFFECT
========================================================= */

.hero h1 {
    position: relative;
    display: inline-block;
    cursor: default;

    transition:
        transform 0.3s ease;
}

.hero h1:hover {
    transform: translateX(8px);
}


/* Yellow highlight */

.hero h1::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 4px;

    width: 0;
    height: 12px;

    background: #ffd21c;

    z-index: -1;

    transition:
        width 0.35s ease;
}

.hero h1:hover::after {
    width: 100%;
}