/* ===============================
   RESET
================================ */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

section {
    padding: var(--section-padding) 0;
}

.container {
    max-width: 1320px;
}


/* ======================================
   HEADER
====================================== */

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transition: .4s;
}

#header.scrolled {
    background: #fff;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .07);
}

/*=====================================
TOP BAR
======================================*/

.top-bar {

    background: var(--dark);
    color: #fff;

    font-size: .9rem;

}

.top-bar-wrapper {

    display: flex;

    justify-content: space-between;

    align-items: center;

    min-height: 42px;

}

.top-bar-info {

    display: flex;

    align-items: center;

    gap: 25px;

}

.top-bar-info a,
.top-bar-info span {

    color: #fff;

    display: flex;

    align-items: center;

    gap: 8px;

}

.top-bar-info a:hover {

    color: var(--primary);

}

.top-social {

    display: flex;

    gap: 10px;

}

.top-social a {

    width: 34px;

    height: 34px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    transition: .35s;

}

.top-social a:hover {

    background: var(--primary);

    transform: translateY(-3px);

}

.navbar {

    height: 90px;

}

.logo {

    height: 52px;

}

.navbar-nav {

    gap: 14px;

}

.nav-link {

    color: var(--dark);
    font-weight: 600;
    position: relative;
    transition: .35s;

}

.nav-link::after {

    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--primary);

    transition: .35s;

}

.nav-link:hover {

    color: var(--primary);

}

.nav-link:hover::after,
.nav-link.active::after {

    width: 100%;

}

.nav-link.active {

    color: var(--primary);

}

/* ======================================
BUTTONS
====================================== */

.btn-quote {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 28px;

    background: var(--primary);

    color: #fff;

    border-radius: 50px;

    font-weight: 700;

    transition: .35s;

}

.btn-quote:hover {

    background: var(--secondary);

    color: #fff;

    transform: translateY(-3px);

}

.btn-portal {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 12px 24px;

    border: 2px solid var(--secondary);

    color: var(--secondary);

    border-radius: 50px;

    font-weight: 700;

    transition: .35s;

}

.btn-portal:hover {

    background: var(--secondary);

    color: #fff;

}

/* ======================================
OFFCANVAS
====================================== */

.offcanvas {

    width: 320px;

}

.mobile-nav {

    display: flex;

    flex-direction: column;

    gap: 18px;

}

.mobile-nav a {

    color: var(--dark);

    font-weight: 600;

    font-size: 1.05rem;

}

/* ======================================================
   HERO SECTION
====================================================== */

.hero {
    position: relative;
    overflow: hidden;
    padding: 170px 0 120px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
}

/* ===========================
BACKGROUND
=========================== */

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .25;
}

.blur-1 {
    width: 420px;
    height: 420px;
    background: var(--primary);
    top: -120px;
    left: -120px;
}

.blur-2 {
    width: 450px;
    height: 450px;
    background: var(--secondary);
    right: -180px;
    bottom: -150px;
}

.circle {
    position: absolute;
    border: 1px solid rgba(11, 107, 111, .08);
    border-radius: 50%;
}

.circle-1 {
    width: 520px;
    height: 520px;
    right: -180px;
    top: 80px;
}

.circle-2 {
    width: 320px;
    height: 320px;
    left: -120px;
    bottom: 60px;
}

/* ===========================
CONTENT
=========================== */

.hero .container {
    position: relative;
    z-index: 2;
}

/* ===========================
TRUST RIBBON
=========================== */

.hero-ribbon {

    display: flex;
    justify-content: center;
    margin-bottom: 60px;

}

.hero-ribbon-content {

    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;

    padding: 12px 24px;

    border-radius: 100px;

    background: #fff;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .06);

}

.hero-ribbon span {

    display: flex;
    align-items: center;
    gap: 8px;

    font-size: .92rem;
    font-weight: 600;
    color: var(--dark);

}

.hero-ribbon i {

    color: var(--primary);

}

/* ===========================
BADGE
=========================== */

.hero-badge {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 18px;

    background: #fff;

    border: 1px solid rgba(246, 139, 0, .2);

    border-radius: 50px;

    color: var(--primary);

    font-weight: 700;

    margin-bottom: 28px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);

}

/* ===========================
HEADINGS
=========================== */

.hero h1 {

    font-size: 4.4rem;
    font-weight: 800;
    line-height: 1.08;
    color: var(--secondary);

    margin-bottom: 20px;

}

.hero h1 span {

    color: var(--dark);

}

.hero h2 {

    font-size: 3rem;
    font-weight: 800;

    margin-bottom: 28px;

    color: var(--dark);

}

.hero h2 span {

    color: var(--primary);

}

/* ===========================
TEXT
=========================== */

.hero p {

    max-width: 600px;

    font-size: 1.1rem;

    color: #5f6c7b;

    line-height: 1.9;

    margin-bottom: 40px;

}

/* ===========================
BUTTONS
=========================== */

.hero-buttons {

    display: flex;
    flex-wrap: wrap;
    gap: 20px;

    margin-bottom: 40px;

}

.btn-outline-brand {

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 28px;

    border: 2px solid var(--secondary);

    border-radius: 50px;

    color: var(--secondary);

    font-weight: 700;

    transition: .35s;

}

.btn-outline-brand:hover {

    background: var(--secondary);

    color: #fff;

}

.btn-outline-brand i {

    transition: .35s;

}

.btn-outline-brand:hover i {

    transform: translateX(5px);

}

/* ===========================
RATING
=========================== */

.hero-rating {

    display: flex;
    align-items: center;
    gap: 15px;

}

.hero-rating .stars {

    color: #FFC107;

    font-size: 1.3rem;

    letter-spacing: 3px;

}

.hero-rating span {

    color: #6b7280;

    font-weight: 600;

}

/* ===========================
SHOWCASE
=========================== */

.hero-showcase {

    position: relative;
    text-align: center;

}

.hero-showcase img {

    width: 100%;
    max-width: 620px;

    margin: auto;

    animation: floatImage 6s ease-in-out infinite;

}

/* ===========================
FLOATING CARDS
=========================== */

.floating-card {

    position: absolute;

    width: 170px;

    background: #fff;

    padding: 18px;

    border-radius: 20px;

    box-shadow: 0 30px 60px rgba(15, 23, 42, .12);

    font-size: .9rem;

    font-weight: 600;

    color: var(--dark);

    animation: floatCard 5s ease-in-out infinite;

}

.floating-card strong {

    display: block;

    margin: 8px 0;

    font-size: 1rem;

    color: var(--primary);

}

.card-one {

    top: 25%;

    left: -30px;

}

.card-two {

    right: -20px;

    top: 42%;

    animation-delay: 1s;

}

.card-three {

    bottom: 0;

    left: 40px;

    animation-delay: 2s;

}

/* ===========================
BOTTOM FEATURES
=========================== */

.hero-bottom {

    margin-top: 90px;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;

}

.feature-box {

    background: #fff;

    border-radius: 22px;

    padding: 25px;

    display: flex;
    align-items: center;
    gap: 15px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, .06);

    transition: .35s;

}

.feature-box:hover {

    transform: translateY(-8px);

}

.feature-box i {

    width: 60px;
    height: 60px;

    border-radius: 18px;

    background: rgba(246, 139, 0, .1);

    color: var(--primary);

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 1.4rem;

}

.feature-box span {

    font-weight: 700;
    color: var(--dark);

}

/* ===========================
ANIMATIONS
=========================== */

@keyframes floatImage {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-15px);

    }

}

@keyframes floatCard {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

}

/* ======================================================
   SERVICES SHOWCASE CAROUSEL
====================================================== */

.services-showcase {
    padding: 110px 0;
    background: #fff;
    overflow: hidden;
}

.services-showcase-carousel {
    position: relative;
    margin-top: 45px;
}


/* SLIDE */

.service-showcase-slide {
    position: relative;
    height: 620px;
    overflow: hidden;
}

.service-showcase-slide > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* DARK OVERLAY */

.service-showcase-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10, 45, 70, .92) 0%,
            rgba(10, 45, 70, .70) 38%,
            rgba(10, 45, 70, .18) 75%,
            rgba(10, 45, 70, .05) 100%
        );
}


/* CONTENT */

.service-showcase-content {
    position: absolute;
    left: 8%;
    bottom: 12%;

    width: min(580px, 70%);

    color: #fff;
}

.showcase-number {
    display: block;
    margin-bottom: 25px;

    font-family: "Cascadia Mono", monospace;
    font-size: .7rem;
    letter-spacing: .12em;
}

.service-showcase-content .category-label {
    color: var(--primary);
}

.service-showcase-content h3 {
    margin: 10px 0 18px;

    color: #fff;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: .98;
}

.service-showcase-content p {
    max-width: 500px;
    margin-bottom: 30px;

    color: rgba(255,255,255,.82);
    font-size: .95rem;
    line-height: 1.8;
}


/* BUTTON */

.showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    padding: 14px 20px;

    background: var(--primary);
    color: #fff;

    font-size: .7rem;
    font-weight: 700;

    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .04em;

    transition: .3s ease;
}

.showcase-btn:hover {
    background: var(--secondary);
    color: #fff;
}

.showcase-btn i {
    transition: transform .3s ease;
}

.showcase-btn:hover i {
    transform: translate(3px, -3px);
}


/* CONTROLS */

.showcase-control {
    width: auto;
    opacity: 1;
    top: auto;
    bottom: 7%;

    z-index: 5;
}

.carousel-control-prev.showcase-control {
    left: auto;
    right: 130px;
}

.carousel-control-next.showcase-control {
    right: 65px;
}

.showcase-arrow {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.4);

    color: #fff;

    transition: .3s ease;
}

.showcase-control:hover .showcase-arrow {
    background: var(--primary);
    border-color: var(--primary);
}


/* INDICATORS */

.services-showcase-carousel .carousel-indicators {
    position: absolute;

    left: auto;
    right: 65px;
    bottom: 30px;

    width: auto;
    margin: 0;

    z-index: 5;

    justify-content: flex-start;
}

.services-showcase-carousel .carousel-indicators button {
    width: 30px;
    height: 2px;

    margin: 0 4px;

    border: 0;

    opacity: .45;
}

.services-showcase-carousel .carousel-indicators button.active {
    opacity: 1;
}

/* ======================================================
ABOUT
====================================================== */

.about {

    padding: 120px 0;

    position: relative;

}

.section-title span {

    display: inline-block;

    color: var(--primary);

    font-weight: 700;

    letter-spacing: 2px;

    margin-bottom: 18px;

}

.section-title h2 {

    font-size: 3rem;

    font-weight: 800;

    color: var(--dark);

    line-height: 1.2;

    margin-bottom: 25px;

}

.section-title h2 span {

    color: var(--secondary);

    display: inline;

}

.about-text {

    color: #667085;

    line-height: 1.9;

    margin-bottom: 20px;

}

.about-images {

    position: relative;

    padding-right: 70px;

}

.about-main-image {

    overflow: hidden;

    border-radius: 30px;

    box-shadow: 0 30px 80px rgba(15, 23, 42, .12);

}

.about-main-image img {

    width: 100%;

    transition: .5s;

}

.about-main-image:hover img {

    transform: scale(1.05);

}

.about-card {

    position: absolute;

    right: 0;

    bottom: 50px;

    background: #fff;

    width: 280px;

    border-radius: 22px;

    padding: 22px;

    display: flex;

    align-items: center;

    gap: 18px;

    box-shadow: 0 25px 60px rgba(15, 23, 42, .12);

}

.about-card-icon {

    width: 70px;

    height: 70px;

    border-radius: 20px;

    background: rgba(246, 139, 0, .1);

    color: var(--primary);

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 1.8rem;

}

.about-card h4 {

    font-size: 1.15rem;

    color: var(--dark);

    margin-bottom: 5px;

}

.about-card p {

    margin: 0;

    color: #667085;

}

.about-features {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 18px;

    margin: 40px 0;

}

.feature-item {

    display: flex;

    align-items: center;

    gap: 12px;

    font-weight: 600;

    color: var(--dark);

}

.feature-item i {

    color: var(--primary);

    font-size: 1.1rem;

}

.about-buttons {

    display: flex;

    gap: 18px;

    flex-wrap: wrap;

}

/*==================================================
PROCESS
==================================================*/

.process {

    padding: 120px 0;

    background: #f8fbfc;

    position: relative;

}

.section-description {

    max-width: 650px;

    margin: 25px auto 70px;

    color: #667085;

}

.process-wrapper {

    position: relative;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}

.process-line {

    position: absolute;

    top: 50px;

    left: 12%;

    right: 12%;

    height: 3px;

    background: linear-gradient(to right,
            var(--primary),
            var(--secondary));

    z-index: 1;

}

.process-item {

    position: relative;

    z-index: 2;

    background: #fff;

    border-radius: 28px;

    padding: 40px 30px;

    text-align: center;

    box-shadow: 0 20px 50px rgba(15, 23, 42, .08);

    transition: .35s;

}

.process-item:hover {

    transform: translateY(-12px);

}

.process-icon {

    width: 90px;

    height: 90px;

    margin: auto;

    margin-bottom: 25px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background: linear-gradient(135deg,
            var(--primary),
            #ffb43d);

    color: #fff;

    font-size: 2rem;

    box-shadow: 0 15px 35px rgba(246, 139, 0, .35);

}

.process-item h4 {

    color: var(--dark);

    font-weight: 700;

    margin-bottom: 15px;

}

.process-item p {

    color: #667085;

    line-height: 1.8;

}

/*==================================================
SERVICES
==================================================*/

.services {

    padding: 120px 0;

}

.service-card {

    background: #fff;

    border-radius: 30px;

    overflow: hidden;

    box-shadow: 0 25px 60px rgba(15, 23, 42, .08);

    transition: .4s;

    height: 100%;

}

.service-card:hover {

    transform: translateY(-12px);

}

.service-image {

    overflow: hidden;

    height: 250px;

}

.service-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .5s;

}

.service-card:hover img {

    transform: scale(1.08);

}

.service-content {

    padding: 35px;

}

.service-icon {

    width: 75px;

    height: 75px;

    border-radius: 22px;

    display: flex;

    justify-content: center;

    align-items: center;

    background: rgba(246, 139, 0, .1);

    color: var(--primary);

    font-size: 1.8rem;

    margin-bottom: 25px;

}

.service-content h4 {

    font-weight: 700;

    color: var(--dark);

    margin-bottom: 18px;

}

.service-content p {

    color: #667085;

    line-height: 1.8;

    margin-bottom: 25px;

}

.service-content a {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    font-weight: 700;

    color: var(--secondary);

    transition: .35s;

}

.service-content a i {

    transition: .35s;

}

.service-content a:hover {

    color: var(--primary);

}

.service-content a:hover i {

    transform: translateX(8px);

}

/*==================================================
PORTFOLIO
==================================================*/

.portfolio {

    padding: 120px 0;

    background: #f8fbfc;

}

.portfolio-filter {

    display: flex;

    justify-content: center;

    gap: 15px;

    flex-wrap: wrap;

    margin-bottom: 60px;

}

.portfolio-filter button {

    border: none;

    background: #fff;

    padding: 14px 26px;

    border-radius: 50px;

    font-weight: 600;

    color: var(--dark);

    box-shadow: 0 12px 35px rgba(15, 23, 42, .06);

    transition: .35s;

}

.portfolio-filter button.active,
.portfolio-filter button:hover {

    background: var(--primary);

    color: #fff;

}

.portfolio-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

}

.portfolio-item {

    position: relative;

    overflow: hidden;

    border-radius: 28px;

    min-height: 330px;

}

.portfolio-item.large {

    grid-row: span 2;

    min-height: 690px;

}

.portfolio-item img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: .6s;

}

.portfolio-item:hover img {

    transform: scale(1.12);

}

.portfolio-overlay {

    position: absolute;

    inset: 0;

    background: linear-gradient(transparent,

            rgba(10, 45, 70, .92));

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 35px;

    color: #fff;

    opacity: 0;

    transition: .4s;

}

.portfolio-item:hover .portfolio-overlay {

    opacity: 1;

}

.portfolio-overlay span {

    color: #ffd166;

    font-weight: 700;

    margin-bottom: 12px;

}

.portfolio-overlay h3 {

    font-size: 1.5rem;

    font-weight: 700;

    margin-bottom: 20px;

}

.portfolio-overlay a {

    width: 58px;

    height: 58px;

    border-radius: 50%;

    background: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 1.3rem;

}

.portfolio-overlay a:hover {

    background: var(--secondary);

}

/*==================================================
WHY CHOOSE US
==================================================*/

.why-us {

    padding: 120px 0;

}

.why-image {

    position: relative;

}

.why-image img {

    width: 100%;

    border-radius: 32px;

    box-shadow: 0 30px 80px rgba(15, 23, 42, .12);

}

.experience-card {

    position: absolute;

    left: -35px;

    top: 40px;

    background: #fff;

    padding: 25px;

    width: 220px;

    border-radius: 24px;

    box-shadow: 0 20px 60px rgba(15, 23, 42, .12);

}

.experience-card span {

    color: var(--secondary);

    font-weight: 700;

}

.experience-card h2 {

    font-size: 3rem;

    color: var(--primary);

    font-weight: 800;

    margin: 8px 0;

}

.experience-card p {

    margin: 0;

}

.delivery-card {

    position: absolute;

    right: -35px;

    bottom: 40px;

    background: #fff;

    padding: 20px 25px;

    border-radius: 22px;

    display: flex;

    gap: 18px;

    align-items: center;

    box-shadow: 0 20px 60px rgba(15, 23, 42, .12);

}

.delivery-card i {

    width: 65px;

    height: 65px;

    border-radius: 18px;

    background: rgba(246, 139, 0, .12);

    color: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 1.5rem;

}

.delivery-card p {

    margin: 0;

    color: #667085;

}

.why-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin-top: 40px;

}

.why-card {

    display: flex;

    gap: 18px;

    padding: 25px;

    border-radius: 22px;

    background: #fff;

    box-shadow: 0 15px 40px rgba(15, 23, 42, .07);

    transition: .35s;

}

.why-card:hover {

    transform: translateY(-8px);

}

.why-card i {

    color: var(--primary);

    font-size: 1.6rem;

}

.why-card h5 {

    font-weight: 700;

    color: var(--dark);

    margin-bottom: 8px;

}

.why-card p {

    margin: 0;

    color: #667085;

}

/*==================================================
TESTIMONIALS
==================================================*/

.testimonials {

    padding: 120px 0;

    background: #f8fbfc;

}

.testimonial-card {

    position: relative;

    background: #fff;

    border-radius: 30px;

    padding: 40px;

    box-shadow: 0 25px 60px rgba(15, 23, 42, .08);

    height: 100%;

    transition: .35s;

}

.testimonial-card:hover {

    transform: translateY(-10px);

}

.quote {

    position: absolute;

    right: 35px;

    top: 30px;

    width: 65px;

    height: 65px;

    border-radius: 20px;

    background: rgba(246, 139, 0, .1);

    color: var(--primary);

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 2rem;

}

.stars {

    color: #ffc107;

    font-size: 1.2rem;

    letter-spacing: 4px;

    margin-bottom: 25px;

}

.testimonial-card p {

    color: #667085;

    line-height: 1.9;

    margin-bottom: 35px;

}

.client {

    display: flex;

    align-items: center;

    gap: 18px;

}

.client img {

    width: 65px;

    height: 65px;

    border-radius: 50%;

    object-fit: cover;

}

.client h5 {

    margin-bottom: 5px;

    color: var(--dark);

    font-weight: 700;

}

.client span {

    color: #667085;

}

/* ======================================================
   ABOUT PAGE
====================================================== */

.inner-page-hero {
    position: relative;
    overflow: hidden;
    padding: 190px 0 100px;
    background:
        radial-gradient(circle at 85% 20%, rgba(246, 139, 0, .13), transparent 30%),
        radial-gradient(circle at 10% 80%, rgba(11, 107, 111, .10), transparent 30%),
        #f8fbfc;
}

.inner-page-hero-content {
    max-width: 850px;
}

.page-label {
    display: inline-block;
    margin-bottom: 20px;
    color: var(--primary);
    font-family: var(--font-accent);
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.inner-page-hero h1 {
    max-width: 800px;
    margin-bottom: 25px;
    color: var(--dark);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
}

.inner-page-hero h1 span {
    color: var(--secondary);
}

.inner-page-hero p {
    max-width: 680px;
    margin-bottom: 30px;
    color: #667085;
    font-size: 1.1rem;
    line-height: 1.9;
}

.breadcrumb-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #667085;
    font-family: var(--font-accent);
    font-size: .8rem;
}

.breadcrumb-wrap a {
    color: var(--secondary);
}

.breadcrumb-wrap i {
    font-size: .7rem;
}


/* ======================================================
   OUR STORY
====================================================== */

.about-story {
    padding: 120px 0;
}

.about-story-image {
    position: relative;
    padding-right: 45px;
}

.about-story-image img {
    width: 100%;
    min-height: 560px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: 0 30px 80px rgba(15, 23, 42, .12);
}

.story-badge {
    position: absolute;
    right: 0;
    bottom: 45px;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    box-shadow: 0 20px 50px rgba(246, 139, 0, .3);
}

.story-badge span {
    font-family: var(--font-accent);
    font-size: .75rem;
    letter-spacing: 2px;
}

.story-badge strong {
    font-size: 2.5rem;
    font-weight: 800;
}

.about-page-text {
    color: #667085;
    line-height: 1.9;
    margin-bottom: 20px;
}

.story-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 35px;
}

.story-highlights div {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 150px;
    padding: 18px 20px;
    border: 1px solid rgba(15, 23, 42, .07);
    border-radius: 18px;
    background: #fff;
}

.story-highlights strong {
    color: var(--primary);
    font-family: var(--font-accent);
    font-size: .8rem;
}

.story-highlights span {
    color: var(--dark);
    font-weight: 700;
}


/* ======================================================
   MISSION & VISION
====================================================== */

.mission-vision {
    padding: 120px 0;
    background: #f8fbfc;
}

.mv-card {
    position: relative;
    height: 100%;
    overflow: hidden;
    padding: 50px;
    border-radius: 32px;
    color: #fff;
}

.mission-card {
    background: var(--dark);
}

.vision-card {
    background: var(--secondary);
}

.mv-card::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -80px;
    bottom: -100px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
}

.mv-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .12);
    font-size: 1.7rem;
}

.mv-card>span {
    font-family: var(--font-accent);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.mv-card h2 {
    max-width: 500px;
    margin: 18px 0 25px;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.2;
}

.mv-card h2 strong {
    color: var(--primary);
}

.vision-card h2 strong {
    color: #ffd166;
}

.mv-card p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    line-height: 1.9;
}


/* ======================================================
   VALUES
====================================================== */

.values {
    padding: 120px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.value-card {
    position: relative;
    overflow: hidden;
    padding: 40px 35px;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, .06);
    transition: .4s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(15, 23, 42, .1);
}

.value-letter {
    position: absolute;
    top: -20px;
    right: 15px;
    color: rgba(11, 107, 111, .05);
    font-size: 8rem;
    font-weight: 800;
    line-height: 1;
}

.value-icon {
    position: relative;
    z-index: 1;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    border-radius: 18px;
    background: rgba(246, 139, 0, .1);
    color: var(--primary);
    font-size: 1.5rem;
}

.value-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 1.25rem;
    font-weight: 800;
}

.value-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #667085;
    line-height: 1.8;
}


/* ======================================================
   TEAM
====================================================== */

.team {
    padding: 120px 0;
    background: #f8fbfc;
}

.team-card {
    overflow: hidden;
    height: 100%;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, .07);
    transition: .4s;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    height: 350px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.team-card:hover .team-image img {
    transform: scale(1.06);
}

.team-content {
    padding: 30px;
}

.team-content>span {
    color: var(--primary);
    font-family: var(--font-accent);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.team-content h3 {
    margin: 10px 0 12px;
    color: var(--dark);
    font-size: 1.4rem;
    font-weight: 800;
}

.team-content p {
    margin: 0;
    color: #667085;
    line-height: 1.8;
}


/* ======================================================
   TIMELINE
====================================================== */

.about-timeline {
    padding: 120px 0;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 80px auto 0;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(to bottom,
            var(--primary),
            var(--secondary));
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 50px 70px;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
}

.timeline-dot {
    position: absolute;
    top: 5px;
    right: -9px;
    width: 18px;
    height: 18px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 5px rgba(246, 139, 0, .15);
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -9px;
}

.timeline-content {
    padding: 30px;
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, .07);
}

.timeline-content>span {
    color: var(--primary);
    font-family: var(--font-accent);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.timeline-content h3 {
    margin: 12px 0;
    color: var(--dark);
    font-size: 1.4rem;
    font-weight: 800;
}

.timeline-content p {
    margin: 0;
    color: #667085;
    line-height: 1.8;
}


/* ======================================================
   ABOUT CTA
====================================================== */

.about-page-cta {
    padding: 0 0 120px;
}

.about-cta-inner {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px;
    border-radius: 35px;
    background:
        radial-gradient(circle at 90% 20%, rgba(246, 139, 0, .25), transparent 30%),
        var(--dark);
}

.about-cta-inner>div:first-child {
    position: relative;
    z-index: 1;
}

.about-cta-inner>div:first-child>span {
    color: var(--primary);
    font-family: var(--font-accent);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.about-cta-inner h2 {
    max-width: 650px;
    margin: 15px 0 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
}

.cta-buttons {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 2px solid rgba(255, 255, 255, .25);
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    transition: .35s;
}

.btn-whatsapp:hover {
    background: #fff;
    color: var(--dark);
}

/* ======================================================
   SERVICES PAGE
====================================================== */

.services-overview {
    padding: 120px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 65px;
}

.service-card {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    padding: 40px;
    border: 1px solid rgba(15, 23, 42, .07);
    border-radius: 30px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, .06);
    transition: .4s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(15, 23, 42, .11);
}

.service-card.featured {
    border-color: rgba(246, 139, 0, .35);
}

.service-number {
    position: absolute;
    top: 30px;
    right: 35px;
    color: rgba(15, 23, 42, .07);
    font-family: var(--font-accent);
    font-size: 2rem;
    font-weight: 700;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    border-radius: 20px;
    background: rgba(246, 139, 0, .1);
    color: var(--primary);
    font-size: 1.7rem;
}

.service-card>span {
    color: var(--secondary);
    font-family: var(--font-accent);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-card h3 {
    max-width: 300px;
    margin: 15px 0;
    color: var(--dark);
    font-size: 1.65rem;
    font-weight: 800;
    line-height: 1.2;
}

.service-card p {
    color: #667085;
    line-height: 1.8;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    color: var(--dark);
    font-weight: 700;
}

.service-link i {
    transition: .3s;
}

.service-link:hover i {
    transform: translate(4px, -4px);
}

.featured-label {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 9px 18px;
    border-radius: 18px 0 0 0;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-accent);
    font-size: .65rem;
    font-weight: 700;
}


/* ======================================================
   SERVICE DETAILS
====================================================== */

.service-details {
    padding: 120px 0;
    background: #f8fbfc;
}

.service-detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 140px;
}

.service-detail-row:last-child {
    margin-bottom: 0;
}

.service-detail-row.reverse .service-detail-image {
    order: 2;
}

.service-detail-row.reverse .service-detail-content {
    order: 1;
}

.service-detail-image {
    overflow: hidden;
    border-radius: 32px;
}

.service-detail-image img {
    width: 100%;
    min-height: 520px;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.service-detail-image:hover img {
    transform: scale(1.05);
}

.service-detail-content>span {
    color: var(--primary);
    font-family: var(--font-accent);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.service-detail-content h2 {
    margin: 18px 0 25px;
    color: var(--dark);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
}

.service-detail-content h2 strong {
    color: var(--secondary);
}

.service-detail-content>p {
    color: #667085;
    line-height: 1.9;
}

.service-detail-content ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
    padding: 0;
    list-style: none;
}

.service-detail-content li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-weight: 600;
}

.service-detail-content li i {
    color: var(--primary);
}


/* ======================================================
   PROCESS
====================================================== */

.services-process {
    padding: 120px 0;
}

.process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 70px;
}

.process-grid::before {
    content: "";
    position: absolute;
    top: 42px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: rgba(11, 107, 111, .2);
}

.process-item {
    position: relative;
    z-index: 1;
    text-align: center;
}

.process-number {
    width: 85px;
    height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 8px solid #fff;
    border-radius: 50%;
    background: var(--dark);
    color: #fff;
    font-family: var(--font-accent);
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .15);
}

.process-item>i {
    display: block;
    margin-bottom: 15px;
    color: var(--primary);
    font-size: 1.5rem;
}

.process-item h3 {
    margin-bottom: 12px;
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 800;
}

.process-item p {
    color: #667085;
    font-size: .9rem;
    line-height: 1.7;
}


/* ======================================================
   FAQ
====================================================== */

.services-faq {
    padding: 120px 0;
    background: #f8fbfc;
}

.faq-intro {
    max-width: 450px;
    margin-bottom: 30px;
    color: #667085;
    line-height: 1.9;
}

.services-faq .accordion {
    --bs-accordion-border-color: transparent;
    --bs-accordion-bg: transparent;
}

.services-faq .accordion-item {
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid rgba(15, 23, 42, .07);
    border-radius: 18px;
    background: #fff;
}

.services-faq .accordion-button {
    padding: 24px 25px;
    border: 0;
    box-shadow: none;
    color: var(--dark);
    background: #fff;
    font-weight: 700;
}

.services-faq .accordion-button:not(.collapsed) {
    color: var(--secondary);
    background: #fff;
}

.services-faq .accordion-button::after {
    background-size: 14px;
}

.services-faq .accordion-body {
    padding: 0 25px 25px;
    color: #667085;
    line-height: 1.8;
}

/* ======================================================
   PORTFOLIO PAGE
====================================================== */

.portfolio-section {
    padding: 110px 0 120px;
}


/* ======================================================
   CATEGORY FILTER
====================================================== */

.portfolio-filter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 55px;
}

.portfolio-filter-btn {
    padding: 11px 22px;
    border: 1px solid #e4e7ec;
    border-radius: 50px;
    background: #fff;
    color: #667085;
    font-family: var(--font-accent);
    font-size: .72rem;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.portfolio-filter-btn:hover {
    border-color: var(--secondary);
    color: var(--secondary);
}

.portfolio-filter-btn.active {
    border-color: var(--dark);
    background: var(--dark);
    color: #fff;
}


/* ======================================================
   MASONRY GALLERY
====================================================== */

.portfolio-grid {
    columns: 3 300px;
    column-gap: 22px;
}

.portfolio-item {
    display: inline-block;
    width: 100%;
    margin: 0 0 22px;
    break-inside: avoid;
    vertical-align: top;
}

.portfolio-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 320px;
    border-radius: 24px;
    background: var(--dark);
}

.portfolio-item.portfolio-tall .portfolio-card {
    min-height: 500px;
}

.portfolio-item.portfolio-wide .portfolio-card {
    min-height: 400px;
}

.portfolio-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform .7s ease,
        filter .5s ease;
}

.portfolio-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(4, 18, 28, .9),
            rgba(4, 18, 28, .1) 60%,
            transparent);
    opacity: .9;
    transition: .4s;
}

.portfolio-card:hover img {
    transform: scale(1.07);
    filter: saturate(1.08);
}

.portfolio-card:hover::after {
    background: linear-gradient(to top,
            rgba(4, 18, 28, .95),
            rgba(4, 18, 28, .2) 70%,
            transparent);
}

.portfolio-overlay {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    padding: 30px;
    color: #fff;
}

.portfolio-overlay span {
    color: var(--primary);
    font-family: var(--font-accent);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.portfolio-overlay h3 {
    max-width: 300px;
    margin: 8px 0 0;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.2;
}

.portfolio-arrow {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    transition: .35s;
}

.portfolio-card:hover .portfolio-arrow {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}


/* ======================================================
   FILTER ANIMATION
====================================================== */

.portfolio-item {
    opacity: 1;
    transform: scale(1);
    transition:
        opacity .35s ease,
        transform .35s ease;
}

.portfolio-item.portfolio-hidden {
    display: none;
}


/* ======================================================
   PROJECT MODAL
====================================================== */

.portfolio-modal {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 30px;
    background: #fff;
}

.portfolio-modal-close {
    position: absolute;
    z-index: 10;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    color: var(--dark);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .12);
}

.project-modal-image {
    height: 100%;
    min-height: 600px;
    background: #f1f5f9;
}

.project-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-modal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    min-height: 600px;
    padding: 55px;
}

.project-modal-content>span {
    color: var(--primary);
    font-family: var(--font-accent);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.project-modal-content h2 {
    margin: 15px 0 20px;
    color: var(--dark);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.15;
}

.project-modal-content>p {
    color: #667085;
    line-height: 1.9;
}

.project-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.project-meta div {
    padding: 18px;
    border-radius: 15px;
    background: #f8fafc;
}

.project-meta span {
    display: block;
    margin-bottom: 7px;
    color: #98a2b3;
    font-family: var(--font-accent);
    font-size: .6rem;
    font-weight: 700;
}

.project-meta strong {
    color: var(--dark);
    font-size: .85rem;
}


/* ======================================================
   CTA
====================================================== */

.portfolio-final-cta {
    padding-bottom: 120px;
}

/* ======================================================
   CONTACT PAGE
====================================================== */

.contact-section {
    padding: 120px 0;
}


/* ======================================================
   CONTACT INFORMATION
====================================================== */

.contact-intro {
    max-width: 500px;
    margin-bottom: 40px;
    color: #667085;
    line-height: 1.9;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 18px;
    background: #fff;
    transition: .35s;
}

.contact-info-item:hover {
    transform: translateX(6px);
    border-color: rgba(246, 139, 0, .25);
    box-shadow: 0 15px 35px rgba(15, 23, 42, .06);
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(246, 139, 0, .1);
    color: var(--primary);
    font-size: 1.15rem;
}

.whatsapp-icon {
    background: rgba(11, 107, 111, .1);
    color: var(--secondary);
}

.contact-info-item div:last-child {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-item span {
    color: #98a2b3;
    font-family: var(--font-accent);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: 1.2px;
}

.contact-info-item strong {
    color: var(--dark);
    font-size: .95rem;
}


/* ======================================================
   WHATSAPP CARD
====================================================== */

.contact-whatsapp-card {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding: 22px;
    border-radius: 22px;
    background: var(--dark);
    color: #fff;
}

.whatsapp-card-icon {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(255, 255, 255, .1);
    color: #25d366;
    font-size: 1.3rem;
}

.contact-whatsapp-card div:nth-child(2) {
    flex: 1;
}

.contact-whatsapp-card span {
    color: var(--primary);
    font-family: var(--font-accent);
    font-size: .6rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-whatsapp-card h3 {
    margin: 5px 0 0;
    font-size: 1rem;
    font-weight: 700;
}

.contact-whatsapp-card>a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    transition: .3s;
}

.contact-whatsapp-card>a:hover {
    background: var(--primary);
    color: #fff;
}


/* ======================================================
   CONTACT FORM
====================================================== */

.contact-form-card {
    padding: 50px;
    border: 1px solid rgba(15, 23, 42, .06);
    border-radius: 32px;
    background: #fff;
    box-shadow: 0 25px 70px rgba(15, 23, 42, .08);
}

.form-card-heading {
    margin-bottom: 35px;
}

.form-card-heading>span {
    color: var(--primary);
    font-family: var(--font-accent);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.form-card-heading h2 {
    margin: 12px 0;
    color: var(--dark);
    font-size: 2rem;
    font-weight: 800;
}

.form-card-heading p {
    margin: 0;
    color: #667085;
    line-height: 1.7;
}

.contact-form label {
    display: block;
    margin-bottom: 9px;
    color: var(--dark);
    font-size: .85rem;
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 17px;
    border: 1px solid #e4e7ec;
    border-radius: 13px;
    outline: none;
    background: #f9fafb;
    color: var(--dark);
    font-family: inherit;
    font-size: .9rem;
    transition: .3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #98a2b3;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--secondary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(11, 107, 111, .08);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 17px 25px;
    border: 0;
    border-radius: 14px;
    background: var(--primary);
    color: #fff;
    font-family: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: .35s;
}

.contact-submit:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.contact-submit i {
    transition: .3s;
}

.contact-submit:hover i {
    transform: translate(3px, -3px);
}

.form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
    color: #98a2b3;
    font-size: .7rem;
}

.form-note i {
    color: var(--secondary);
}


/* ======================================================
   BUSINESS HOURS
====================================================== */

.contact-hours {
    padding: 100px 0;
    background: var(--dark);
}

.hours-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hours-content>span {
    color: var(--primary);
    font-family: var(--font-accent);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.hours-content h2 {
    max-width: 600px;
    margin: 15px 0 20px;
    color: #fff;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
}

.hours-content h2 span {
    color: var(--primary);
}

.hours-content p {
    max-width: 550px;
    margin: 0;
    color: rgba(255, 255, 255, .65);
    line-height: 1.9;
}

.hours-table {
    padding: 15px 30px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 24px;
    background: rgba(255, 255, 255, .04);
}

.hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.hours-row:last-child {
    border-bottom: 0;
}

.hours-row span {
    color: rgba(255, 255, 255, .65);
}

.hours-row strong {
    color: #fff;
    font-family: var(--font-accent);
    font-size: .8rem;
}


/* ======================================================
   ALLink@go REACH / VENDOR NETWORK
====================================================== */

.map-wrapper {
    position: relative;
    min-height: 560px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border-radius: 28px;
    background: var(--dark);
}


/* ======================================================
   CONTENT
====================================================== */

.reach-map-content {
    position: relative;
    z-index: 5;
    padding: 65px;
}

.reach-map-header>span {
    color: var(--primary);
    font-family: var(--font-accent);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.reach-map-header h3 {
    margin: 15px 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    font-weight: 800;
}

.reach-map-header h3 span {
    color: var(--primary);
}

.reach-map-header p {
    max-width: 480px;
    margin: 0 0 35px;
    color: rgba(255, 255, 255, .65);
    font-size: .9rem;
    line-height: 1.9;
}


/* ======================================================
   LOCATIONS
====================================================== */

.vendor-locations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 500px;
}

.vendor-location {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 13px;
    background: rgba(255, 255, 255, .045);
    transition: .3s ease;
}

.vendor-location:hover {
    border-color: rgba(246, 139, 0, .5);
    background: rgba(246, 139, 0, .08);
    transform: translateY(-3px);
}

.vendor-location-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: rgba(246, 139, 0, .12);
    color: var(--primary);
    font-size: .8rem;
}

.vendor-location strong {
    display: block;
    color: #fff;
    font-size: .78rem;
}

.vendor-location span {
    display: block;
    margin-top: 2px;
    color: rgba(255, 255, 255, .45);
    font-size: .65rem;
}


/* ======================================================
   NETWORK NOTE
====================================================== */

.reach-map-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    color: rgba(255, 255, 255, .45);
    font-size: .7rem;
}

.reach-map-note i {
    color: var(--primary);
    font-size: 1rem;
}


/* ======================================================
   MAP VISUAL
====================================================== */

.reach-map-visual {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    background:
        radial-gradient(circle at center,
            rgba(11, 107, 111, .35),
            transparent 55%),
        #071f31;
}


/* grid */

.map-grid {
    position: absolute;
    inset: 0;
    opacity: .12;
    background-image:
        linear-gradient(rgba(255, 255, 255, .25) 1px,
            transparent 1px),
        linear-gradient(90deg,
            rgba(255, 255, 255, .25) 1px,
            transparent 1px);
    background-size: 45px 45px;
}


/* glow */

.map-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(11, 107, 111, .25);
    filter: blur(60px);
    transform: translate(-50%, -50%);
}


/* ======================================================
   CENTER BRAND
====================================================== */

.map-center {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%, -50%);
}

.map-center-logo {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    border: 1px solid rgba(246, 139, 0, .5);
    border-radius: 20px;
    background: rgba(246, 139, 0, .1);
    color: var(--primary);
    font-size: 1.6rem;
    box-shadow: 0 0 50px rgba(246, 139, 0, .12);
}

.map-center span {
    color: #fff;
    font-size: .85rem;
    font-weight: 800;
}

.map-center small {
    margin-top: 4px;
    color: rgba(255, 255, 255, .4);
    font-family: var(--font-accent);
    font-size: .5rem;
}


/* ======================================================
   MAP POINTS
====================================================== */

.map-point {
    position: absolute;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.map-point span {
    width: 9px;
    height: 9px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    background: var(--dark);
    box-shadow:
        0 0 0 5px rgba(246, 139, 0, .08),
        0 0 20px rgba(246, 139, 0, .5);
}

.map-point strong {
    color: rgba(255, 255, 255, .8);
    font-family: var(--font-accent);
    font-size: .6rem;
    white-space: nowrap;
}


/* positions */

.map-abuja {
    top: 20%;
    left: 57%;
}

.map-kano {
    top: 11%;
    left: 35%;
}

.map-makurdi {
    top: 43%;
    left: 53%;
}

.map-lagos {
    bottom: 22%;
    left: 28%;
}

.map-ph {
    bottom: 25%;
    right: 17%;
}


/* ======================================================
   CONNECTION LINES
====================================================== */

.map-connection {
    position: absolute;
    z-index: 2;
    height: 1px;
    transform-origin: left center;
    border-top: 1px dashed rgba(246, 139, 0, .35);
}


/* Abuja */

.connection-abuja {
    width: 120px;
    top: 50%;
    left: 50%;
    transform: rotate(-76deg);
}


/* Kano */

.connection-kano {
    width: 145px;
    top: 50%;
    left: 50%;
    transform: rotate(-132deg);
}


/* Makurdi */

.connection-makurdi {
    width: 80px;
    top: 50%;
    left: 50%;
    transform: rotate(-25deg);
}


/* Lagos */

.connection-lagos {
    width: 160px;
    top: 50%;
    left: 50%;
    transform: rotate(150deg);
}


/* Port Harcourt */

.connection-ph {
    width: 150px;
    top: 50%;
    left: 50%;
    transform: rotate(40deg);
}




/* ======================================================
   CONTACT CTA
====================================================== */

.contact-final-cta {
    padding-bottom: 120px;
}

/*=====================================
FOOTER
======================================*/

.footer {

    margin-top: 120px;

}

.footer-cta {

    position: relative;

    z-index: 2;

    margin-bottom: -80px;

}

.footer-cta-wrapper {

    background: linear-gradient(135deg,
            var(--primary),
            #ffab2f);

    border-radius: 30px;

    padding: 60px;

    color: #fff;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);

}

.footer-cta span {

    letter-spacing: 2px;

    font-size: .85rem;

    font-weight: 700;

}

.footer-cta h2 {

    margin-top: 12px;

    font-size: 2.6rem;

    font-weight: 800;

}

.cta-buttons {

    display: flex;

    gap: 18px;

    flex-wrap: wrap;

}

.btn-whatsapp {

    padding: 14px 28px;

    border-radius: 50px;

    background: #fff;

    color: var(--secondary);

    font-weight: 700;

}

.btn-whatsapp:hover {

    background: var(--secondary);

    color: #fff;

}

.footer-main {

    background: var(--dark);

    color: #fff;

    padding: 180px 0 70px;

}

.footer-logo {

    width: 180px;

    margin-bottom: 25px;

}

.footer-text {

    opacity: .85;

    line-height: 1.9;

}

.footer h5 {

    margin-bottom: 25px;

    font-weight: 700;

}

.footer ul {

    display: flex;

    flex-direction: column;

    gap: 15px;

}

.footer ul a {

    color: rgba(255, 255, 255, .75);

}

.footer ul a:hover {

    color: var(--primary);

    padding-left: 8px;

}

.footer-social {

    display: flex;

    gap: 14px;

    margin-top: 30px;

}

.footer-social a {

    width: 46px;

    height: 46px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);

    display: flex;

    justify-content: center;

    align-items: center;

    color: #fff;

    transition: .35s;

}

.footer-social a:hover {

    background: var(--primary);

    transform: translateY(-5px);

}

.footer-contact li {

    display: flex;

    gap: 15px;

    align-items: flex-start;

}

.footer-contact i {

    color: var(--primary);

}

.footer-bottom {

    background: #081f31;

    color: #fff;

}

.footer-bottom-wrapper {

    min-height: 75px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

.back-top {

    width: 48px;

    height: 48px;

    border-radius: 50%;

    background: var(--primary);

    display: flex;

    justify-content: center;

    align-items: center;

    color: #fff;

    transition: .35s;

}

.back-top:hover {

    transform: translateY(-5px);

    background: var(--secondary);

}