:root {
    --primary: #B7653C;
    --primary-dark: #8F4933;
    --primary-light: #EAD8CC;

    --sand: #D8C6B3;
    --sand-light: #E8DED0;

    --charcoal: #242424;
    --charcoal-dark: #171717;
    --charcoal-soft: #343434;

    --text: #292725;
    --text-soft: #625C56;
    --muted: #817970;

    --cream: #F3EEE6;
    --cream-dark: #EAE2D8;
    --section: #EEE8DF;
    --card: #F8F4EE;

    --border: #DDD3C8;
}


/* =====================================================
   GLOBAL
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.section-padding {
    padding: 110px 0;
}


/* =====================================================
   NAVBAR
===================================================== */

.custom-navbar {
    background: rgba(243, 238, 230, 0.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(36, 36, 36, 0.08);
    padding: 12px 0;
    position: relative;
    z-index: 1000;
}


/* REAL LOGO */

.company-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--charcoal) !important;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.4px;
}

.nav-link {
    color: #5D5752 !important;
    margin-left: 17px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.25s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
}


/* =====================================================
   BUTTONS
===================================================== */

.btn-primary-custom {
    background: var(--primary);
    color: #F3EEE6;
    border: 1px solid var(--primary);
    padding: 12px 25px;
    border-radius: 7px;
    font-weight: 600;
    transition: 0.25s ease;
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #F3EEE6;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(143, 73, 51, 0.18);
}


/* =====================================================
   HERO
===================================================== */

.hero-section {
    position: relative;
    min-height: 92vh;

    display: flex;
    align-items: center;

    overflow: hidden;

    padding-top: 15px;
    padding-bottom: 90px;

    background:
        radial-gradient(
            circle at 82% 20%,
            rgba(183, 101, 60, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(216, 198, 179, 0.25),
            transparent 35%
        ),
        var(--cream);
}

.hero-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(36, 36, 36, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(36, 36, 36, 0.025) 1px,
            transparent 1px
        );

    background-size: 75px 75px;

    pointer-events: none;
}

.hero-section::after {
    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    right: -250px;
    top: -200px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(183, 101, 60, 0.14),
            transparent 68%
        );

    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section .row {
    padding-top: 0;
}

.hero-section h1 {
    font-family: "DM Sans", sans-serif;

    font-size: clamp(43px, 5vw, 70px);

    line-height: 1.06;

    letter-spacing: -3px;

    font-weight: 700;

    color: var(--charcoal);

    max-width: 850px;

    margin: 0;
    padding: 0;
}

.hero-section h1 span {
    color: var(--primary);
}

.hero-text {
    max-width: 640px;

    color: var(--text-soft);

    font-size: 18px;

    line-height: 1.7;

    margin-top: 26px;
}

.hero-buttons {
    margin-top: 35px;
}

.hero-buttons .btn-outline-light {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid #C9BFB4;
    border-radius: 7px;
    padding: 12px 24px;
}

.hero-buttons .btn-outline-light:hover {
    background: var(--sand-light);
    border-color: var(--primary);
    color: var(--primary-dark);
}

.hero-trust {
    display: flex;
    gap: 55px;
}

.hero-trust div {
    display: flex;
    flex-direction: column;
}

.hero-trust strong {
    font-size: 17px;
    font-weight: 700;
    color: var(--charcoal);
}

.hero-trust small {
    font-size: 12px;
    color: var(--muted);
}


/* =====================================================
   HERO CARD
===================================================== */

.hero-card {
    background: var(--card);

    border: 1px solid var(--border);

    border-radius: 22px;

    padding: 25px;

    box-shadow:
        0 25px 70px rgba(36, 36, 36, 0.09);
}

.hero-card-top {
    color: var(--text-soft);
    font-size: 13px;
}

.status-dot {
    width: 7px;
    height: 7px;

    display: inline-block;

    border-radius: 50%;

    background: var(--primary);

    margin-right: 8px;
}

.network-visual {
    height: 340px;
    position: relative;
}

.center-node {
    position: absolute;

    width: 82px;
    height: 82px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--charcoal);

    color: var(--sand-light);

    font-size: 20px;

    font-weight: 800;

    box-shadow:
        0 18px 40px rgba(36, 36, 36, 0.18);

    animation: float 4s ease-in-out infinite;
}

.network-node {
    position: absolute;

    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: var(--cream);

    border: 1px solid #D7CDC1;

    color: var(--primary);

    font-size: 20px;

    box-shadow:
        0 8px 22px rgba(36, 36, 36, 0.06);
}

.node-1 {
    top: 50px;
    left: 30px;
}

.node-2 {
    top: 30px;
    right: 40px;
}

.node-3 {
    bottom: 35px;
    left: 70px;
}

.node-4 {
    bottom: 50px;
    right: 50px;
}

.network-line {
    position: absolute;

    height: 1px;

    background: #CDBFB0;

    transform-origin: left center;
}

.line-1 {
    width: 190px;
    top: 90px;
    left: 80px;
    transform: rotate(25deg);
}

.line-2 {
    width: 180px;
    top: 100px;
    right: 75px;
    transform: rotate(155deg);
}

.line-3 {
    width: 170px;
    bottom: 95px;
    left: 90px;
    transform: rotate(-25deg);
}

.hero-card-bottom {
    display: flex;
    justify-content: space-between;

    border-top: 1px solid var(--border);

    padding-top: 18px;

    color: var(--muted);

    font-size: 13px;
}


/* =====================================================
   HEADINGS
===================================================== */

.section-label {
    color: var(--primary);

    font-size: 11px;

    letter-spacing: 2.4px;

    font-weight: 700;

    margin-bottom: 15px;
}

h2 {
    font-size: clamp(34px, 4vw, 52px);

    line-height: 1.12;

    letter-spacing: -1.8px;

    font-weight: 700;

    color: var(--charcoal);
}

.section-heading {
    max-width: 750px;
    margin: auto;
}

.section-heading p {
    color: var(--text-soft);
    margin-top: 20px;
}

.lead-text {
    font-size: 18px;
    color: var(--text-soft);
}

.about-description {
    color: var(--text-soft);
}


/* =====================================================
   ABOUT
===================================================== */

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-box {
    padding: 30px;

    background: var(--card);

    border: 1px solid var(--border);

    border-radius: 15px;

    transition: 0.25s ease;
}

.about-box:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(36, 36, 36, 0.06);
}

.about-box h4 {
    margin-top: 20px;

    font-size: 18px;

    font-weight: 600;

    color: var(--charcoal);
}

.about-box p {
    color: var(--text-soft);
    font-size: 14px;
}

.icon-box {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    background: var(--primary-light);

    color: var(--primary-dark);

    font-size: 21px;
}

.text-link {
    display: inline-flex;
    gap: 9px;

    color: var(--primary-dark);

    font-weight: 600;

    margin-top: 15px;
}


/* =====================================================
   SERVICES
===================================================== */

.services-section {
    background: var(--section);
}

.service-card {
    position: relative;

    height: 100%;

    padding: 35px;

    background: var(--card);

    border: 1px solid var(--border);

    border-radius: 17px;

    overflow: hidden;

    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 22px 50px rgba(36, 36, 36, 0.07);

    border-color: #CDBFB0;
}

.service-icon {
    width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: var(--primary-light);

    color: var(--primary-dark);

    font-size: 23px;

    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 21px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--charcoal);
}

.service-card p {
    color: var(--text-soft);
    font-size: 14px;
}

.service-number {
    position: absolute;

    right: 25px;
    bottom: 10px;

    font-size: 60px;

    font-weight: 800;

    color: rgba(183, 101, 60, 0.06);
}


/* =====================================================
   TECHNOLOGY
===================================================== */

.skill-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;

    margin-top: 30px;
}

.skill-list div {
    display: flex;
    align-items: center;
    gap: 10px;

    font-weight: 600;
    color: var(--text);
}

.skill-list i {
    color: var(--primary);
}

.talent-panel {
    background: var(--card);

    border: 1px solid var(--border);

    border-radius: 21px;

    padding: 40px;

    box-shadow:
        0 20px 55px rgba(36, 36, 36, 0.06);
}

.talent-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.talent-panel-header i {
    font-size: 30px;
    color: var(--primary);
}

.small-label {
    color: var(--primary-dark);

    font-size: 11px;

    letter-spacing: 2px;
}

.talent-panel-header h4 {
    color: var(--charcoal);

    margin-top: 7px;

    font-weight: 600;
}

.technology-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 35px;
}

.technology-tags span {
    padding: 9px 13px;

    background: var(--cream);

    border: 1px solid var(--border);

    border-radius: 8px;

    font-size: 13px;

    color: #625C56;

    transition: 0.2s ease;
}

.technology-tags span:hover {
    background: var(--primary-light);

    border-color: #CDAE9E;

    color: var(--primary-dark);
}

.technology-tags .featured-tech {
    background: var(--primary);

    border-color: var(--primary);

    color: var(--cream);

    font-weight: 600;
}


/* =====================================================
   WHY US
===================================================== */

.dark-section {
    background: var(--charcoal);
    color: var(--cream);
}

.dark-section .section-label {
    color: #D59A7B;
}

.dark-section h2 {
    color: var(--cream);
}

.dark-section .section-heading p {
    color: rgba(243, 238, 230, 0.62);
}

.why-card {
    height: 100%;

    padding: 30px;

    border: 1px solid rgba(243, 238, 230, 0.11);

    border-radius: 16px;

    background: rgba(243, 238, 230, 0.035);

    transition: 0.25s ease;
}

.why-card:hover {
    background: rgba(243, 238, 230, 0.07);
    transform: translateY(-5px);
}

.why-card > span {
    color: #D59A7B;
    font-size: 12px;
}

.why-card i {
    display: block;

    font-size: 28px;

    margin: 30px 0 20px;

    color: #D59A7B;
}

.why-card h4 {
    color: var(--cream);

    font-size: 18px;

    font-weight: 600;
}

.why-card p {
    color: rgba(243, 238, 230, 0.55);

    font-size: 14px;
}


/* =====================================================
   PROCESS
===================================================== */

.process-wrapper {
    max-width: 850px;

    margin: 70px auto 0;
}

.process-step {
    display: flex;

    gap: 30px;

    align-items: flex-start;
}

.process-number {
    min-width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--primary-light);

    color: var(--primary-dark);

    font-weight: 700;
}

.process-step h4 {
    margin-bottom: 8px;

    font-weight: 600;

    color: var(--charcoal);
}

.process-step p {
    color: var(--text-soft);
    margin: 0;
}

.process-line {
    width: 1px;

    height: 45px;

    background: var(--border);

    margin-left: 27px;
}


/* =====================================================
   CTA
===================================================== */

.cta-section {
    padding: 40px 0 110px;
}

.cta-box {
    padding: 65px;

    border-radius: 23px;

    color: var(--cream);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(213, 154, 123, 0.22),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #2B2B2B,
            #3A302B
        );
}

.cta-box .section-label {
    color: #D59A7B;
}

.cta-box h2 {
    color: var(--cream);
    margin-bottom: 15px;
}

.cta-box p {
    color: rgba(243, 238, 230, 0.68);
}


/* =====================================================
   CONTACT
===================================================== */

.contact-section {
    background: var(--section);
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;

    gap: 18px;

    margin-bottom: 25px;
}

.contact-icon {
    min-width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    background: var(--primary-light);

    color: var(--primary-dark);
}

.contact-item div:last-child {
    display: flex;
    flex-direction: column;
}

.contact-item span {
    color: var(--muted);
    font-size: 12px;
}

.contact-item a,
.contact-item strong {
    color: var(--text);
    font-size: 15px;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-form-card {
    background: var(--card);

    padding: 40px;

    border-radius: 20px;

    border: 1px solid var(--border);

    box-shadow:
        0 20px 60px rgba(36, 36, 36, 0.06);
}

.contact-form-card h3 {
    color: var(--charcoal);

    font-size: 25px;

    font-weight: 600;
}

.contact-form-card > p {
    color: var(--text-soft);
}

.form-control,
.form-select {
    padding: 13px 15px;

    border-color: var(--border);

    border-radius: 8px;

    background: var(--cream);

    color: var(--text);

    font-family: "DM Sans", sans-serif;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);

    box-shadow:
        0 0 0 3px rgba(183, 101, 60, 0.10);
}

label {
    font-size: 13px;

    font-weight: 600;

    margin-bottom: 7px;
}


/* =====================================================
   FOOTER
===================================================== */

footer {
    background: var(--charcoal-dark);

    color: var(--cream);

    padding: 70px 0 25px;
}

.footer-brand {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--cream);

    font-weight: 700;

    font-size: 18px;
}


/* REAL FOOTER LOGO */

.footer-logo {
    width: 50px;
    height: 50px;

    object-fit: contain;

    display: block;

    flex-shrink: 0;
}

.footer-description {
    max-width: 400px;

    color: rgba(243, 238, 230, 0.55);

    margin-top: 20px;
}

footer h5 {
    font-size: 14px;

    margin-bottom: 20px;

    font-weight: 600;
}

footer a {
    display: block;

    color: rgba(243, 238, 230, 0.56);

    margin-bottom: 10px;

    font-size: 13px;

    transition: 0.2s ease;
}

footer a:hover {
    color: #D59A7B;
}

.footer-location {
    color: rgba(243, 238, 230, 0.55);

    font-size: 13px;
}

footer hr {
    border-color: rgba(243, 238, 230, 0.10);

    margin: 45px 0 25px;
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    color: rgba(243, 238, 230, 0.35);

    font-size: 12px;
}


/* =====================================================
   ANIMATION
===================================================== */

@keyframes float {

    0% {
        transform: translate(-50%, -50%);
    }

    50% {
        transform: translate(-50%, calc(-50% - 8px));
    }

    100% {
        transform: translate(-50%, -50%);
    }
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .navbar-collapse {
        background: var(--cream);

        padding: 20px;

        margin-top: 15px;

        border-radius: 12px;

        box-shadow:
            0 15px 35px rgba(36, 36, 36, 0.08);
    }

    .nav-link {
        margin: 5px 0;
    }

    .hero-section {
        min-height: auto;

        padding-top: 20px;

        padding-bottom: 80px;
    }

    .hero-section .row {
        padding-top: 0;
    }

    .hero-trust {
        gap: 25px;
    }

    .cta-box {
        flex-direction: column;

        align-items: flex-start;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .section-padding {
        padding: 75px 0;
    }

    .hero-section {
        min-height: auto;

        padding-top: 20px;

        padding-bottom: 75px;
    }

    .hero-section .row {
        padding-top: 0;
    }

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

        line-height: 1.08;

        letter-spacing: -1.8px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-buttons {
        display: flex;

        flex-direction: column;

        gap: 12px;
    }

    .hero-buttons .ms-lg-2 {
        margin-left: 0 !important;
    }

    .hero-trust {
        flex-wrap: wrap;

        gap: 20px 30px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .skill-list {
        grid-template-columns: 1fr;
    }

    .talent-panel {
        padding: 25px;
    }

    .cta-box {
        padding: 35px 25px;
    }

    .contact-form-card {
        padding: 25px;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .company-logo,
    .footer-logo {
        width: 44px;
        height: 44px;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 420px) {

    .hero-section h1 {
        font-size: 36px;
    }

    .hero-trust {
        gap: 15px;
    }

    h2 {
        font-size: 34px;
    }

    .company-logo,
    .footer-logo {
        width: 42px;
        height: 42px;
    }
}